From f5b6371f8dbb6bc094378b84fa4fef59c820ea75 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 18:53:37 +0100 Subject: [PATCH 01/14] remove V8 files --- app/src/substrate/substrate_dispatch_V8.c | 6825 -------------------- app/src/substrate/substrate_dispatch_V8.h | 49 - app/src/substrate/substrate_functions_V8.h | 689 -- app/src/substrate/substrate_methods_V8.h | 1253 ---- app/src/substrate/substrate_types_V8.c | 1666 ----- app/src/substrate/substrate_types_V8.h | 428 -- 6 files changed, 10910 deletions(-) delete mode 100644 app/src/substrate/substrate_dispatch_V8.c delete mode 100644 app/src/substrate/substrate_dispatch_V8.h delete mode 100644 app/src/substrate/substrate_functions_V8.h delete mode 100644 app/src/substrate/substrate_methods_V8.h delete mode 100644 app/src/substrate/substrate_types_V8.c delete mode 100644 app/src/substrate/substrate_types_V8.h diff --git a/app/src/substrate/substrate_dispatch_V8.c b/app/src/substrate/substrate_dispatch_V8.c deleted file mode 100644 index a984d2a3..00000000 --- a/app/src/substrate/substrate_dispatch_V8.c +++ /dev/null @@ -1,6825 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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. -********************************************************************************/ - -#include "substrate_dispatch_V8.h" -#include "substrate_strings.h" -#include "zxmacros.h" -#include - -__Z_INLINE parser_error_t _readMethod_balances_transfer_V8( - parser_context_t* c, pd_balances_transfer_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_balances_force_transfer_V8( - parser_context_t* c, pd_balances_force_transfer_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->source)) - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_balances_transfer_keep_alive_V8( - parser_context_t* c, pd_balances_transfer_keep_alive_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_balances_transfer_all_V8( - parser_context_t* c, pd_balances_transfer_all_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) - CHECK_ERROR(_readbool(c, &m->keep_alive)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_bond_V8( - parser_context_t* c, pd_staking_bond_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->controller)) - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readRewardDestination_V8(c, &m->payee)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_bond_extra_V8( - parser_context_t* c, pd_staking_bond_extra_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_unbond_V8( - parser_context_t* c, pd_staking_unbond_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_withdraw_unbonded_V8( - parser_context_t* c, pd_staking_withdraw_unbonded_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_validate_V8( - parser_context_t* c, pd_staking_validate_V8_t* m) -{ - CHECK_ERROR(_readValidatorPrefs_V8(c, &m->prefs)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_nominate_V8( - parser_context_t* c, pd_staking_nominate_V8_t* m) -{ - CHECK_ERROR(_readVecLookupasStaticLookupSource_V8(c, &m->targets)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_chill_V8( - parser_context_t* c, pd_staking_chill_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_set_payee_V8( - parser_context_t* c, pd_staking_set_payee_V8_t* m) -{ - CHECK_ERROR(_readRewardDestination_V8(c, &m->payee)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_set_controller_V8( - parser_context_t* c, pd_staking_set_controller_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->controller)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_V8( - parser_context_t* c, pd_staking_payout_stakers_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->validator_stash)) - CHECK_ERROR(_readEraIndex_V8(c, &m->era)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_rebond_V8( - parser_context_t* c, pd_staking_rebond_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_session_set_keys_V8( - parser_context_t* c, pd_session_set_keys_V8_t* m) -{ - CHECK_ERROR(_readKeys_V8(c, &m->keys)) - CHECK_ERROR(_readBytes(c, &m->proof)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_session_purge_keys_V8( - parser_context_t* c, pd_session_purge_keys_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_utility_batch_V8( - parser_context_t* c, pd_utility_batch_V8_t* m) -{ - CHECK_ERROR(_readVecCall(c, &m->calls)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_utility_batch_all_V8( - parser_context_t* c, pd_utility_batch_all_V8_t* m) -{ - CHECK_ERROR(_readVecCall(c, &m->calls)) - return parser_ok; -} - -#ifdef SUBSTRATE_PARSER_FULL -__Z_INLINE parser_error_t _readMethod_system_fill_block_V8( - parser_context_t* c, pd_system_fill_block_V8_t* m) -{ - CHECK_ERROR(_readPerbill_V8(c, &m->ratio)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_system_remark_V8( - parser_context_t* c, pd_system_remark_V8_t* m) -{ - CHECK_ERROR(_readVecu8(c, &m->remark)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_system_set_heap_pages_V8( - parser_context_t* c, pd_system_set_heap_pages_V8_t* m) -{ - CHECK_ERROR(_readu64(c, &m->pages)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_system_set_code_V8( - parser_context_t* c, pd_system_set_code_V8_t* m) -{ - CHECK_ERROR(_readVecu8(c, &m->code)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_system_set_code_without_checks_V8( - parser_context_t* c, pd_system_set_code_without_checks_V8_t* m) -{ - CHECK_ERROR(_readVecu8(c, &m->code)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_system_remark_with_event_V8( - parser_context_t* c, pd_system_remark_with_event_V8_t* m) -{ - CHECK_ERROR(_readVecu8(c, &m->remark)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_timestamp_set_V8( - parser_context_t* c, pd_timestamp_set_V8_t* m) -{ - CHECK_ERROR(_readCompactu64(c, &m->now)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_indices_claim_V8( - parser_context_t* c, pd_indices_claim_V8_t* m) -{ - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_indices_transfer_V8( - parser_context_t* c, pd_indices_transfer_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_indices_free_V8( - parser_context_t* c, pd_indices_free_V8_t* m) -{ - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_indices_force_transfer_V8( - parser_context_t* c, pd_indices_force_transfer_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) - CHECK_ERROR(_readbool(c, &m->freeze)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_indices_freeze_V8( - parser_context_t* c, pd_indices_freeze_V8_t* m) -{ - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_balances_set_balance_V8( - parser_context_t* c, pd_balances_set_balance_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) - CHECK_ERROR(_readCompactBalance(c, &m->new_free)) - CHECK_ERROR(_readCompactBalance(c, &m->new_reserved)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_balances_force_unreserve_V8( - parser_context_t* c, pd_balances_force_unreserve_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) - CHECK_ERROR(_readBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_set_validator_count_V8( - parser_context_t* c, pd_staking_set_validator_count_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_increase_validator_count_V8( - parser_context_t* c, pd_staking_increase_validator_count_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->additional)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_force_no_eras_V8( - parser_context_t* c, pd_staking_force_no_eras_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_force_new_era_V8( - parser_context_t* c, pd_staking_force_new_era_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_force_unstake_V8( - parser_context_t* c, pd_staking_force_unstake_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->stash)) - CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_force_new_era_always_V8( - parser_context_t* c, pd_staking_force_new_era_always_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_set_history_depth_V8( - parser_context_t* c, pd_staking_set_history_depth_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->new_history_depth)) - CHECK_ERROR(_readCompactu32(c, &m->era_items_deleted)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_reap_stash_V8( - parser_context_t* c, pd_staking_reap_stash_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->stash)) - CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_kick_V8( - parser_context_t* c, pd_staking_kick_V8_t* m) -{ - CHECK_ERROR(_readVecLookupasStaticLookupSource_V8(c, &m->who)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_chill_other_V8( - parser_context_t* c, pd_staking_chill_other_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->controller)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_grandpa_note_stalled_V8( - parser_context_t* c, pd_grandpa_note_stalled_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->delay)) - CHECK_ERROR(_readBlockNumber(c, &m->best_finalized_block_number)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_second_V8( - parser_context_t* c, pd_democracy_second_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->proposal)) - CHECK_ERROR(_readCompactu32(c, &m->seconds_upper_bound)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_emergency_cancel_V8( - parser_context_t* c, pd_democracy_emergency_cancel_V8_t* m) -{ - CHECK_ERROR(_readReferendumIndex_V8(c, &m->ref_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_cancel_referendum_V8( - parser_context_t* c, pd_democracy_cancel_referendum_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->ref_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_cancel_queued_V8( - parser_context_t* c, pd_democracy_cancel_queued_V8_t* m) -{ - CHECK_ERROR(_readReferendumIndex_V8(c, &m->which)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_undelegate_V8( - parser_context_t* c, pd_democracy_undelegate_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_clear_public_proposals_V8( - parser_context_t* c, pd_democracy_clear_public_proposals_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_note_preimage_V8( - parser_context_t* c, pd_democracy_note_preimage_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_note_preimage_operational_V8( - parser_context_t* c, pd_democracy_note_preimage_operational_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_note_imminent_preimage_V8( - parser_context_t* c, pd_democracy_note_imminent_preimage_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_note_imminent_preimage_operational_V8( - parser_context_t* c, pd_democracy_note_imminent_preimage_operational_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_remove_vote_V8( - parser_context_t* c, pd_democracy_remove_vote_V8_t* m) -{ - CHECK_ERROR(_readReferendumIndex_V8(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_democracy_cancel_proposal_V8( - parser_context_t* c, pd_democracy_cancel_proposal_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->prop_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_council_vote_V8( - parser_context_t* c, pd_council_vote_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->proposal)) - CHECK_ERROR(_readCompactu32(c, &m->index)) - CHECK_ERROR(_readbool(c, &m->approve)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_council_close_V8( - parser_context_t* c, pd_council_close_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->proposal_hash)) - CHECK_ERROR(_readCompactu32(c, &m->index)) - CHECK_ERROR(_readCompactu64(c, &m->proposal_weight_bound)) - CHECK_ERROR(_readCompactu32(c, &m->length_bound)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_council_disapprove_proposal_V8( - parser_context_t* c, pd_council_disapprove_proposal_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->proposal_hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalcommittee_disapprove_proposal_V8( - parser_context_t* c, pd_technicalcommittee_disapprove_proposal_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->proposal_hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_phragmenelection_remove_voter_V8( - parser_context_t* c, pd_phragmenelection_remove_voter_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_phragmenelection_submit_candidacy_V8( - parser_context_t* c, pd_phragmenelection_submit_candidacy_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->candidate_count)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_phragmenelection_remove_member_V8( - parser_context_t* c, pd_phragmenelection_remove_member_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) - CHECK_ERROR(_readbool(c, &m->has_replacement)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_phragmenelection_clean_defunct_voters_V8( - parser_context_t* c, pd_phragmenelection_clean_defunct_voters_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->num_voters)) - CHECK_ERROR(_readu32(c, &m->num_defunct)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_add_member_V8( - parser_context_t* c, pd_technicalmembership_add_member_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_remove_member_V8( - parser_context_t* c, pd_technicalmembership_remove_member_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_swap_member_V8( - parser_context_t* c, pd_technicalmembership_swap_member_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->remove)) - CHECK_ERROR(_readAccountId_V8(c, &m->add)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_reset_members_V8( - parser_context_t* c, pd_technicalmembership_reset_members_V8_t* m) -{ - CHECK_ERROR(_readVecAccountId_V8(c, &m->members)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_change_key_V8( - parser_context_t* c, pd_technicalmembership_change_key_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_set_prime_V8( - parser_context_t* c, pd_technicalmembership_set_prime_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_technicalmembership_clear_prime_V8( - parser_context_t* c, pd_technicalmembership_clear_prime_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_treasury_propose_spend_V8( - parser_context_t* c, pd_treasury_propose_spend_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->beneficiary)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_treasury_reject_proposal_V8( - parser_context_t* c, pd_treasury_reject_proposal_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->proposal_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_treasury_approve_proposal_V8( - parser_context_t* c, pd_treasury_approve_proposal_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->proposal_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_claims_claim_V8( - parser_context_t* c, pd_claims_claim_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->dest)) - CHECK_ERROR(_readEcdsaSignature_V8(c, &m->ethereum_signature)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_claims_claim_attest_V8( - parser_context_t* c, pd_claims_claim_attest_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->dest)) - CHECK_ERROR(_readEcdsaSignature_V8(c, &m->ethereum_signature)) - CHECK_ERROR(_readBytes(c, &m->statement)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_claims_attest_V8( - parser_context_t* c, pd_claims_attest_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->statement)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_claims_move_claim_V8( - parser_context_t* c, pd_claims_move_claim_V8_t* m) -{ - CHECK_ERROR(_readEthereumAddress_V8(c, &m->old)) - CHECK_ERROR(_readEthereumAddress_V8(c, &m->new_)) - CHECK_ERROR(_readOptionAccountId_V8(c, &m->maybe_preclaim)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_add_registrar_V8( - parser_context_t* c, pd_identity_add_registrar_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->account)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_clear_identity_V8( - parser_context_t* c, pd_identity_clear_identity_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_request_judgement_V8( - parser_context_t* c, pd_identity_request_judgement_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->reg_index)) - CHECK_ERROR(_readCompactu128(c, &m->max_fee)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_cancel_request_V8( - parser_context_t* c, pd_identity_cancel_request_V8_t* m) -{ - CHECK_ERROR(_readRegistrarIndex_V8(c, &m->reg_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_set_fee_V8( - parser_context_t* c, pd_identity_set_fee_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->index)) - CHECK_ERROR(_readCompactu128(c, &m->fee)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_set_account_id_V8( - parser_context_t* c, pd_identity_set_account_id_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->index)) - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_kill_identity_V8( - parser_context_t* c, pd_identity_kill_identity_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->target)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_remove_sub_V8( - parser_context_t* c, pd_identity_remove_sub_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->sub)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_identity_quit_sub_V8( - parser_context_t* c, pd_identity_quit_sub_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_bid_V8( - parser_context_t* c, pd_society_bid_V8_t* m) -{ - CHECK_ERROR(_readBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_unbid_V8( - parser_context_t* c, pd_society_unbid_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->pos)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_vouch_V8( - parser_context_t* c, pd_society_vouch_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - CHECK_ERROR(_readBalance(c, &m->amount)) - CHECK_ERROR(_readBalance(c, &m->tip)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_unvouch_V8( - parser_context_t* c, pd_society_unvouch_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->pos)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_vote_V8( - parser_context_t* c, pd_society_vote_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->candidate)) - CHECK_ERROR(_readbool(c, &m->approve)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_defender_vote_V8( - parser_context_t* c, pd_society_defender_vote_V8_t* m) -{ - CHECK_ERROR(_readbool(c, &m->approve)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_payout_V8( - parser_context_t* c, pd_society_payout_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_found_V8( - parser_context_t* c, pd_society_found_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->founder)) - CHECK_ERROR(_readu32(c, &m->max_members)) - CHECK_ERROR(_readBytes(c, &m->rules)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_unfound_V8( - parser_context_t* c, pd_society_unfound_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_judge_suspended_member_V8( - parser_context_t* c, pd_society_judge_suspended_member_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - CHECK_ERROR(_readbool(c, &m->forgive)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_society_set_max_members_V8( - parser_context_t* c, pd_society_set_max_members_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->max)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_set_recovered_V8( - parser_context_t* c, pd_recovery_set_recovered_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->lost)) - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_initiate_recovery_V8( - parser_context_t* c, pd_recovery_initiate_recovery_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->account)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_vouch_recovery_V8( - parser_context_t* c, pd_recovery_vouch_recovery_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->lost)) - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_claim_recovery_V8( - parser_context_t* c, pd_recovery_claim_recovery_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->account)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_close_recovery_V8( - parser_context_t* c, pd_recovery_close_recovery_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_remove_recovery_V8( - parser_context_t* c, pd_recovery_remove_recovery_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_recovery_cancel_recovered_V8( - parser_context_t* c, pd_recovery_cancel_recovered_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->account)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_vesting_vest_V8( - parser_context_t* c, pd_vesting_vest_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_vesting_vest_other_V8( - parser_context_t* c, pd_vesting_vest_other_V8_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->target)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_vesting_merge_schedules_V8( - parser_context_t* c, pd_vesting_merge_schedules_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->schedule1_index)) - CHECK_ERROR(_readu32(c, &m->schedule2_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_proxy_V8( - parser_context_t* c, pd_proxy_proxy_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->real)) - CHECK_ERROR(_readOptionProxyType_V8(c, &m->force_proxy_type)) - CHECK_ERROR(_readCall(c, &m->call)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_add_proxy_V8( - parser_context_t* c, pd_proxy_add_proxy_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) - CHECK_ERROR(_readBlockNumber(c, &m->delay)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_remove_proxy_V8( - parser_context_t* c, pd_proxy_remove_proxy_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) - CHECK_ERROR(_readBlockNumber(c, &m->delay)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_remove_proxies_V8( - parser_context_t* c, pd_proxy_remove_proxies_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_anonymous_V8( - parser_context_t* c, pd_proxy_anonymous_V8_t* m) -{ - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) - CHECK_ERROR(_readBlockNumber(c, &m->delay)) - CHECK_ERROR(_readu16(c, &m->index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_kill_anonymous_V8( - parser_context_t* c, pd_proxy_kill_anonymous_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->spawner)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) - CHECK_ERROR(_readu16(c, &m->index)) - CHECK_ERROR(_readCompactu32(c, &m->height)) - CHECK_ERROR(_readCompactu32(c, &m->ext_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_proxy_proxy_announced_V8( - parser_context_t* c, pd_proxy_proxy_announced_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readAccountId_V8(c, &m->real)) - CHECK_ERROR(_readOptionProxyType_V8(c, &m->force_proxy_type)) - CHECK_ERROR(_readCall(c, &m->call)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_as_multi_V8( - parser_context_t* c, pd_multisig_as_multi_V8_t* m) -{ - CHECK_ERROR(_readu16(c, &m->threshold)) - CHECK_ERROR(_readVecAccountId_V8(c, &m->other_signatories)) - CHECK_ERROR(_readOptionTimepoint_V8(c, &m->maybe_timepoint)) - CHECK_ERROR(_readOpaqueCall_V8(c, &m->call)) - CHECK_ERROR(_readbool(c, &m->store_call)) - CHECK_ERROR(_readWeight_V8(c, &m->max_weight)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_approve_as_multi_V8( - parser_context_t* c, pd_multisig_approve_as_multi_V8_t* m) -{ - CHECK_ERROR(_readu16(c, &m->threshold)) - CHECK_ERROR(_readVecAccountId_V8(c, &m->other_signatories)) - CHECK_ERROR(_readOptionTimepoint_V8(c, &m->maybe_timepoint)) - CHECK_ERROR(_readH256(c, &m->call_hash)) - CHECK_ERROR(_readWeight_V8(c, &m->max_weight)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_cancel_as_multi_V8( - parser_context_t* c, pd_multisig_cancel_as_multi_V8_t* m) -{ - CHECK_ERROR(_readu16(c, &m->threshold)) - CHECK_ERROR(_readVecAccountId_V8(c, &m->other_signatories)) - CHECK_ERROR(_readTimepoint_V8(c, &m->timepoint)) - CHECK_ERROR(_readH256(c, &m->call_hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_propose_bounty_V8( - parser_context_t* c, pd_bounties_propose_bounty_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readBytes(c, &m->description)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_approve_bounty_V8( - parser_context_t* c, pd_bounties_approve_bounty_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_propose_curator_V8( - parser_context_t* c, pd_bounties_propose_curator_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->curator)) - CHECK_ERROR(_readCompactBalance(c, &m->fee)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_unassign_curator_V8( - parser_context_t* c, pd_bounties_unassign_curator_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_accept_curator_V8( - parser_context_t* c, pd_bounties_accept_curator_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_award_bounty_V8( - parser_context_t* c, pd_bounties_award_bounty_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->beneficiary)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_claim_bounty_V8( - parser_context_t* c, pd_bounties_claim_bounty_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_close_bounty_V8( - parser_context_t* c, pd_bounties_close_bounty_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bounties_extend_bounty_expiry_V8( - parser_context_t* c, pd_bounties_extend_bounty_expiry_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) - CHECK_ERROR(_readBytes(c, &m->remark)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_report_awesome_V8( - parser_context_t* c, pd_tips_report_awesome_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->reason)) - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_retract_tip_V8( - parser_context_t* c, pd_tips_retract_tip_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_tip_new_V8( - parser_context_t* c, pd_tips_tip_new_V8_t* m) -{ - CHECK_ERROR(_readBytes(c, &m->reason)) - CHECK_ERROR(_readAccountId_V8(c, &m->who)) - CHECK_ERROR(_readCompactu128(c, &m->tip_value)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_tip_V8( - parser_context_t* c, pd_tips_tip_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->hash)) - CHECK_ERROR(_readCompactu128(c, &m->tip_value)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_close_tip_V8( - parser_context_t* c, pd_tips_close_tip_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_tips_slash_tip_V8( - parser_context_t* c, pd_tips_slash_tip_V8_t* m) -{ - CHECK_ERROR(_readHash(c, &m->hash)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_gilt_place_bid_V8( - parser_context_t* c, pd_gilt_place_bid_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readu32(c, &m->duration)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_gilt_retract_bid_V8( - parser_context_t* c, pd_gilt_retract_bid_V8_t* m) -{ - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readu32(c, &m->duration)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bagslist_rebag_V8( - parser_context_t* c, pd_bagslist_rebag_V8_t* m) -{ - CHECK_ERROR(_readAccountId_V8(c, &m->dislocated)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_validation_upgrade_frequency_V8( - parser_context_t* c, pd_configuration_set_validation_upgrade_frequency_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_validation_upgrade_delay_V8( - parser_context_t* c, pd_configuration_set_validation_upgrade_delay_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_code_retention_period_V8( - parser_context_t* c, pd_configuration_set_code_retention_period_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_code_size_V8( - parser_context_t* c, pd_configuration_set_max_code_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_pov_size_V8( - parser_context_t* c, pd_configuration_set_max_pov_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_head_data_size_V8( - parser_context_t* c, pd_configuration_set_max_head_data_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_parathread_cores_V8( - parser_context_t* c, pd_configuration_set_parathread_cores_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_parathread_retries_V8( - parser_context_t* c, pd_configuration_set_parathread_retries_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_group_rotation_frequency_V8( - parser_context_t* c, pd_configuration_set_group_rotation_frequency_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_chain_availability_period_V8( - parser_context_t* c, pd_configuration_set_chain_availability_period_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_thread_availability_period_V8( - parser_context_t* c, pd_configuration_set_thread_availability_period_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_scheduling_lookahead_V8( - parser_context_t* c, pd_configuration_set_scheduling_lookahead_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_validators_per_core_V8( - parser_context_t* c, pd_configuration_set_max_validators_per_core_V8_t* m) -{ - CHECK_ERROR(_readOptionu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_validators_V8( - parser_context_t* c, pd_configuration_set_max_validators_V8_t* m) -{ - CHECK_ERROR(_readOptionu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_post_conclusion_acceptance_period_V8( - parser_context_t* c, pd_configuration_set_dispute_post_conclusion_acceptance_period_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_max_spam_slots_V8( - parser_context_t* c, pd_configuration_set_dispute_max_spam_slots_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_conclusion_by_time_out_period_V8( - parser_context_t* c, pd_configuration_set_dispute_conclusion_by_time_out_period_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_no_show_slots_V8( - parser_context_t* c, pd_configuration_set_no_show_slots_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_n_delay_tranches_V8( - parser_context_t* c, pd_configuration_set_n_delay_tranches_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_zeroth_delay_tranche_width_V8( - parser_context_t* c, pd_configuration_set_zeroth_delay_tranche_width_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_needed_approvals_V8( - parser_context_t* c, pd_configuration_set_needed_approvals_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_relay_vrf_modulo_samples_V8( - parser_context_t* c, pd_configuration_set_relay_vrf_modulo_samples_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_queue_count_V8( - parser_context_t* c, pd_configuration_set_max_upward_queue_count_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_queue_size_V8( - parser_context_t* c, pd_configuration_set_max_upward_queue_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_downward_message_size_V8( - parser_context_t* c, pd_configuration_set_max_downward_message_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_ump_service_total_weight_V8( - parser_context_t* c, pd_configuration_set_ump_service_total_weight_V8_t* m) -{ - CHECK_ERROR(_readWeight_V8(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_message_size_V8( - parser_context_t* c, pd_configuration_set_max_upward_message_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_message_num_per_candidate_V8( - parser_context_t* c, pd_configuration_set_max_upward_message_num_per_candidate_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_open_request_ttl_V8( - parser_context_t* c, pd_configuration_set_hrmp_open_request_ttl_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_recipient_deposit_V8( - parser_context_t* c, pd_configuration_set_hrmp_recipient_deposit_V8_t* m) -{ - CHECK_ERROR(_readBalance(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_capacity_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_capacity_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_total_size_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_total_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parachain_inbound_channels_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parachain_inbound_channels_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parathread_inbound_channels_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parathread_inbound_channels_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_message_size_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_message_size_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parachain_outbound_channels_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parachain_outbound_channels_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parathread_outbound_channels_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parathread_outbound_channels_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_message_num_per_candidate_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_message_num_per_candidate_V8_t* m) -{ - CHECK_ERROR(_readu32(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_configuration_set_ump_max_individual_weight_V8( - parser_context_t* c, pd_configuration_set_ump_max_individual_weight_V8_t* m) -{ - CHECK_ERROR(_readWeight_V8(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_initializer_force_approve_V8( - parser_context_t* c, pd_initializer_force_approve_V8_t* m) -{ - CHECK_ERROR(_readBlockNumber(c, &m->up_to)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_hrmp_force_process_hrmp_open_V8( - parser_context_t* c, pd_hrmp_force_process_hrmp_open_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_hrmp_force_process_hrmp_close_V8( - parser_context_t* c, pd_hrmp_force_process_hrmp_close_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_parasdisputes_force_unfreeze_V8( - parser_context_t* c, pd_parasdisputes_force_unfreeze_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_registrar_reserve_V8( - parser_context_t* c, pd_registrar_reserve_V8_t* m) -{ - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_auctions_new_auction_V8( - parser_context_t* c, pd_auctions_new_auction_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->duration)) - CHECK_ERROR(_readCompactu32(c, &m->lease_period_index)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_auctions_bid_V8( - parser_context_t* c, pd_auctions_bid_V8_t* m) -{ - CHECK_ERROR(_readCompactu32(c, &m->para)) - CHECK_ERROR(_readCompactu32(c, &m->auction_index)) - CHECK_ERROR(_readCompactu32(c, &m->first_slot)) - CHECK_ERROR(_readCompactu32(c, &m->last_slot)) - CHECK_ERROR(_readCompactBalance(c, &m->amount)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_auctions_cancel_auction_V8( - parser_context_t* c, pd_auctions_cancel_auction_V8_t* m) -{ - return parser_ok; -} - -#endif - -parser_error_t _readMethod_V8( - parser_context_t* c, - uint8_t moduleIdx, - uint8_t callIdx, - pd_Method_V8_t* method) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - - case 1024: /* module 4 call 0 */ - CHECK_ERROR(_readMethod_balances_transfer_V8(c, &method->nested.balances_transfer_V8)) - break; - case 1026: /* module 4 call 2 */ - CHECK_ERROR(_readMethod_balances_force_transfer_V8(c, &method->nested.balances_force_transfer_V8)) - break; - case 1027: /* module 4 call 3 */ - CHECK_ERROR(_readMethod_balances_transfer_keep_alive_V8(c, &method->nested.balances_transfer_keep_alive_V8)) - break; - case 1028: /* module 4 call 4 */ - CHECK_ERROR(_readMethod_balances_transfer_all_V8(c, &method->basic.balances_transfer_all_V8)) - break; - case 1536: /* module 6 call 0 */ - CHECK_ERROR(_readMethod_staking_bond_V8(c, &method->basic.staking_bond_V8)) - break; - case 1537: /* module 6 call 1 */ - CHECK_ERROR(_readMethod_staking_bond_extra_V8(c, &method->basic.staking_bond_extra_V8)) - break; - case 1538: /* module 6 call 2 */ - CHECK_ERROR(_readMethod_staking_unbond_V8(c, &method->basic.staking_unbond_V8)) - break; - case 1539: /* module 6 call 3 */ - CHECK_ERROR(_readMethod_staking_withdraw_unbonded_V8(c, &method->basic.staking_withdraw_unbonded_V8)) - break; - case 1540: /* module 6 call 4 */ - CHECK_ERROR(_readMethod_staking_validate_V8(c, &method->basic.staking_validate_V8)) - break; - case 1541: /* module 6 call 5 */ - CHECK_ERROR(_readMethod_staking_nominate_V8(c, &method->basic.staking_nominate_V8)) - break; - case 1542: /* module 6 call 6 */ - CHECK_ERROR(_readMethod_staking_chill_V8(c, &method->basic.staking_chill_V8)) - break; - case 1543: /* module 6 call 7 */ - CHECK_ERROR(_readMethod_staking_set_payee_V8(c, &method->basic.staking_set_payee_V8)) - break; - case 1544: /* module 6 call 8 */ - CHECK_ERROR(_readMethod_staking_set_controller_V8(c, &method->basic.staking_set_controller_V8)) - break; - case 1554: /* module 6 call 18 */ - CHECK_ERROR(_readMethod_staking_payout_stakers_V8(c, &method->basic.staking_payout_stakers_V8)) - break; - case 1555: /* module 6 call 19 */ - CHECK_ERROR(_readMethod_staking_rebond_V8(c, &method->basic.staking_rebond_V8)) - break; - case 2048: /* module 8 call 0 */ - CHECK_ERROR(_readMethod_session_set_keys_V8(c, &method->basic.session_set_keys_V8)) - break; - case 2049: /* module 8 call 1 */ - CHECK_ERROR(_readMethod_session_purge_keys_V8(c, &method->basic.session_purge_keys_V8)) - break; - case 6144: /* module 24 call 0 */ - CHECK_ERROR(_readMethod_utility_batch_V8(c, &method->basic.utility_batch_V8)) - break; - case 6146: /* module 24 call 2 */ - CHECK_ERROR(_readMethod_utility_batch_all_V8(c, &method->basic.utility_batch_all_V8)) - break; - -#ifdef SUBSTRATE_PARSER_FULL - case 0: /* module 0 call 0 */ - CHECK_ERROR(_readMethod_system_fill_block_V8(c, &method->nested.system_fill_block_V8)) - break; - case 1: /* module 0 call 1 */ - CHECK_ERROR(_readMethod_system_remark_V8(c, &method->nested.system_remark_V8)) - break; - case 2: /* module 0 call 2 */ - CHECK_ERROR(_readMethod_system_set_heap_pages_V8(c, &method->nested.system_set_heap_pages_V8)) - break; - case 3: /* module 0 call 3 */ - CHECK_ERROR(_readMethod_system_set_code_V8(c, &method->nested.system_set_code_V8)) - break; - case 4: /* module 0 call 4 */ - CHECK_ERROR(_readMethod_system_set_code_without_checks_V8(c, &method->nested.system_set_code_without_checks_V8)) - break; - case 8: /* module 0 call 8 */ - CHECK_ERROR(_readMethod_system_remark_with_event_V8(c, &method->nested.system_remark_with_event_V8)) - break; - case 512: /* module 2 call 0 */ - CHECK_ERROR(_readMethod_timestamp_set_V8(c, &method->basic.timestamp_set_V8)) - break; - case 768: /* module 3 call 0 */ - CHECK_ERROR(_readMethod_indices_claim_V8(c, &method->basic.indices_claim_V8)) - break; - case 769: /* module 3 call 1 */ - CHECK_ERROR(_readMethod_indices_transfer_V8(c, &method->basic.indices_transfer_V8)) - break; - case 770: /* module 3 call 2 */ - CHECK_ERROR(_readMethod_indices_free_V8(c, &method->basic.indices_free_V8)) - break; - case 771: /* module 3 call 3 */ - CHECK_ERROR(_readMethod_indices_force_transfer_V8(c, &method->basic.indices_force_transfer_V8)) - break; - case 772: /* module 3 call 4 */ - CHECK_ERROR(_readMethod_indices_freeze_V8(c, &method->basic.indices_freeze_V8)) - break; - case 1025: /* module 4 call 1 */ - CHECK_ERROR(_readMethod_balances_set_balance_V8(c, &method->nested.balances_set_balance_V8)) - break; - case 1029: /* module 4 call 5 */ - CHECK_ERROR(_readMethod_balances_force_unreserve_V8(c, &method->basic.balances_force_unreserve_V8)) - break; - case 1545: /* module 6 call 9 */ - CHECK_ERROR(_readMethod_staking_set_validator_count_V8(c, &method->basic.staking_set_validator_count_V8)) - break; - case 1546: /* module 6 call 10 */ - CHECK_ERROR(_readMethod_staking_increase_validator_count_V8(c, &method->basic.staking_increase_validator_count_V8)) - break; - case 1548: /* module 6 call 12 */ - CHECK_ERROR(_readMethod_staking_force_no_eras_V8(c, &method->basic.staking_force_no_eras_V8)) - break; - case 1549: /* module 6 call 13 */ - CHECK_ERROR(_readMethod_staking_force_new_era_V8(c, &method->basic.staking_force_new_era_V8)) - break; - case 1551: /* module 6 call 15 */ - CHECK_ERROR(_readMethod_staking_force_unstake_V8(c, &method->basic.staking_force_unstake_V8)) - break; - case 1552: /* module 6 call 16 */ - CHECK_ERROR(_readMethod_staking_force_new_era_always_V8(c, &method->basic.staking_force_new_era_always_V8)) - break; - case 1556: /* module 6 call 20 */ - CHECK_ERROR(_readMethod_staking_set_history_depth_V8(c, &method->basic.staking_set_history_depth_V8)) - break; - case 1557: /* module 6 call 21 */ - CHECK_ERROR(_readMethod_staking_reap_stash_V8(c, &method->basic.staking_reap_stash_V8)) - break; - case 1558: /* module 6 call 22 */ - CHECK_ERROR(_readMethod_staking_kick_V8(c, &method->basic.staking_kick_V8)) - break; - case 1560: /* module 6 call 24 */ - CHECK_ERROR(_readMethod_staking_chill_other_V8(c, &method->basic.staking_chill_other_V8)) - break; - case 2562: /* module 10 call 2 */ - CHECK_ERROR(_readMethod_grandpa_note_stalled_V8(c, &method->basic.grandpa_note_stalled_V8)) - break; - case 3329: /* module 13 call 1 */ - CHECK_ERROR(_readMethod_democracy_second_V8(c, &method->basic.democracy_second_V8)) - break; - case 3331: /* module 13 call 3 */ - CHECK_ERROR(_readMethod_democracy_emergency_cancel_V8(c, &method->basic.democracy_emergency_cancel_V8)) - break; - case 3337: /* module 13 call 9 */ - CHECK_ERROR(_readMethod_democracy_cancel_referendum_V8(c, &method->basic.democracy_cancel_referendum_V8)) - break; - case 3338: /* module 13 call 10 */ - CHECK_ERROR(_readMethod_democracy_cancel_queued_V8(c, &method->basic.democracy_cancel_queued_V8)) - break; - case 3340: /* module 13 call 12 */ - CHECK_ERROR(_readMethod_democracy_undelegate_V8(c, &method->basic.democracy_undelegate_V8)) - break; - case 3341: /* module 13 call 13 */ - CHECK_ERROR(_readMethod_democracy_clear_public_proposals_V8(c, &method->basic.democracy_clear_public_proposals_V8)) - break; - case 3342: /* module 13 call 14 */ - CHECK_ERROR(_readMethod_democracy_note_preimage_V8(c, &method->basic.democracy_note_preimage_V8)) - break; - case 3343: /* module 13 call 15 */ - CHECK_ERROR(_readMethod_democracy_note_preimage_operational_V8(c, &method->basic.democracy_note_preimage_operational_V8)) - break; - case 3344: /* module 13 call 16 */ - CHECK_ERROR(_readMethod_democracy_note_imminent_preimage_V8(c, &method->basic.democracy_note_imminent_preimage_V8)) - break; - case 3345: /* module 13 call 17 */ - CHECK_ERROR(_readMethod_democracy_note_imminent_preimage_operational_V8(c, &method->basic.democracy_note_imminent_preimage_operational_V8)) - break; - case 3348: /* module 13 call 20 */ - CHECK_ERROR(_readMethod_democracy_remove_vote_V8(c, &method->basic.democracy_remove_vote_V8)) - break; - case 3352: /* module 13 call 24 */ - CHECK_ERROR(_readMethod_democracy_cancel_proposal_V8(c, &method->basic.democracy_cancel_proposal_V8)) - break; - case 3587: /* module 14 call 3 */ - CHECK_ERROR(_readMethod_council_vote_V8(c, &method->basic.council_vote_V8)) - break; - case 3588: /* module 14 call 4 */ - CHECK_ERROR(_readMethod_council_close_V8(c, &method->basic.council_close_V8)) - break; - case 3589: /* module 14 call 5 */ - CHECK_ERROR(_readMethod_council_disapprove_proposal_V8(c, &method->basic.council_disapprove_proposal_V8)) - break; - case 3845: /* module 15 call 5 */ - CHECK_ERROR(_readMethod_technicalcommittee_disapprove_proposal_V8(c, &method->basic.technicalcommittee_disapprove_proposal_V8)) - break; - case 4097: /* module 16 call 1 */ - CHECK_ERROR(_readMethod_phragmenelection_remove_voter_V8(c, &method->basic.phragmenelection_remove_voter_V8)) - break; - case 4098: /* module 16 call 2 */ - CHECK_ERROR(_readMethod_phragmenelection_submit_candidacy_V8(c, &method->basic.phragmenelection_submit_candidacy_V8)) - break; - case 4100: /* module 16 call 4 */ - CHECK_ERROR(_readMethod_phragmenelection_remove_member_V8(c, &method->basic.phragmenelection_remove_member_V8)) - break; - case 4101: /* module 16 call 5 */ - CHECK_ERROR(_readMethod_phragmenelection_clean_defunct_voters_V8(c, &method->basic.phragmenelection_clean_defunct_voters_V8)) - break; - case 4352: /* module 17 call 0 */ - CHECK_ERROR(_readMethod_technicalmembership_add_member_V8(c, &method->basic.technicalmembership_add_member_V8)) - break; - case 4353: /* module 17 call 1 */ - CHECK_ERROR(_readMethod_technicalmembership_remove_member_V8(c, &method->basic.technicalmembership_remove_member_V8)) - break; - case 4354: /* module 17 call 2 */ - CHECK_ERROR(_readMethod_technicalmembership_swap_member_V8(c, &method->basic.technicalmembership_swap_member_V8)) - break; - case 4355: /* module 17 call 3 */ - CHECK_ERROR(_readMethod_technicalmembership_reset_members_V8(c, &method->basic.technicalmembership_reset_members_V8)) - break; - case 4356: /* module 17 call 4 */ - CHECK_ERROR(_readMethod_technicalmembership_change_key_V8(c, &method->basic.technicalmembership_change_key_V8)) - break; - case 4357: /* module 17 call 5 */ - CHECK_ERROR(_readMethod_technicalmembership_set_prime_V8(c, &method->basic.technicalmembership_set_prime_V8)) - break; - case 4358: /* module 17 call 6 */ - CHECK_ERROR(_readMethod_technicalmembership_clear_prime_V8(c, &method->basic.technicalmembership_clear_prime_V8)) - break; - case 4608: /* module 18 call 0 */ - CHECK_ERROR(_readMethod_treasury_propose_spend_V8(c, &method->basic.treasury_propose_spend_V8)) - break; - case 4609: /* module 18 call 1 */ - CHECK_ERROR(_readMethod_treasury_reject_proposal_V8(c, &method->basic.treasury_reject_proposal_V8)) - break; - case 4610: /* module 18 call 2 */ - CHECK_ERROR(_readMethod_treasury_approve_proposal_V8(c, &method->basic.treasury_approve_proposal_V8)) - break; - case 4864: /* module 19 call 0 */ - CHECK_ERROR(_readMethod_claims_claim_V8(c, &method->basic.claims_claim_V8)) - break; - case 4866: /* module 19 call 2 */ - CHECK_ERROR(_readMethod_claims_claim_attest_V8(c, &method->basic.claims_claim_attest_V8)) - break; - case 4867: /* module 19 call 3 */ - CHECK_ERROR(_readMethod_claims_attest_V8(c, &method->basic.claims_attest_V8)) - break; - case 4868: /* module 19 call 4 */ - CHECK_ERROR(_readMethod_claims_move_claim_V8(c, &method->basic.claims_move_claim_V8)) - break; - case 6400: /* module 25 call 0 */ - CHECK_ERROR(_readMethod_identity_add_registrar_V8(c, &method->basic.identity_add_registrar_V8)) - break; - case 6403: /* module 25 call 3 */ - CHECK_ERROR(_readMethod_identity_clear_identity_V8(c, &method->basic.identity_clear_identity_V8)) - break; - case 6404: /* module 25 call 4 */ - CHECK_ERROR(_readMethod_identity_request_judgement_V8(c, &method->basic.identity_request_judgement_V8)) - break; - case 6405: /* module 25 call 5 */ - CHECK_ERROR(_readMethod_identity_cancel_request_V8(c, &method->basic.identity_cancel_request_V8)) - break; - case 6406: /* module 25 call 6 */ - CHECK_ERROR(_readMethod_identity_set_fee_V8(c, &method->basic.identity_set_fee_V8)) - break; - case 6407: /* module 25 call 7 */ - CHECK_ERROR(_readMethod_identity_set_account_id_V8(c, &method->basic.identity_set_account_id_V8)) - break; - case 6410: /* module 25 call 10 */ - CHECK_ERROR(_readMethod_identity_kill_identity_V8(c, &method->basic.identity_kill_identity_V8)) - break; - case 6413: /* module 25 call 13 */ - CHECK_ERROR(_readMethod_identity_remove_sub_V8(c, &method->basic.identity_remove_sub_V8)) - break; - case 6414: /* module 25 call 14 */ - CHECK_ERROR(_readMethod_identity_quit_sub_V8(c, &method->basic.identity_quit_sub_V8)) - break; - case 6656: /* module 26 call 0 */ - CHECK_ERROR(_readMethod_society_bid_V8(c, &method->basic.society_bid_V8)) - break; - case 6657: /* module 26 call 1 */ - CHECK_ERROR(_readMethod_society_unbid_V8(c, &method->basic.society_unbid_V8)) - break; - case 6658: /* module 26 call 2 */ - CHECK_ERROR(_readMethod_society_vouch_V8(c, &method->basic.society_vouch_V8)) - break; - case 6659: /* module 26 call 3 */ - CHECK_ERROR(_readMethod_society_unvouch_V8(c, &method->basic.society_unvouch_V8)) - break; - case 6660: /* module 26 call 4 */ - CHECK_ERROR(_readMethod_society_vote_V8(c, &method->basic.society_vote_V8)) - break; - case 6661: /* module 26 call 5 */ - CHECK_ERROR(_readMethod_society_defender_vote_V8(c, &method->basic.society_defender_vote_V8)) - break; - case 6662: /* module 26 call 6 */ - CHECK_ERROR(_readMethod_society_payout_V8(c, &method->basic.society_payout_V8)) - break; - case 6663: /* module 26 call 7 */ - CHECK_ERROR(_readMethod_society_found_V8(c, &method->basic.society_found_V8)) - break; - case 6664: /* module 26 call 8 */ - CHECK_ERROR(_readMethod_society_unfound_V8(c, &method->basic.society_unfound_V8)) - break; - case 6665: /* module 26 call 9 */ - CHECK_ERROR(_readMethod_society_judge_suspended_member_V8(c, &method->basic.society_judge_suspended_member_V8)) - break; - case 6667: /* module 26 call 11 */ - CHECK_ERROR(_readMethod_society_set_max_members_V8(c, &method->basic.society_set_max_members_V8)) - break; - case 6913: /* module 27 call 1 */ - CHECK_ERROR(_readMethod_recovery_set_recovered_V8(c, &method->basic.recovery_set_recovered_V8)) - break; - case 6915: /* module 27 call 3 */ - CHECK_ERROR(_readMethod_recovery_initiate_recovery_V8(c, &method->basic.recovery_initiate_recovery_V8)) - break; - case 6916: /* module 27 call 4 */ - CHECK_ERROR(_readMethod_recovery_vouch_recovery_V8(c, &method->basic.recovery_vouch_recovery_V8)) - break; - case 6917: /* module 27 call 5 */ - CHECK_ERROR(_readMethod_recovery_claim_recovery_V8(c, &method->basic.recovery_claim_recovery_V8)) - break; - case 6918: /* module 27 call 6 */ - CHECK_ERROR(_readMethod_recovery_close_recovery_V8(c, &method->basic.recovery_close_recovery_V8)) - break; - case 6919: /* module 27 call 7 */ - CHECK_ERROR(_readMethod_recovery_remove_recovery_V8(c, &method->basic.recovery_remove_recovery_V8)) - break; - case 6920: /* module 27 call 8 */ - CHECK_ERROR(_readMethod_recovery_cancel_recovered_V8(c, &method->basic.recovery_cancel_recovered_V8)) - break; - case 7168: /* module 28 call 0 */ - CHECK_ERROR(_readMethod_vesting_vest_V8(c, &method->basic.vesting_vest_V8)) - break; - case 7169: /* module 28 call 1 */ - CHECK_ERROR(_readMethod_vesting_vest_other_V8(c, &method->basic.vesting_vest_other_V8)) - break; - case 7172: /* module 28 call 4 */ - CHECK_ERROR(_readMethod_vesting_merge_schedules_V8(c, &method->basic.vesting_merge_schedules_V8)) - break; - case 7680: /* module 30 call 0 */ - CHECK_ERROR(_readMethod_proxy_proxy_V8(c, &method->nested.proxy_proxy_V8)) - break; - case 7681: /* module 30 call 1 */ - CHECK_ERROR(_readMethod_proxy_add_proxy_V8(c, &method->basic.proxy_add_proxy_V8)) - break; - case 7682: /* module 30 call 2 */ - CHECK_ERROR(_readMethod_proxy_remove_proxy_V8(c, &method->basic.proxy_remove_proxy_V8)) - break; - case 7683: /* module 30 call 3 */ - CHECK_ERROR(_readMethod_proxy_remove_proxies_V8(c, &method->basic.proxy_remove_proxies_V8)) - break; - case 7684: /* module 30 call 4 */ - CHECK_ERROR(_readMethod_proxy_anonymous_V8(c, &method->basic.proxy_anonymous_V8)) - break; - case 7685: /* module 30 call 5 */ - CHECK_ERROR(_readMethod_proxy_kill_anonymous_V8(c, &method->basic.proxy_kill_anonymous_V8)) - break; - case 7689: /* module 30 call 9 */ - CHECK_ERROR(_readMethod_proxy_proxy_announced_V8(c, &method->basic.proxy_proxy_announced_V8)) - break; - case 7937: /* module 31 call 1 */ - CHECK_ERROR(_readMethod_multisig_as_multi_V8(c, &method->nested.multisig_as_multi_V8)) - break; - case 7938: /* module 31 call 2 */ - CHECK_ERROR(_readMethod_multisig_approve_as_multi_V8(c, &method->nested.multisig_approve_as_multi_V8)) - break; - case 7939: /* module 31 call 3 */ - CHECK_ERROR(_readMethod_multisig_cancel_as_multi_V8(c, &method->nested.multisig_cancel_as_multi_V8)) - break; - case 8960: /* module 35 call 0 */ - CHECK_ERROR(_readMethod_bounties_propose_bounty_V8(c, &method->basic.bounties_propose_bounty_V8)) - break; - case 8961: /* module 35 call 1 */ - CHECK_ERROR(_readMethod_bounties_approve_bounty_V8(c, &method->basic.bounties_approve_bounty_V8)) - break; - case 8962: /* module 35 call 2 */ - CHECK_ERROR(_readMethod_bounties_propose_curator_V8(c, &method->basic.bounties_propose_curator_V8)) - break; - case 8963: /* module 35 call 3 */ - CHECK_ERROR(_readMethod_bounties_unassign_curator_V8(c, &method->basic.bounties_unassign_curator_V8)) - break; - case 8964: /* module 35 call 4 */ - CHECK_ERROR(_readMethod_bounties_accept_curator_V8(c, &method->basic.bounties_accept_curator_V8)) - break; - case 8965: /* module 35 call 5 */ - CHECK_ERROR(_readMethod_bounties_award_bounty_V8(c, &method->basic.bounties_award_bounty_V8)) - break; - case 8966: /* module 35 call 6 */ - CHECK_ERROR(_readMethod_bounties_claim_bounty_V8(c, &method->basic.bounties_claim_bounty_V8)) - break; - case 8967: /* module 35 call 7 */ - CHECK_ERROR(_readMethod_bounties_close_bounty_V8(c, &method->basic.bounties_close_bounty_V8)) - break; - case 8968: /* module 35 call 8 */ - CHECK_ERROR(_readMethod_bounties_extend_bounty_expiry_V8(c, &method->basic.bounties_extend_bounty_expiry_V8)) - break; - case 9216: /* module 36 call 0 */ - CHECK_ERROR(_readMethod_tips_report_awesome_V8(c, &method->basic.tips_report_awesome_V8)) - break; - case 9217: /* module 36 call 1 */ - CHECK_ERROR(_readMethod_tips_retract_tip_V8(c, &method->basic.tips_retract_tip_V8)) - break; - case 9218: /* module 36 call 2 */ - CHECK_ERROR(_readMethod_tips_tip_new_V8(c, &method->basic.tips_tip_new_V8)) - break; - case 9219: /* module 36 call 3 */ - CHECK_ERROR(_readMethod_tips_tip_V8(c, &method->basic.tips_tip_V8)) - break; - case 9220: /* module 36 call 4 */ - CHECK_ERROR(_readMethod_tips_close_tip_V8(c, &method->basic.tips_close_tip_V8)) - break; - case 9221: /* module 36 call 5 */ - CHECK_ERROR(_readMethod_tips_slash_tip_V8(c, &method->basic.tips_slash_tip_V8)) - break; - case 9728: /* module 38 call 0 */ - CHECK_ERROR(_readMethod_gilt_place_bid_V8(c, &method->basic.gilt_place_bid_V8)) - break; - case 9729: /* module 38 call 1 */ - CHECK_ERROR(_readMethod_gilt_retract_bid_V8(c, &method->basic.gilt_retract_bid_V8)) - break; - case 9984: /* module 39 call 0 */ - CHECK_ERROR(_readMethod_bagslist_rebag_V8(c, &method->basic.bagslist_rebag_V8)) - break; - case 13056: /* module 51 call 0 */ - CHECK_ERROR(_readMethod_configuration_set_validation_upgrade_frequency_V8(c, &method->basic.configuration_set_validation_upgrade_frequency_V8)) - break; - case 13057: /* module 51 call 1 */ - CHECK_ERROR(_readMethod_configuration_set_validation_upgrade_delay_V8(c, &method->basic.configuration_set_validation_upgrade_delay_V8)) - break; - case 13058: /* module 51 call 2 */ - CHECK_ERROR(_readMethod_configuration_set_code_retention_period_V8(c, &method->basic.configuration_set_code_retention_period_V8)) - break; - case 13059: /* module 51 call 3 */ - CHECK_ERROR(_readMethod_configuration_set_max_code_size_V8(c, &method->basic.configuration_set_max_code_size_V8)) - break; - case 13060: /* module 51 call 4 */ - CHECK_ERROR(_readMethod_configuration_set_max_pov_size_V8(c, &method->basic.configuration_set_max_pov_size_V8)) - break; - case 13061: /* module 51 call 5 */ - CHECK_ERROR(_readMethod_configuration_set_max_head_data_size_V8(c, &method->basic.configuration_set_max_head_data_size_V8)) - break; - case 13062: /* module 51 call 6 */ - CHECK_ERROR(_readMethod_configuration_set_parathread_cores_V8(c, &method->basic.configuration_set_parathread_cores_V8)) - break; - case 13063: /* module 51 call 7 */ - CHECK_ERROR(_readMethod_configuration_set_parathread_retries_V8(c, &method->basic.configuration_set_parathread_retries_V8)) - break; - case 13064: /* module 51 call 8 */ - CHECK_ERROR(_readMethod_configuration_set_group_rotation_frequency_V8(c, &method->basic.configuration_set_group_rotation_frequency_V8)) - break; - case 13065: /* module 51 call 9 */ - CHECK_ERROR(_readMethod_configuration_set_chain_availability_period_V8(c, &method->basic.configuration_set_chain_availability_period_V8)) - break; - case 13066: /* module 51 call 10 */ - CHECK_ERROR(_readMethod_configuration_set_thread_availability_period_V8(c, &method->basic.configuration_set_thread_availability_period_V8)) - break; - case 13067: /* module 51 call 11 */ - CHECK_ERROR(_readMethod_configuration_set_scheduling_lookahead_V8(c, &method->basic.configuration_set_scheduling_lookahead_V8)) - break; - case 13068: /* module 51 call 12 */ - CHECK_ERROR(_readMethod_configuration_set_max_validators_per_core_V8(c, &method->basic.configuration_set_max_validators_per_core_V8)) - break; - case 13069: /* module 51 call 13 */ - CHECK_ERROR(_readMethod_configuration_set_max_validators_V8(c, &method->basic.configuration_set_max_validators_V8)) - break; - case 13071: /* module 51 call 15 */ - CHECK_ERROR(_readMethod_configuration_set_dispute_post_conclusion_acceptance_period_V8(c, &method->basic.configuration_set_dispute_post_conclusion_acceptance_period_V8)) - break; - case 13072: /* module 51 call 16 */ - CHECK_ERROR(_readMethod_configuration_set_dispute_max_spam_slots_V8(c, &method->basic.configuration_set_dispute_max_spam_slots_V8)) - break; - case 13073: /* module 51 call 17 */ - CHECK_ERROR(_readMethod_configuration_set_dispute_conclusion_by_time_out_period_V8(c, &method->basic.configuration_set_dispute_conclusion_by_time_out_period_V8)) - break; - case 13074: /* module 51 call 18 */ - CHECK_ERROR(_readMethod_configuration_set_no_show_slots_V8(c, &method->basic.configuration_set_no_show_slots_V8)) - break; - case 13075: /* module 51 call 19 */ - CHECK_ERROR(_readMethod_configuration_set_n_delay_tranches_V8(c, &method->basic.configuration_set_n_delay_tranches_V8)) - break; - case 13076: /* module 51 call 20 */ - CHECK_ERROR(_readMethod_configuration_set_zeroth_delay_tranche_width_V8(c, &method->basic.configuration_set_zeroth_delay_tranche_width_V8)) - break; - case 13077: /* module 51 call 21 */ - CHECK_ERROR(_readMethod_configuration_set_needed_approvals_V8(c, &method->basic.configuration_set_needed_approvals_V8)) - break; - case 13078: /* module 51 call 22 */ - CHECK_ERROR(_readMethod_configuration_set_relay_vrf_modulo_samples_V8(c, &method->basic.configuration_set_relay_vrf_modulo_samples_V8)) - break; - case 13079: /* module 51 call 23 */ - CHECK_ERROR(_readMethod_configuration_set_max_upward_queue_count_V8(c, &method->basic.configuration_set_max_upward_queue_count_V8)) - break; - case 13080: /* module 51 call 24 */ - CHECK_ERROR(_readMethod_configuration_set_max_upward_queue_size_V8(c, &method->basic.configuration_set_max_upward_queue_size_V8)) - break; - case 13081: /* module 51 call 25 */ - CHECK_ERROR(_readMethod_configuration_set_max_downward_message_size_V8(c, &method->basic.configuration_set_max_downward_message_size_V8)) - break; - case 13082: /* module 51 call 26 */ - CHECK_ERROR(_readMethod_configuration_set_ump_service_total_weight_V8(c, &method->basic.configuration_set_ump_service_total_weight_V8)) - break; - case 13083: /* module 51 call 27 */ - CHECK_ERROR(_readMethod_configuration_set_max_upward_message_size_V8(c, &method->basic.configuration_set_max_upward_message_size_V8)) - break; - case 13084: /* module 51 call 28 */ - CHECK_ERROR(_readMethod_configuration_set_max_upward_message_num_per_candidate_V8(c, &method->basic.configuration_set_max_upward_message_num_per_candidate_V8)) - break; - case 13085: /* module 51 call 29 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_open_request_ttl_V8(c, &method->basic.configuration_set_hrmp_open_request_ttl_V8)) - break; - case 13087: /* module 51 call 31 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_recipient_deposit_V8(c, &method->basic.configuration_set_hrmp_recipient_deposit_V8)) - break; - case 13088: /* module 51 call 32 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_capacity_V8(c, &method->basic.configuration_set_hrmp_channel_max_capacity_V8)) - break; - case 13089: /* module 51 call 33 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_total_size_V8(c, &method->basic.configuration_set_hrmp_channel_max_total_size_V8)) - break; - case 13090: /* module 51 call 34 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parachain_inbound_channels_V8(c, &method->basic.configuration_set_hrmp_max_parachain_inbound_channels_V8)) - break; - case 13091: /* module 51 call 35 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parathread_inbound_channels_V8(c, &method->basic.configuration_set_hrmp_max_parathread_inbound_channels_V8)) - break; - case 13092: /* module 51 call 36 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_message_size_V8(c, &method->basic.configuration_set_hrmp_channel_max_message_size_V8)) - break; - case 13093: /* module 51 call 37 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parachain_outbound_channels_V8(c, &method->basic.configuration_set_hrmp_max_parachain_outbound_channels_V8)) - break; - case 13094: /* module 51 call 38 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parathread_outbound_channels_V8(c, &method->basic.configuration_set_hrmp_max_parathread_outbound_channels_V8)) - break; - case 13095: /* module 51 call 39 */ - CHECK_ERROR(_readMethod_configuration_set_hrmp_max_message_num_per_candidate_V8(c, &method->basic.configuration_set_hrmp_max_message_num_per_candidate_V8)) - break; - case 13096: /* module 51 call 40 */ - CHECK_ERROR(_readMethod_configuration_set_ump_max_individual_weight_V8(c, &method->basic.configuration_set_ump_max_individual_weight_V8)) - break; - case 14592: /* module 57 call 0 */ - CHECK_ERROR(_readMethod_initializer_force_approve_V8(c, &method->basic.initializer_force_approve_V8)) - break; - case 15364: /* module 60 call 4 */ - CHECK_ERROR(_readMethod_hrmp_force_process_hrmp_open_V8(c, &method->basic.hrmp_force_process_hrmp_open_V8)) - break; - case 15365: /* module 60 call 5 */ - CHECK_ERROR(_readMethod_hrmp_force_process_hrmp_close_V8(c, &method->basic.hrmp_force_process_hrmp_close_V8)) - break; - case 15872: /* module 62 call 0 */ - CHECK_ERROR(_readMethod_parasdisputes_force_unfreeze_V8(c, &method->basic.parasdisputes_force_unfreeze_V8)) - break; - case 17925: /* module 70 call 5 */ - CHECK_ERROR(_readMethod_registrar_reserve_V8(c, &method->basic.registrar_reserve_V8)) - break; - case 18432: /* module 72 call 0 */ - CHECK_ERROR(_readMethod_auctions_new_auction_V8(c, &method->basic.auctions_new_auction_V8)) - break; - case 18433: /* module 72 call 1 */ - CHECK_ERROR(_readMethod_auctions_bid_V8(c, &method->basic.auctions_bid_V8)) - break; - case 18434: /* module 72 call 2 */ - CHECK_ERROR(_readMethod_auctions_cancel_auction_V8(c, &method->basic.auctions_cancel_auction_V8)) - break; -#endif - default: - return parser_unexpected_callIndex; - } - - return parser_ok; -} - -///////////////////////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////// - -const char* _getMethod_ModuleName_V8(uint8_t moduleIdx) -{ - switch (moduleIdx) { - case 4: - return STR_MO_BALANCES; - case 6: - return STR_MO_STAKING; - case 8: - return STR_MO_SESSION; - case 24: - return STR_MO_UTILITY; -#ifdef SUBSTRATE_PARSER_FULL - case 0: - return STR_MO_SYSTEM; - case 2: - return STR_MO_TIMESTAMP; - case 3: - return STR_MO_INDICES; - case 10: - return STR_MO_GRANDPA; - case 13: - return STR_MO_DEMOCRACY; - case 14: - return STR_MO_COUNCIL; - case 15: - return STR_MO_TECHNICALCOMMITTEE; - case 16: - return STR_MO_PHRAGMENELECTION; - case 17: - return STR_MO_TECHNICALMEMBERSHIP; - case 18: - return STR_MO_TREASURY; - case 19: - return STR_MO_CLAIMS; - case 25: - return STR_MO_IDENTITY; - case 26: - return STR_MO_SOCIETY; - case 27: - return STR_MO_RECOVERY; - case 28: - return STR_MO_VESTING; - case 30: - return STR_MO_PROXY; - case 31: - return STR_MO_MULTISIG; - case 35: - return STR_MO_BOUNTIES; - case 36: - return STR_MO_TIPS; - case 38: - return STR_MO_GILT; - case 39: - return STR_MO_BAGSLIST; - case 51: - return STR_MO_CONFIGURATION; - case 57: - return STR_MO_INITIALIZER; - case 60: - return STR_MO_HRMP; - case 62: - return STR_MO_PARASDISPUTES; - case 70: - return STR_MO_REGISTRAR; - case 72: - return STR_MO_AUCTIONS; -#endif - default: - return NULL; - } - - return NULL; -} - -const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 1024: /* module 4 call 0 */ - return STR_ME_TRANSFER; - case 1026: /* module 4 call 2 */ - return STR_ME_FORCE_TRANSFER; - case 1027: /* module 4 call 3 */ - return STR_ME_TRANSFER_KEEP_ALIVE; - case 1028: /* module 4 call 4 */ - return STR_ME_TRANSFER_ALL; - case 1536: /* module 6 call 0 */ - return STR_ME_BOND; - case 1537: /* module 6 call 1 */ - return STR_ME_BOND_EXTRA; - case 1538: /* module 6 call 2 */ - return STR_ME_UNBOND; - case 1539: /* module 6 call 3 */ - return STR_ME_WITHDRAW_UNBONDED; - case 1540: /* module 6 call 4 */ - return STR_ME_VALIDATE; - case 1541: /* module 6 call 5 */ - return STR_ME_NOMINATE; - case 1542: /* module 6 call 6 */ - return STR_ME_CHILL; - case 1543: /* module 6 call 7 */ - return STR_ME_SET_PAYEE; - case 1544: /* module 6 call 8 */ - return STR_ME_SET_CONTROLLER; - case 1554: /* module 6 call 18 */ - return STR_ME_PAYOUT_STAKERS; - case 1555: /* module 6 call 19 */ - return STR_ME_REBOND; - case 2048: /* module 8 call 0 */ - return STR_ME_SET_KEYS; - case 2049: /* module 8 call 1 */ - return STR_ME_PURGE_KEYS; - case 6144: /* module 24 call 0 */ - return STR_ME_BATCH; - case 6146: /* module 24 call 2 */ - return STR_ME_BATCH_ALL; -#ifdef SUBSTRATE_PARSER_FULL - case 0: /* module 0 call 0 */ - return STR_ME_FILL_BLOCK; - case 1: /* module 0 call 1 */ - return STR_ME_REMARK; - case 2: /* module 0 call 2 */ - return STR_ME_SET_HEAP_PAGES; - case 3: /* module 0 call 3 */ - return STR_ME_SET_CODE; - case 4: /* module 0 call 4 */ - return STR_ME_SET_CODE_WITHOUT_CHECKS; - case 5: /* module 0 call 5 */ - return STR_ME_SET_STORAGE; - case 6: /* module 0 call 6 */ - return STR_ME_KILL_STORAGE; - case 7: /* module 0 call 7 */ - return STR_ME_KILL_PREFIX; - case 8: /* module 0 call 8 */ - return STR_ME_REMARK_WITH_EVENT; - case 256: /* module 1 call 0 */ - return STR_ME_REPORT_EQUIVOCATION; - case 257: /* module 1 call 1 */ - return STR_ME_REPORT_EQUIVOCATION_UNSIGNED; - case 258: /* module 1 call 2 */ - return STR_ME_PLAN_CONFIG_CHANGE; - case 512: /* module 2 call 0 */ - return STR_ME_SET; - case 768: /* module 3 call 0 */ - return STR_ME_CLAIM; - case 769: /* module 3 call 1 */ - return STR_ME_TRANSFER; - case 770: /* module 3 call 2 */ - return STR_ME_FREE; - case 771: /* module 3 call 3 */ - return STR_ME_FORCE_TRANSFER; - case 772: /* module 3 call 4 */ - return STR_ME_FREEZE; - case 1025: /* module 4 call 1 */ - return STR_ME_SET_BALANCE; - case 1029: /* module 4 call 5 */ - return STR_ME_FORCE_UNRESERVE; - case 1280: /* module 5 call 0 */ - return STR_ME_SET_UNCLES; - case 1545: /* module 6 call 9 */ - return STR_ME_SET_VALIDATOR_COUNT; - case 1546: /* module 6 call 10 */ - return STR_ME_INCREASE_VALIDATOR_COUNT; - case 1547: /* module 6 call 11 */ - return STR_ME_SCALE_VALIDATOR_COUNT; - case 1548: /* module 6 call 12 */ - return STR_ME_FORCE_NO_ERAS; - case 1549: /* module 6 call 13 */ - return STR_ME_FORCE_NEW_ERA; - case 1550: /* module 6 call 14 */ - return STR_ME_SET_INVULNERABLES; - case 1551: /* module 6 call 15 */ - return STR_ME_FORCE_UNSTAKE; - case 1552: /* module 6 call 16 */ - return STR_ME_FORCE_NEW_ERA_ALWAYS; - case 1553: /* module 6 call 17 */ - return STR_ME_CANCEL_DEFERRED_SLASH; - case 1556: /* module 6 call 20 */ - return STR_ME_SET_HISTORY_DEPTH; - case 1557: /* module 6 call 21 */ - return STR_ME_REAP_STASH; - case 1558: /* module 6 call 22 */ - return STR_ME_KICK; - case 1559: /* module 6 call 23 */ - return STR_ME_SET_STAKING_LIMITS; - case 1560: /* module 6 call 24 */ - return STR_ME_CHILL_OTHER; - case 2560: /* module 10 call 0 */ - return STR_ME_REPORT_EQUIVOCATION; - case 2561: /* module 10 call 1 */ - return STR_ME_REPORT_EQUIVOCATION_UNSIGNED; - case 2562: /* module 10 call 2 */ - return STR_ME_NOTE_STALLED; - case 2816: /* module 11 call 0 */ - return STR_ME_HEARTBEAT; - case 3328: /* module 13 call 0 */ - return STR_ME_PROPOSE; - case 3329: /* module 13 call 1 */ - return STR_ME_SECOND; - case 3330: /* module 13 call 2 */ - return STR_ME_VOTE; - case 3331: /* module 13 call 3 */ - return STR_ME_EMERGENCY_CANCEL; - case 3332: /* module 13 call 4 */ - return STR_ME_EXTERNAL_PROPOSE; - case 3333: /* module 13 call 5 */ - return STR_ME_EXTERNAL_PROPOSE_MAJORITY; - case 3334: /* module 13 call 6 */ - return STR_ME_EXTERNAL_PROPOSE_DEFAULT; - case 3335: /* module 13 call 7 */ - return STR_ME_FAST_TRACK; - case 3336: /* module 13 call 8 */ - return STR_ME_VETO_EXTERNAL; - case 3337: /* module 13 call 9 */ - return STR_ME_CANCEL_REFERENDUM; - case 3338: /* module 13 call 10 */ - return STR_ME_CANCEL_QUEUED; - case 3339: /* module 13 call 11 */ - return STR_ME_DELEGATE; - case 3340: /* module 13 call 12 */ - return STR_ME_UNDELEGATE; - case 3341: /* module 13 call 13 */ - return STR_ME_CLEAR_PUBLIC_PROPOSALS; - case 3342: /* module 13 call 14 */ - return STR_ME_NOTE_PREIMAGE; - case 3343: /* module 13 call 15 */ - return STR_ME_NOTE_PREIMAGE_OPERATIONAL; - case 3344: /* module 13 call 16 */ - return STR_ME_NOTE_IMMINENT_PREIMAGE; - case 3345: /* module 13 call 17 */ - return STR_ME_NOTE_IMMINENT_PREIMAGE_OPERATIONAL; - case 3346: /* module 13 call 18 */ - return STR_ME_REAP_PREIMAGE; - case 3347: /* module 13 call 19 */ - return STR_ME_UNLOCK; - case 3348: /* module 13 call 20 */ - return STR_ME_REMOVE_VOTE; - case 3349: /* module 13 call 21 */ - return STR_ME_REMOVE_OTHER_VOTE; - case 3350: /* module 13 call 22 */ - return STR_ME_ENACT_PROPOSAL; - case 3351: /* module 13 call 23 */ - return STR_ME_BLACKLIST; - case 3352: /* module 13 call 24 */ - return STR_ME_CANCEL_PROPOSAL; - case 3584: /* module 14 call 0 */ - return STR_ME_SET_MEMBERS; - case 3585: /* module 14 call 1 */ - return STR_ME_EXECUTE; - case 3586: /* module 14 call 2 */ - return STR_ME_PROPOSE; - case 3587: /* module 14 call 3 */ - return STR_ME_VOTE; - case 3588: /* module 14 call 4 */ - return STR_ME_CLOSE; - case 3589: /* module 14 call 5 */ - return STR_ME_DISAPPROVE_PROPOSAL; - case 3840: /* module 15 call 0 */ - return STR_ME_SET_MEMBERS; - case 3841: /* module 15 call 1 */ - return STR_ME_EXECUTE; - case 3842: /* module 15 call 2 */ - return STR_ME_PROPOSE; - case 3843: /* module 15 call 3 */ - return STR_ME_VOTE; - case 3844: /* module 15 call 4 */ - return STR_ME_CLOSE; - case 3845: /* module 15 call 5 */ - return STR_ME_DISAPPROVE_PROPOSAL; - case 4096: /* module 16 call 0 */ - return STR_ME_VOTE; - case 4097: /* module 16 call 1 */ - return STR_ME_REMOVE_VOTER; - case 4098: /* module 16 call 2 */ - return STR_ME_SUBMIT_CANDIDACY; - case 4099: /* module 16 call 3 */ - return STR_ME_RENOUNCE_CANDIDACY; - case 4100: /* module 16 call 4 */ - return STR_ME_REMOVE_MEMBER; - case 4101: /* module 16 call 5 */ - return STR_ME_CLEAN_DEFUNCT_VOTERS; - case 4352: /* module 17 call 0 */ - return STR_ME_ADD_MEMBER; - case 4353: /* module 17 call 1 */ - return STR_ME_REMOVE_MEMBER; - case 4354: /* module 17 call 2 */ - return STR_ME_SWAP_MEMBER; - case 4355: /* module 17 call 3 */ - return STR_ME_RESET_MEMBERS; - case 4356: /* module 17 call 4 */ - return STR_ME_CHANGE_KEY; - case 4357: /* module 17 call 5 */ - return STR_ME_SET_PRIME; - case 4358: /* module 17 call 6 */ - return STR_ME_CLEAR_PRIME; - case 4608: /* module 18 call 0 */ - return STR_ME_PROPOSE_SPEND; - case 4609: /* module 18 call 1 */ - return STR_ME_REJECT_PROPOSAL; - case 4610: /* module 18 call 2 */ - return STR_ME_APPROVE_PROPOSAL; - case 4864: /* module 19 call 0 */ - return STR_ME_CLAIM; - case 4865: /* module 19 call 1 */ - return STR_ME_MINT_CLAIM; - case 4866: /* module 19 call 2 */ - return STR_ME_CLAIM_ATTEST; - case 4867: /* module 19 call 3 */ - return STR_ME_ATTEST; - case 4868: /* module 19 call 4 */ - return STR_ME_MOVE_CLAIM; - case 6145: /* module 24 call 1 */ - return STR_ME_AS_DERIVATIVE; - case 6147: /* module 24 call 3 */ - return STR_ME_DISPATCH_AS; - case 6400: /* module 25 call 0 */ - return STR_ME_ADD_REGISTRAR; - case 6401: /* module 25 call 1 */ - return STR_ME_SET_IDENTITY; - case 6402: /* module 25 call 2 */ - return STR_ME_SET_SUBS; - case 6403: /* module 25 call 3 */ - return STR_ME_CLEAR_IDENTITY; - case 6404: /* module 25 call 4 */ - return STR_ME_REQUEST_JUDGEMENT; - case 6405: /* module 25 call 5 */ - return STR_ME_CANCEL_REQUEST; - case 6406: /* module 25 call 6 */ - return STR_ME_SET_FEE; - case 6407: /* module 25 call 7 */ - return STR_ME_SET_ACCOUNT_ID; - case 6408: /* module 25 call 8 */ - return STR_ME_SET_FIELDS; - case 6409: /* module 25 call 9 */ - return STR_ME_PROVIDE_JUDGEMENT; - case 6410: /* module 25 call 10 */ - return STR_ME_KILL_IDENTITY; - case 6411: /* module 25 call 11 */ - return STR_ME_ADD_SUB; - case 6412: /* module 25 call 12 */ - return STR_ME_RENAME_SUB; - case 6413: /* module 25 call 13 */ - return STR_ME_REMOVE_SUB; - case 6414: /* module 25 call 14 */ - return STR_ME_QUIT_SUB; - case 6656: /* module 26 call 0 */ - return STR_ME_BID; - case 6657: /* module 26 call 1 */ - return STR_ME_UNBID; - case 6658: /* module 26 call 2 */ - return STR_ME_VOUCH; - case 6659: /* module 26 call 3 */ - return STR_ME_UNVOUCH; - case 6660: /* module 26 call 4 */ - return STR_ME_VOTE; - case 6661: /* module 26 call 5 */ - return STR_ME_DEFENDER_VOTE; - case 6662: /* module 26 call 6 */ - return STR_ME_PAYOUT; - case 6663: /* module 26 call 7 */ - return STR_ME_FOUND; - case 6664: /* module 26 call 8 */ - return STR_ME_UNFOUND; - case 6665: /* module 26 call 9 */ - return STR_ME_JUDGE_SUSPENDED_MEMBER; - case 6666: /* module 26 call 10 */ - return STR_ME_JUDGE_SUSPENDED_CANDIDATE; - case 6667: /* module 26 call 11 */ - return STR_ME_SET_MAX_MEMBERS; - case 6912: /* module 27 call 0 */ - return STR_ME_AS_RECOVERED; - case 6913: /* module 27 call 1 */ - return STR_ME_SET_RECOVERED; - case 6914: /* module 27 call 2 */ - return STR_ME_CREATE_RECOVERY; - case 6915: /* module 27 call 3 */ - return STR_ME_INITIATE_RECOVERY; - case 6916: /* module 27 call 4 */ - return STR_ME_VOUCH_RECOVERY; - case 6917: /* module 27 call 5 */ - return STR_ME_CLAIM_RECOVERY; - case 6918: /* module 27 call 6 */ - return STR_ME_CLOSE_RECOVERY; - case 6919: /* module 27 call 7 */ - return STR_ME_REMOVE_RECOVERY; - case 6920: /* module 27 call 8 */ - return STR_ME_CANCEL_RECOVERED; - case 7168: /* module 28 call 0 */ - return STR_ME_VEST; - case 7169: /* module 28 call 1 */ - return STR_ME_VEST_OTHER; - case 7170: /* module 28 call 2 */ - return STR_ME_VESTED_TRANSFER; - case 7171: /* module 28 call 3 */ - return STR_ME_FORCE_VESTED_TRANSFER; - case 7172: /* module 28 call 4 */ - return STR_ME_MERGE_SCHEDULES; - case 7424: /* module 29 call 0 */ - return STR_ME_SCHEDULE; - case 7425: /* module 29 call 1 */ - return STR_ME_CANCEL; - case 7426: /* module 29 call 2 */ - return STR_ME_SCHEDULE_NAMED; - case 7427: /* module 29 call 3 */ - return STR_ME_CANCEL_NAMED; - case 7428: /* module 29 call 4 */ - return STR_ME_SCHEDULE_AFTER; - case 7429: /* module 29 call 5 */ - return STR_ME_SCHEDULE_NAMED_AFTER; - case 7680: /* module 30 call 0 */ - return STR_ME_PROXY; - case 7681: /* module 30 call 1 */ - return STR_ME_ADD_PROXY; - case 7682: /* module 30 call 2 */ - return STR_ME_REMOVE_PROXY; - case 7683: /* module 30 call 3 */ - return STR_ME_REMOVE_PROXIES; - case 7684: /* module 30 call 4 */ - return STR_ME_ANONYMOUS; - case 7685: /* module 30 call 5 */ - return STR_ME_KILL_ANONYMOUS; - case 7686: /* module 30 call 6 */ - return STR_ME_ANNOUNCE; - case 7687: /* module 30 call 7 */ - return STR_ME_REMOVE_ANNOUNCEMENT; - case 7688: /* module 30 call 8 */ - return STR_ME_REJECT_ANNOUNCEMENT; - case 7689: /* module 30 call 9 */ - return STR_ME_PROXY_ANNOUNCED; - case 7936: /* module 31 call 0 */ - return STR_ME_AS_MULTI_THRESHOLD_1; - case 7937: /* module 31 call 1 */ - return STR_ME_AS_MULTI; - case 7938: /* module 31 call 2 */ - return STR_ME_APPROVE_AS_MULTI; - case 7939: /* module 31 call 3 */ - return STR_ME_CANCEL_AS_MULTI; - case 8960: /* module 35 call 0 */ - return STR_ME_PROPOSE_BOUNTY; - case 8961: /* module 35 call 1 */ - return STR_ME_APPROVE_BOUNTY; - case 8962: /* module 35 call 2 */ - return STR_ME_PROPOSE_CURATOR; - case 8963: /* module 35 call 3 */ - return STR_ME_UNASSIGN_CURATOR; - case 8964: /* module 35 call 4 */ - return STR_ME_ACCEPT_CURATOR; - case 8965: /* module 35 call 5 */ - return STR_ME_AWARD_BOUNTY; - case 8966: /* module 35 call 6 */ - return STR_ME_CLAIM_BOUNTY; - case 8967: /* module 35 call 7 */ - return STR_ME_CLOSE_BOUNTY; - case 8968: /* module 35 call 8 */ - return STR_ME_EXTEND_BOUNTY_EXPIRY; - case 9216: /* module 36 call 0 */ - return STR_ME_REPORT_AWESOME; - case 9217: /* module 36 call 1 */ - return STR_ME_RETRACT_TIP; - case 9218: /* module 36 call 2 */ - return STR_ME_TIP_NEW; - case 9219: /* module 36 call 3 */ - return STR_ME_TIP; - case 9220: /* module 36 call 4 */ - return STR_ME_CLOSE_TIP; - case 9221: /* module 36 call 5 */ - return STR_ME_SLASH_TIP; - case 9472: /* module 37 call 0 */ - return STR_ME_SUBMIT_UNSIGNED; - case 9473: /* module 37 call 1 */ - return STR_ME_SET_MINIMUM_UNTRUSTED_SCORE; - case 9474: /* module 37 call 2 */ - return STR_ME_SET_EMERGENCY_ELECTION_RESULT; - case 9475: /* module 37 call 3 */ - return STR_ME_SUBMIT; - case 9728: /* module 38 call 0 */ - return STR_ME_PLACE_BID; - case 9729: /* module 38 call 1 */ - return STR_ME_RETRACT_BID; - case 9730: /* module 38 call 2 */ - return STR_ME_SET_TARGET; - case 9731: /* module 38 call 3 */ - return STR_ME_THAW; - case 9984: /* module 39 call 0 */ - return STR_ME_REBAG; - case 13056: /* module 51 call 0 */ - return STR_ME_SET_VALIDATION_UPGRADE_FREQUENCY; - case 13057: /* module 51 call 1 */ - return STR_ME_SET_VALIDATION_UPGRADE_DELAY; - case 13058: /* module 51 call 2 */ - return STR_ME_SET_CODE_RETENTION_PERIOD; - case 13059: /* module 51 call 3 */ - return STR_ME_SET_MAX_CODE_SIZE; - case 13060: /* module 51 call 4 */ - return STR_ME_SET_MAX_POV_SIZE; - case 13061: /* module 51 call 5 */ - return STR_ME_SET_MAX_HEAD_DATA_SIZE; - case 13062: /* module 51 call 6 */ - return STR_ME_SET_PARATHREAD_CORES; - case 13063: /* module 51 call 7 */ - return STR_ME_SET_PARATHREAD_RETRIES; - case 13064: /* module 51 call 8 */ - return STR_ME_SET_GROUP_ROTATION_FREQUENCY; - case 13065: /* module 51 call 9 */ - return STR_ME_SET_CHAIN_AVAILABILITY_PERIOD; - case 13066: /* module 51 call 10 */ - return STR_ME_SET_THREAD_AVAILABILITY_PERIOD; - case 13067: /* module 51 call 11 */ - return STR_ME_SET_SCHEDULING_LOOKAHEAD; - case 13068: /* module 51 call 12 */ - return STR_ME_SET_MAX_VALIDATORS_PER_CORE; - case 13069: /* module 51 call 13 */ - return STR_ME_SET_MAX_VALIDATORS; - case 13070: /* module 51 call 14 */ - return STR_ME_SET_DISPUTE_PERIOD; - case 13071: /* module 51 call 15 */ - return STR_ME_SET_DISPUTE_POST_CONCLUSION_ACCEPTANCE_PERIOD; - case 13072: /* module 51 call 16 */ - return STR_ME_SET_DISPUTE_MAX_SPAM_SLOTS; - case 13073: /* module 51 call 17 */ - return STR_ME_SET_DISPUTE_CONCLUSION_BY_TIME_OUT_PERIOD; - case 13074: /* module 51 call 18 */ - return STR_ME_SET_NO_SHOW_SLOTS; - case 13075: /* module 51 call 19 */ - return STR_ME_SET_N_DELAY_TRANCHES; - case 13076: /* module 51 call 20 */ - return STR_ME_SET_ZEROTH_DELAY_TRANCHE_WIDTH; - case 13077: /* module 51 call 21 */ - return STR_ME_SET_NEEDED_APPROVALS; - case 13078: /* module 51 call 22 */ - return STR_ME_SET_RELAY_VRF_MODULO_SAMPLES; - case 13079: /* module 51 call 23 */ - return STR_ME_SET_MAX_UPWARD_QUEUE_COUNT; - case 13080: /* module 51 call 24 */ - return STR_ME_SET_MAX_UPWARD_QUEUE_SIZE; - case 13081: /* module 51 call 25 */ - return STR_ME_SET_MAX_DOWNWARD_MESSAGE_SIZE; - case 13082: /* module 51 call 26 */ - return STR_ME_SET_UMP_SERVICE_TOTAL_WEIGHT; - case 13083: /* module 51 call 27 */ - return STR_ME_SET_MAX_UPWARD_MESSAGE_SIZE; - case 13084: /* module 51 call 28 */ - return STR_ME_SET_MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE; - case 13085: /* module 51 call 29 */ - return STR_ME_SET_HRMP_OPEN_REQUEST_TTL; - case 13086: /* module 51 call 30 */ - return STR_ME_SET_HRMP_SENDER_DEPOSIT; - case 13087: /* module 51 call 31 */ - return STR_ME_SET_HRMP_RECIPIENT_DEPOSIT; - case 13088: /* module 51 call 32 */ - return STR_ME_SET_HRMP_CHANNEL_MAX_CAPACITY; - case 13089: /* module 51 call 33 */ - return STR_ME_SET_HRMP_CHANNEL_MAX_TOTAL_SIZE; - case 13090: /* module 51 call 34 */ - return STR_ME_SET_HRMP_MAX_PARACHAIN_INBOUND_CHANNELS; - case 13091: /* module 51 call 35 */ - return STR_ME_SET_HRMP_MAX_PARATHREAD_INBOUND_CHANNELS; - case 13092: /* module 51 call 36 */ - return STR_ME_SET_HRMP_CHANNEL_MAX_MESSAGE_SIZE; - case 13093: /* module 51 call 37 */ - return STR_ME_SET_HRMP_MAX_PARACHAIN_OUTBOUND_CHANNELS; - case 13094: /* module 51 call 38 */ - return STR_ME_SET_HRMP_MAX_PARATHREAD_OUTBOUND_CHANNELS; - case 13095: /* module 51 call 39 */ - return STR_ME_SET_HRMP_MAX_MESSAGE_NUM_PER_CANDIDATE; - case 13096: /* module 51 call 40 */ - return STR_ME_SET_UMP_MAX_INDIVIDUAL_WEIGHT; - case 13824: /* module 54 call 0 */ - return STR_ME_ENTER; - case 14336: /* module 56 call 0 */ - return STR_ME_FORCE_SET_CURRENT_CODE; - case 14337: /* module 56 call 1 */ - return STR_ME_FORCE_SET_CURRENT_HEAD; - case 14338: /* module 56 call 2 */ - return STR_ME_FORCE_SCHEDULE_CODE_UPGRADE; - case 14339: /* module 56 call 3 */ - return STR_ME_FORCE_NOTE_NEW_HEAD; - case 14340: /* module 56 call 4 */ - return STR_ME_FORCE_QUEUE_ACTION; - case 14592: /* module 57 call 0 */ - return STR_ME_FORCE_APPROVE; - case 15104: /* module 59 call 0 */ - return STR_ME_SERVICE_OVERWEIGHT; - case 15360: /* module 60 call 0 */ - return STR_ME_HRMP_INIT_OPEN_CHANNEL; - case 15361: /* module 60 call 1 */ - return STR_ME_HRMP_ACCEPT_OPEN_CHANNEL; - case 15362: /* module 60 call 2 */ - return STR_ME_HRMP_CLOSE_CHANNEL; - case 15363: /* module 60 call 3 */ - return STR_ME_FORCE_CLEAN_HRMP; - case 15364: /* module 60 call 4 */ - return STR_ME_FORCE_PROCESS_HRMP_OPEN; - case 15365: /* module 60 call 5 */ - return STR_ME_FORCE_PROCESS_HRMP_CLOSE; - case 15366: /* module 60 call 6 */ - return STR_ME_HRMP_CANCEL_OPEN_REQUEST; - case 15872: /* module 62 call 0 */ - return STR_ME_FORCE_UNFREEZE; - case 17920: /* module 70 call 0 */ - return STR_ME_REGISTER; - case 17921: /* module 70 call 1 */ - return STR_ME_FORCE_REGISTER; - case 17922: /* module 70 call 2 */ - return STR_ME_DEREGISTER; - case 17923: /* module 70 call 3 */ - return STR_ME_SWAP; - case 17924: /* module 70 call 4 */ - return STR_ME_FORCE_REMOVE_LOCK; - case 17925: /* module 70 call 5 */ - return STR_ME_RESERVE; - case 18176: /* module 71 call 0 */ - return STR_ME_FORCE_LEASE; - case 18177: /* module 71 call 1 */ - return STR_ME_CLEAR_ALL_LEASES; - case 18178: /* module 71 call 2 */ - return STR_ME_TRIGGER_ONBOARD; - case 18432: /* module 72 call 0 */ - return STR_ME_NEW_AUCTION; - case 18433: /* module 72 call 1 */ - return STR_ME_BID; - case 18434: /* module 72 call 2 */ - return STR_ME_CANCEL_AUCTION; - case 18688: /* module 73 call 0 */ - return STR_ME_CREATE; - case 18689: /* module 73 call 1 */ - return STR_ME_CONTRIBUTE; - case 18690: /* module 73 call 2 */ - return STR_ME_WITHDRAW; - case 18691: /* module 73 call 3 */ - return STR_ME_REFUND; - case 18692: /* module 73 call 4 */ - return STR_ME_DISSOLVE; - case 18693: /* module 73 call 5 */ - return STR_ME_EDIT; - case 18694: /* module 73 call 6 */ - return STR_ME_ADD_MEMO; - case 18695: /* module 73 call 7 */ - return STR_ME_POKE; - case 25344: /* module 99 call 0 */ - return STR_ME_SEND; - case 25345: /* module 99 call 1 */ - return STR_ME_TELEPORT_ASSETS; - case 25346: /* module 99 call 2 */ - return STR_ME_RESERVE_TRANSFER_ASSETS; - case 25347: /* module 99 call 3 */ - return STR_ME_EXECUTE; - case 25348: /* module 99 call 4 */ - return STR_ME_FORCE_XCM_VERSION; - case 25349: /* module 99 call 5 */ - return STR_ME_FORCE_DEFAULT_XCM_VERSION; - case 25350: /* module 99 call 6 */ - return STR_ME_FORCE_SUBSCRIBE_VERSION_NOTIFY; - case 25351: /* module 99 call 7 */ - return STR_ME_FORCE_UNSUBSCRIBE_VERSION_NOTIFY; - case 25352: /* module 99 call 8 */ - return STR_ME_LIMITED_RESERVE_TRANSFER_ASSETS; - case 25353: /* module 99 call 9 */ - return STR_ME_LIMITED_TELEPORT_ASSETS; -#endif - default: - return NULL; - } - - return NULL; -} - -uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 1024: /* module 4 call 0 */ - return 2; - case 1026: /* module 4 call 2 */ - return 3; - case 1027: /* module 4 call 3 */ - return 2; - case 1028: /* module 4 call 4 */ - return 2; - case 1536: /* module 6 call 0 */ - return 3; - case 1537: /* module 6 call 1 */ - return 1; - case 1538: /* module 6 call 2 */ - return 1; - case 1539: /* module 6 call 3 */ - return 1; - case 1540: /* module 6 call 4 */ - return 1; - case 1541: /* module 6 call 5 */ - return 1; - case 1542: /* module 6 call 6 */ - return 0; - case 1543: /* module 6 call 7 */ - return 1; - case 1544: /* module 6 call 8 */ - return 1; - case 1554: /* module 6 call 18 */ - return 2; - case 1555: /* module 6 call 19 */ - return 1; - case 2048: /* module 8 call 0 */ - return 2; - case 2049: /* module 8 call 1 */ - return 0; - case 6144: /* module 24 call 0 */ - return 1; - case 6146: /* module 24 call 2 */ - return 1; -#ifdef SUBSTRATE_PARSER_FULL - case 0: /* module 0 call 0 */ - return 1; - case 1: /* module 0 call 1 */ - return 1; - case 2: /* module 0 call 2 */ - return 1; - case 3: /* module 0 call 3 */ - return 1; - case 4: /* module 0 call 4 */ - return 1; - case 8: /* module 0 call 8 */ - return 1; - case 512: /* module 2 call 0 */ - return 1; - case 768: /* module 3 call 0 */ - return 1; - case 769: /* module 3 call 1 */ - return 2; - case 770: /* module 3 call 2 */ - return 1; - case 771: /* module 3 call 3 */ - return 3; - case 772: /* module 3 call 4 */ - return 1; - case 1025: /* module 4 call 1 */ - return 3; - case 1029: /* module 4 call 5 */ - return 2; - case 1545: /* module 6 call 9 */ - return 1; - case 1546: /* module 6 call 10 */ - return 1; - case 1548: /* module 6 call 12 */ - return 0; - case 1549: /* module 6 call 13 */ - return 0; - case 1551: /* module 6 call 15 */ - return 2; - case 1552: /* module 6 call 16 */ - return 0; - case 1556: /* module 6 call 20 */ - return 2; - case 1557: /* module 6 call 21 */ - return 2; - case 1558: /* module 6 call 22 */ - return 1; - case 1560: /* module 6 call 24 */ - return 1; - case 2562: /* module 10 call 2 */ - return 2; - case 3329: /* module 13 call 1 */ - return 2; - case 3331: /* module 13 call 3 */ - return 1; - case 3337: /* module 13 call 9 */ - return 1; - case 3338: /* module 13 call 10 */ - return 1; - case 3340: /* module 13 call 12 */ - return 0; - case 3341: /* module 13 call 13 */ - return 0; - case 3342: /* module 13 call 14 */ - return 1; - case 3343: /* module 13 call 15 */ - return 1; - case 3344: /* module 13 call 16 */ - return 1; - case 3345: /* module 13 call 17 */ - return 1; - case 3348: /* module 13 call 20 */ - return 1; - case 3352: /* module 13 call 24 */ - return 1; - case 3587: /* module 14 call 3 */ - return 3; - case 3588: /* module 14 call 4 */ - return 4; - case 3589: /* module 14 call 5 */ - return 1; - case 3845: /* module 15 call 5 */ - return 1; - case 4097: /* module 16 call 1 */ - return 0; - case 4098: /* module 16 call 2 */ - return 1; - case 4100: /* module 16 call 4 */ - return 2; - case 4101: /* module 16 call 5 */ - return 2; - case 4352: /* module 17 call 0 */ - return 1; - case 4353: /* module 17 call 1 */ - return 1; - case 4354: /* module 17 call 2 */ - return 2; - case 4355: /* module 17 call 3 */ - return 1; - case 4356: /* module 17 call 4 */ - return 1; - case 4357: /* module 17 call 5 */ - return 1; - case 4358: /* module 17 call 6 */ - return 0; - case 4608: /* module 18 call 0 */ - return 2; - case 4609: /* module 18 call 1 */ - return 1; - case 4610: /* module 18 call 2 */ - return 1; - case 4864: /* module 19 call 0 */ - return 2; - case 4866: /* module 19 call 2 */ - return 3; - case 4867: /* module 19 call 3 */ - return 1; - case 4868: /* module 19 call 4 */ - return 3; - case 6400: /* module 25 call 0 */ - return 1; - case 6403: /* module 25 call 3 */ - return 0; - case 6404: /* module 25 call 4 */ - return 2; - case 6405: /* module 25 call 5 */ - return 1; - case 6406: /* module 25 call 6 */ - return 2; - case 6407: /* module 25 call 7 */ - return 2; - case 6410: /* module 25 call 10 */ - return 1; - case 6413: /* module 25 call 13 */ - return 1; - case 6414: /* module 25 call 14 */ - return 0; - case 6656: /* module 26 call 0 */ - return 1; - case 6657: /* module 26 call 1 */ - return 1; - case 6658: /* module 26 call 2 */ - return 3; - case 6659: /* module 26 call 3 */ - return 1; - case 6660: /* module 26 call 4 */ - return 2; - case 6661: /* module 26 call 5 */ - return 1; - case 6662: /* module 26 call 6 */ - return 0; - case 6663: /* module 26 call 7 */ - return 3; - case 6664: /* module 26 call 8 */ - return 0; - case 6665: /* module 26 call 9 */ - return 2; - case 6667: /* module 26 call 11 */ - return 1; - case 6913: /* module 27 call 1 */ - return 2; - case 6915: /* module 27 call 3 */ - return 1; - case 6916: /* module 27 call 4 */ - return 2; - case 6917: /* module 27 call 5 */ - return 1; - case 6918: /* module 27 call 6 */ - return 1; - case 6919: /* module 27 call 7 */ - return 0; - case 6920: /* module 27 call 8 */ - return 1; - case 7168: /* module 28 call 0 */ - return 0; - case 7169: /* module 28 call 1 */ - return 1; - case 7172: /* module 28 call 4 */ - return 2; - case 7680: /* module 30 call 0 */ - return 3; - case 7681: /* module 30 call 1 */ - return 3; - case 7682: /* module 30 call 2 */ - return 3; - case 7683: /* module 30 call 3 */ - return 0; - case 7684: /* module 30 call 4 */ - return 3; - case 7685: /* module 30 call 5 */ - return 5; - case 7689: /* module 30 call 9 */ - return 4; - case 7937: /* module 31 call 1 */ - return 6; - case 7938: /* module 31 call 2 */ - return 5; - case 7939: /* module 31 call 3 */ - return 4; - case 8960: /* module 35 call 0 */ - return 2; - case 8961: /* module 35 call 1 */ - return 1; - case 8962: /* module 35 call 2 */ - return 3; - case 8963: /* module 35 call 3 */ - return 1; - case 8964: /* module 35 call 4 */ - return 1; - case 8965: /* module 35 call 5 */ - return 2; - case 8966: /* module 35 call 6 */ - return 1; - case 8967: /* module 35 call 7 */ - return 1; - case 8968: /* module 35 call 8 */ - return 2; - case 9216: /* module 36 call 0 */ - return 2; - case 9217: /* module 36 call 1 */ - return 1; - case 9218: /* module 36 call 2 */ - return 3; - case 9219: /* module 36 call 3 */ - return 2; - case 9220: /* module 36 call 4 */ - return 1; - case 9221: /* module 36 call 5 */ - return 1; - case 9728: /* module 38 call 0 */ - return 2; - case 9729: /* module 38 call 1 */ - return 2; - case 9984: /* module 39 call 0 */ - return 1; - case 13056: /* module 51 call 0 */ - return 1; - case 13057: /* module 51 call 1 */ - return 1; - case 13058: /* module 51 call 2 */ - return 1; - case 13059: /* module 51 call 3 */ - return 1; - case 13060: /* module 51 call 4 */ - return 1; - case 13061: /* module 51 call 5 */ - return 1; - case 13062: /* module 51 call 6 */ - return 1; - case 13063: /* module 51 call 7 */ - return 1; - case 13064: /* module 51 call 8 */ - return 1; - case 13065: /* module 51 call 9 */ - return 1; - case 13066: /* module 51 call 10 */ - return 1; - case 13067: /* module 51 call 11 */ - return 1; - case 13068: /* module 51 call 12 */ - return 1; - case 13069: /* module 51 call 13 */ - return 1; - case 13071: /* module 51 call 15 */ - return 1; - case 13072: /* module 51 call 16 */ - return 1; - case 13073: /* module 51 call 17 */ - return 1; - case 13074: /* module 51 call 18 */ - return 1; - case 13075: /* module 51 call 19 */ - return 1; - case 13076: /* module 51 call 20 */ - return 1; - case 13077: /* module 51 call 21 */ - return 1; - case 13078: /* module 51 call 22 */ - return 1; - case 13079: /* module 51 call 23 */ - return 1; - case 13080: /* module 51 call 24 */ - return 1; - case 13081: /* module 51 call 25 */ - return 1; - case 13082: /* module 51 call 26 */ - return 1; - case 13083: /* module 51 call 27 */ - return 1; - case 13084: /* module 51 call 28 */ - return 1; - case 13085: /* module 51 call 29 */ - return 1; - case 13087: /* module 51 call 31 */ - return 1; - case 13088: /* module 51 call 32 */ - return 1; - case 13089: /* module 51 call 33 */ - return 1; - case 13090: /* module 51 call 34 */ - return 1; - case 13091: /* module 51 call 35 */ - return 1; - case 13092: /* module 51 call 36 */ - return 1; - case 13093: /* module 51 call 37 */ - return 1; - case 13094: /* module 51 call 38 */ - return 1; - case 13095: /* module 51 call 39 */ - return 1; - case 13096: /* module 51 call 40 */ - return 1; - case 14592: /* module 57 call 0 */ - return 1; - case 15364: /* module 60 call 4 */ - return 0; - case 15365: /* module 60 call 5 */ - return 0; - case 15872: /* module 62 call 0 */ - return 0; - case 17925: /* module 70 call 5 */ - return 0; - case 18432: /* module 72 call 0 */ - return 2; - case 18433: /* module 72 call 1 */ - return 5; - case 18434: /* module 72 call 2 */ - return 0; -#endif - default: - return 0; - } - - return 0; -} - -const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 1024: /* module 4 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_dest; - case 1: - return STR_IT_amount; - default: - return NULL; - } - case 1026: /* module 4 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_source; - case 1: - return STR_IT_dest; - case 2: - return STR_IT_amount; - default: - return NULL; - } - case 1027: /* module 4 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_dest; - case 1: - return STR_IT_amount; - default: - return NULL; - } - case 1028: /* module 4 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_dest; - case 1: - return STR_IT_keep_alive; - default: - return NULL; - } - case 1536: /* module 6 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_controller; - case 1: - return STR_IT_amount; - case 2: - return STR_IT_payee; - default: - return NULL; - } - case 1537: /* module 6 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - default: - return NULL; - } - case 1538: /* module 6 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - default: - return NULL; - } - case 1539: /* module 6 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_num_slashing_spans; - default: - return NULL; - } - case 1540: /* module 6 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_prefs; - default: - return NULL; - } - case 1541: /* module 6 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_targets; - default: - return NULL; - } - case 1542: /* module 6 call 6 */ - switch (itemIdx) { - default: - return NULL; - } - case 1543: /* module 6 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_payee; - default: - return NULL; - } - case 1544: /* module 6 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_controller; - default: - return NULL; - } - case 1554: /* module 6 call 18 */ - switch (itemIdx) { - case 0: - return STR_IT_validator_stash; - case 1: - return STR_IT_era; - default: - return NULL; - } - case 1555: /* module 6 call 19 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - default: - return NULL; - } - case 2048: /* module 8 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_keys; - case 1: - return STR_IT_proof; - default: - return NULL; - } - case 2049: /* module 8 call 1 */ - switch (itemIdx) { - default: - return NULL; - } - case 6144: /* module 24 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_calls; - default: - return NULL; - } - case 6146: /* module 24 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_calls; - default: - return NULL; - } -#ifdef SUBSTRATE_PARSER_FULL - case 0: /* module 0 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_ratio; - default: - return NULL; - } - case 1: /* module 0 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_remark; - default: - return NULL; - } - case 2: /* module 0 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_pages; - default: - return NULL; - } - case 3: /* module 0 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_code; - default: - return NULL; - } - case 4: /* module 0 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_code; - default: - return NULL; - } - case 8: /* module 0 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_remark; - default: - return NULL; - } - case 512: /* module 2 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_now; - default: - return NULL; - } - case 768: /* module 3 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - default: - return NULL; - } - case 769: /* module 3 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - case 1: - return STR_IT_index; - default: - return NULL; - } - case 770: /* module 3 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - default: - return NULL; - } - case 771: /* module 3 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - case 1: - return STR_IT_index; - case 2: - return STR_IT_freeze; - default: - return NULL; - } - case 772: /* module 3 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - default: - return NULL; - } - case 1025: /* module 4 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_new_free; - case 2: - return STR_IT_new_reserved; - default: - return NULL; - } - case 1029: /* module 4 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_amount; - default: - return NULL; - } - case 1545: /* module 6 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 1546: /* module 6 call 10 */ - switch (itemIdx) { - case 0: - return STR_IT_additional; - default: - return NULL; - } - case 1548: /* module 6 call 12 */ - switch (itemIdx) { - default: - return NULL; - } - case 1549: /* module 6 call 13 */ - switch (itemIdx) { - default: - return NULL; - } - case 1551: /* module 6 call 15 */ - switch (itemIdx) { - case 0: - return STR_IT_stash; - case 1: - return STR_IT_num_slashing_spans; - default: - return NULL; - } - case 1552: /* module 6 call 16 */ - switch (itemIdx) { - default: - return NULL; - } - case 1556: /* module 6 call 20 */ - switch (itemIdx) { - case 0: - return STR_IT_new_history_depth; - case 1: - return STR_IT_era_items_deleted; - default: - return NULL; - } - case 1557: /* module 6 call 21 */ - switch (itemIdx) { - case 0: - return STR_IT_stash; - case 1: - return STR_IT_num_slashing_spans; - default: - return NULL; - } - case 1558: /* module 6 call 22 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - default: - return NULL; - } - case 1560: /* module 6 call 24 */ - switch (itemIdx) { - case 0: - return STR_IT_controller; - default: - return NULL; - } - case 2562: /* module 10 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_delay; - case 1: - return STR_IT_best_finalized_block_number; - default: - return NULL; - } - case 3329: /* module 13 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal; - case 1: - return STR_IT_seconds_upper_bound; - default: - return NULL; - } - case 3331: /* module 13 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_ref_index; - default: - return NULL; - } - case 3337: /* module 13 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_ref_index; - default: - return NULL; - } - case 3338: /* module 13 call 10 */ - switch (itemIdx) { - case 0: - return STR_IT_which; - default: - return NULL; - } - case 3340: /* module 13 call 12 */ - switch (itemIdx) { - default: - return NULL; - } - case 3341: /* module 13 call 13 */ - switch (itemIdx) { - default: - return NULL; - } - case 3342: /* module 13 call 14 */ - switch (itemIdx) { - case 0: - return STR_IT_encoded_proposal; - default: - return NULL; - } - case 3343: /* module 13 call 15 */ - switch (itemIdx) { - case 0: - return STR_IT_encoded_proposal; - default: - return NULL; - } - case 3344: /* module 13 call 16 */ - switch (itemIdx) { - case 0: - return STR_IT_encoded_proposal; - default: - return NULL; - } - case 3345: /* module 13 call 17 */ - switch (itemIdx) { - case 0: - return STR_IT_encoded_proposal; - default: - return NULL; - } - case 3348: /* module 13 call 20 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - default: - return NULL; - } - case 3352: /* module 13 call 24 */ - switch (itemIdx) { - case 0: - return STR_IT_prop_index; - default: - return NULL; - } - case 3587: /* module 14 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal; - case 1: - return STR_IT_index; - case 2: - return STR_IT_approve; - default: - return NULL; - } - case 3588: /* module 14 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal_hash; - case 1: - return STR_IT_index; - case 2: - return STR_IT_proposal_weight_bound; - case 3: - return STR_IT_length_bound; - default: - return NULL; - } - case 3589: /* module 14 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal_hash; - default: - return NULL; - } - case 3845: /* module 15 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal_hash; - default: - return NULL; - } - case 4097: /* module 16 call 1 */ - switch (itemIdx) { - default: - return NULL; - } - case 4098: /* module 16 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_candidate_count; - default: - return NULL; - } - case 4100: /* module 16 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_has_replacement; - default: - return NULL; - } - case 4101: /* module 16 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_num_voters; - case 1: - return STR_IT_num_defunct; - default: - return NULL; - } - case 4352: /* module 17 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - default: - return NULL; - } - case 4353: /* module 17 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - default: - return NULL; - } - case 4354: /* module 17 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_remove; - case 1: - return STR_IT_add; - default: - return NULL; - } - case 4355: /* module 17 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_members; - default: - return NULL; - } - case 4356: /* module 17 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 4357: /* module 17 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - default: - return NULL; - } - case 4358: /* module 17 call 6 */ - switch (itemIdx) { - default: - return NULL; - } - case 4608: /* module 18 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - case 1: - return STR_IT_beneficiary; - default: - return NULL; - } - case 4609: /* module 18 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal_id; - default: - return NULL; - } - case 4610: /* module 18 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_proposal_id; - default: - return NULL; - } - case 4864: /* module 19 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_dest; - case 1: - return STR_IT_ethereum_signature; - default: - return NULL; - } - case 4866: /* module 19 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_dest; - case 1: - return STR_IT_ethereum_signature; - case 2: - return STR_IT_statement; - default: - return NULL; - } - case 4867: /* module 19 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_statement; - default: - return NULL; - } - case 4868: /* module 19 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_old; - case 1: - return STR_IT_new_; - case 2: - return STR_IT_maybe_preclaim; - default: - return NULL; - } - case 6400: /* module 25 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_account; - default: - return NULL; - } - case 6403: /* module 25 call 3 */ - switch (itemIdx) { - default: - return NULL; - } - case 6404: /* module 25 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_reg_index; - case 1: - return STR_IT_max_fee; - default: - return NULL; - } - case 6405: /* module 25 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_reg_index; - default: - return NULL; - } - case 6406: /* module 25 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - case 1: - return STR_IT_fee; - default: - return NULL; - } - case 6407: /* module 25 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - case 1: - return STR_IT_new_; - default: - return NULL; - } - case 6410: /* module 25 call 10 */ - switch (itemIdx) { - case 0: - return STR_IT_target; - default: - return NULL; - } - case 6413: /* module 25 call 13 */ - switch (itemIdx) { - case 0: - return STR_IT_sub; - default: - return NULL; - } - case 6414: /* module 25 call 14 */ - switch (itemIdx) { - default: - return NULL; - } - case 6656: /* module 26 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - default: - return NULL; - } - case 6657: /* module 26 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_pos; - default: - return NULL; - } - case 6658: /* module 26 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_amount; - case 2: - return STR_IT_tip; - default: - return NULL; - } - case 6659: /* module 26 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_pos; - default: - return NULL; - } - case 6660: /* module 26 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_candidate; - case 1: - return STR_IT_approve; - default: - return NULL; - } - case 6661: /* module 26 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_approve; - default: - return NULL; - } - case 6662: /* module 26 call 6 */ - switch (itemIdx) { - default: - return NULL; - } - case 6663: /* module 26 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_founder; - case 1: - return STR_IT_max_members; - case 2: - return STR_IT_rules; - default: - return NULL; - } - case 6664: /* module 26 call 8 */ - switch (itemIdx) { - default: - return NULL; - } - case 6665: /* module 26 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_forgive; - default: - return NULL; - } - case 6667: /* module 26 call 11 */ - switch (itemIdx) { - case 0: - return STR_IT_max; - default: - return NULL; - } - case 6913: /* module 27 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_lost; - case 1: - return STR_IT_rescuer; - default: - return NULL; - } - case 6915: /* module 27 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_account; - default: - return NULL; - } - case 6916: /* module 27 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_lost; - case 1: - return STR_IT_rescuer; - default: - return NULL; - } - case 6917: /* module 27 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_account; - default: - return NULL; - } - case 6918: /* module 27 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_rescuer; - default: - return NULL; - } - case 6919: /* module 27 call 7 */ - switch (itemIdx) { - default: - return NULL; - } - case 6920: /* module 27 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_account; - default: - return NULL; - } - case 7168: /* module 28 call 0 */ - switch (itemIdx) { - default: - return NULL; - } - case 7169: /* module 28 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_target; - default: - return NULL; - } - case 7172: /* module 28 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_schedule1_index; - case 1: - return STR_IT_schedule2_index; - default: - return NULL; - } - case 7680: /* module 30 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_real; - case 1: - return STR_IT_force_proxy_type; - case 2: - return STR_IT_call; - default: - return NULL; - } - case 7681: /* module 30 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_delegate; - case 1: - return STR_IT_proxy_type; - case 2: - return STR_IT_delay; - default: - return NULL; - } - case 7682: /* module 30 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_delegate; - case 1: - return STR_IT_proxy_type; - case 2: - return STR_IT_delay; - default: - return NULL; - } - case 7683: /* module 30 call 3 */ - switch (itemIdx) { - default: - return NULL; - } - case 7684: /* module 30 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_proxy_type; - case 1: - return STR_IT_delay; - case 2: - return STR_IT_index; - default: - return NULL; - } - case 7685: /* module 30 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_spawner; - case 1: - return STR_IT_proxy_type; - case 2: - return STR_IT_index; - case 3: - return STR_IT_height; - case 4: - return STR_IT_ext_index; - default: - return NULL; - } - case 7689: /* module 30 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_delegate; - case 1: - return STR_IT_real; - case 2: - return STR_IT_force_proxy_type; - case 3: - return STR_IT_call; - default: - return NULL; - } - case 7937: /* module 31 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_threshold; - case 1: - return STR_IT_other_signatories; - case 2: - return STR_IT_maybe_timepoint; - case 3: - return STR_IT_call; - case 4: - return STR_IT_store_call; - case 5: - return STR_IT_max_weight; - default: - return NULL; - } - case 7938: /* module 31 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_threshold; - case 1: - return STR_IT_other_signatories; - case 2: - return STR_IT_maybe_timepoint; - case 3: - return STR_IT_call_hash; - case 4: - return STR_IT_max_weight; - default: - return NULL; - } - case 7939: /* module 31 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_threshold; - case 1: - return STR_IT_other_signatories; - case 2: - return STR_IT_timepoint; - case 3: - return STR_IT_call_hash; - default: - return NULL; - } - case 8960: /* module 35 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - case 1: - return STR_IT_description; - default: - return NULL; - } - case 8961: /* module 35 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - default: - return NULL; - } - case 8962: /* module 35 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - case 1: - return STR_IT_curator; - case 2: - return STR_IT_fee; - default: - return NULL; - } - case 8963: /* module 35 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - default: - return NULL; - } - case 8964: /* module 35 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - default: - return NULL; - } - case 8965: /* module 35 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - case 1: - return STR_IT_beneficiary; - default: - return NULL; - } - case 8966: /* module 35 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - default: - return NULL; - } - case 8967: /* module 35 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - default: - return NULL; - } - case 8968: /* module 35 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_bounty_id; - case 1: - return STR_IT_remark; - default: - return NULL; - } - case 9216: /* module 36 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_reason; - case 1: - return STR_IT_who; - default: - return NULL; - } - case 9217: /* module 36 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_hash; - default: - return NULL; - } - case 9218: /* module 36 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_reason; - case 1: - return STR_IT_who; - case 2: - return STR_IT_tip_value; - default: - return NULL; - } - case 9219: /* module 36 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_hash; - case 1: - return STR_IT_tip_value; - default: - return NULL; - } - case 9220: /* module 36 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_hash; - default: - return NULL; - } - case 9221: /* module 36 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_hash; - default: - return NULL; - } - case 9728: /* module 38 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - case 1: - return STR_IT_duration; - default: - return NULL; - } - case 9729: /* module 38 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_amount; - case 1: - return STR_IT_duration; - default: - return NULL; - } - case 9984: /* module 39 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_dislocated; - default: - return NULL; - } - case 13056: /* module 51 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13057: /* module 51 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13058: /* module 51 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13059: /* module 51 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13060: /* module 51 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13061: /* module 51 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13062: /* module 51 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13063: /* module 51 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13064: /* module 51 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13065: /* module 51 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13066: /* module 51 call 10 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13067: /* module 51 call 11 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13068: /* module 51 call 12 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13069: /* module 51 call 13 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13071: /* module 51 call 15 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13072: /* module 51 call 16 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13073: /* module 51 call 17 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13074: /* module 51 call 18 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13075: /* module 51 call 19 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13076: /* module 51 call 20 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13077: /* module 51 call 21 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13078: /* module 51 call 22 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13079: /* module 51 call 23 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13080: /* module 51 call 24 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13081: /* module 51 call 25 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13082: /* module 51 call 26 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13083: /* module 51 call 27 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13084: /* module 51 call 28 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13085: /* module 51 call 29 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13087: /* module 51 call 31 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13088: /* module 51 call 32 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13089: /* module 51 call 33 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13090: /* module 51 call 34 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13091: /* module 51 call 35 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13092: /* module 51 call 36 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13093: /* module 51 call 37 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13094: /* module 51 call 38 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13095: /* module 51 call 39 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 13096: /* module 51 call 40 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 14592: /* module 57 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_up_to; - default: - return NULL; - } - case 15364: /* module 60 call 4 */ - switch (itemIdx) { - default: - return NULL; - } - case 15365: /* module 60 call 5 */ - switch (itemIdx) { - default: - return NULL; - } - case 15872: /* module 62 call 0 */ - switch (itemIdx) { - default: - return NULL; - } - case 17925: /* module 70 call 5 */ - switch (itemIdx) { - default: - return NULL; - } - case 18432: /* module 72 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_duration; - case 1: - return STR_IT_lease_period_index; - default: - return NULL; - } - case 18433: /* module 72 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_para; - case 1: - return STR_IT_auction_index; - case 2: - return STR_IT_first_slot; - case 3: - return STR_IT_last_slot; - case 4: - return STR_IT_amount; - default: - return NULL; - } - case 18434: /* module 72 call 2 */ - switch (itemIdx) { - default: - return NULL; - } -#endif - default: - return NULL; - } - - return NULL; -} - -parser_error_t _getMethod_ItemValue_V8( - pd_Method_V8_t* m, - uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx, - char* outValue, uint16_t outValueLen, - uint8_t pageIdx, uint8_t* pageCount) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 1024: /* module 4 call 0 */ - switch (itemIdx) { - case 0: /* balances_transfer_V8 - dest */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_transfer_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_transfer_V8 - amount */; - return _toStringCompactBalance( - &m->nested.balances_transfer_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1026: /* module 4 call 2 */ - switch (itemIdx) { - case 0: /* balances_force_transfer_V8 - source */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_force_transfer_V8.source, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_force_transfer_V8 - dest */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_force_transfer_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* balances_force_transfer_V8 - amount */; - return _toStringCompactBalance( - &m->nested.balances_force_transfer_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1027: /* module 4 call 3 */ - switch (itemIdx) { - case 0: /* balances_transfer_keep_alive_V8 - dest */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_transfer_keep_alive_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_transfer_keep_alive_V8 - amount */; - return _toStringCompactBalance( - &m->nested.balances_transfer_keep_alive_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1028: /* module 4 call 4 */ - switch (itemIdx) { - case 0: /* balances_transfer_all_V8 - dest */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.balances_transfer_all_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_transfer_all_V8 - keep_alive */; - return _toStringbool( - &m->basic.balances_transfer_all_V8.keep_alive, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1536: /* module 6 call 0 */ - switch (itemIdx) { - case 0: /* staking_bond_V8 - controller */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.staking_bond_V8.controller, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_bond_V8 - amount */; - return _toStringCompactBalance( - &m->basic.staking_bond_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* staking_bond_V8 - payee */; - return _toStringRewardDestination_V8( - &m->basic.staking_bond_V8.payee, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1537: /* module 6 call 1 */ - switch (itemIdx) { - case 0: /* staking_bond_extra_V8 - amount */; - return _toStringCompactBalance( - &m->basic.staking_bond_extra_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1538: /* module 6 call 2 */ - switch (itemIdx) { - case 0: /* staking_unbond_V8 - amount */; - return _toStringCompactBalance( - &m->basic.staking_unbond_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1539: /* module 6 call 3 */ - switch (itemIdx) { - case 0: /* staking_withdraw_unbonded_V8 - num_slashing_spans */; - return _toStringu32( - &m->basic.staking_withdraw_unbonded_V8.num_slashing_spans, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1540: /* module 6 call 4 */ - switch (itemIdx) { - case 0: /* staking_validate_V8 - prefs */; - return _toStringValidatorPrefs_V8( - &m->basic.staking_validate_V8.prefs, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1541: /* module 6 call 5 */ - switch (itemIdx) { - case 0: /* staking_nominate_V8 - targets */; - return _toStringVecLookupasStaticLookupSource_V8( - &m->basic.staking_nominate_V8.targets, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1542: /* module 6 call 6 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 1543: /* module 6 call 7 */ - switch (itemIdx) { - case 0: /* staking_set_payee_V8 - payee */; - return _toStringRewardDestination_V8( - &m->basic.staking_set_payee_V8.payee, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1544: /* module 6 call 8 */ - switch (itemIdx) { - case 0: /* staking_set_controller_V8 - controller */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.staking_set_controller_V8.controller, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1554: /* module 6 call 18 */ - switch (itemIdx) { - case 0: /* staking_payout_stakers_V8 - validator_stash */; - return _toStringAccountId_V8( - &m->basic.staking_payout_stakers_V8.validator_stash, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_payout_stakers_V8 - era */; - return _toStringEraIndex_V8( - &m->basic.staking_payout_stakers_V8.era, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1555: /* module 6 call 19 */ - switch (itemIdx) { - case 0: /* staking_rebond_V8 - amount */; - return _toStringCompactBalance( - &m->basic.staking_rebond_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 2048: /* module 8 call 0 */ - switch (itemIdx) { - case 0: /* session_set_keys_V8 - keys */; - return _toStringKeys_V8( - &m->basic.session_set_keys_V8.keys, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* session_set_keys_V8 - proof */; - return _toStringBytes( - &m->basic.session_set_keys_V8.proof, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 2049: /* module 8 call 1 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6144: /* module 24 call 0 */ - switch (itemIdx) { - case 0: /* utility_batch_V8 - calls */; - return _toStringVecCall( - &m->basic.utility_batch_V8.calls, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6146: /* module 24 call 2 */ - switch (itemIdx) { - case 0: /* utility_batch_all_V8 - calls */; - return _toStringVecCall( - &m->basic.utility_batch_all_V8.calls, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } -#ifdef SUBSTRATE_PARSER_FULL - case 0: /* module 0 call 0 */ - switch (itemIdx) { - case 0: /* system_fill_block_V8 - ratio */; - return _toStringPerbill_V8( - &m->nested.system_fill_block_V8.ratio, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1: /* module 0 call 1 */ - switch (itemIdx) { - case 0: /* system_remark_V8 - remark */; - return _toStringVecu8( - &m->nested.system_remark_V8.remark, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 2: /* module 0 call 2 */ - switch (itemIdx) { - case 0: /* system_set_heap_pages_V8 - pages */; - return _toStringu64( - &m->nested.system_set_heap_pages_V8.pages, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3: /* module 0 call 3 */ - switch (itemIdx) { - case 0: /* system_set_code_V8 - code */; - return _toStringVecu8( - &m->nested.system_set_code_V8.code, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4: /* module 0 call 4 */ - switch (itemIdx) { - case 0: /* system_set_code_without_checks_V8 - code */; - return _toStringVecu8( - &m->nested.system_set_code_without_checks_V8.code, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8: /* module 0 call 8 */ - switch (itemIdx) { - case 0: /* system_remark_with_event_V8 - remark */; - return _toStringVecu8( - &m->nested.system_remark_with_event_V8.remark, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 512: /* module 2 call 0 */ - switch (itemIdx) { - case 0: /* timestamp_set_V8 - now */; - return _toStringCompactu64( - &m->basic.timestamp_set_V8.now, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 768: /* module 3 call 0 */ - switch (itemIdx) { - case 0: /* indices_claim_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_claim_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 769: /* module 3 call 1 */ - switch (itemIdx) { - case 0: /* indices_transfer_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.indices_transfer_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* indices_transfer_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_transfer_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 770: /* module 3 call 2 */ - switch (itemIdx) { - case 0: /* indices_free_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_free_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 771: /* module 3 call 3 */ - switch (itemIdx) { - case 0: /* indices_force_transfer_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.indices_force_transfer_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* indices_force_transfer_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_force_transfer_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* indices_force_transfer_V8 - freeze */; - return _toStringbool( - &m->basic.indices_force_transfer_V8.freeze, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 772: /* module 3 call 4 */ - switch (itemIdx) { - case 0: /* indices_freeze_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_freeze_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1025: /* module 4 call 1 */ - switch (itemIdx) { - case 0: /* balances_set_balance_V8 - who */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_set_balance_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_set_balance_V8 - new_free */; - return _toStringCompactBalance( - &m->nested.balances_set_balance_V8.new_free, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* balances_set_balance_V8 - new_reserved */; - return _toStringCompactBalance( - &m->nested.balances_set_balance_V8.new_reserved, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1029: /* module 4 call 5 */ - switch (itemIdx) { - case 0: /* balances_force_unreserve_V8 - who */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.balances_force_unreserve_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* balances_force_unreserve_V8 - amount */; - return _toStringBalance( - &m->basic.balances_force_unreserve_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1545: /* module 6 call 9 */ - switch (itemIdx) { - case 0: /* staking_set_validator_count_V8 - new_ */; - return _toStringCompactu32( - &m->basic.staking_set_validator_count_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1546: /* module 6 call 10 */ - switch (itemIdx) { - case 0: /* staking_increase_validator_count_V8 - additional */; - return _toStringCompactu32( - &m->basic.staking_increase_validator_count_V8.additional, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1548: /* module 6 call 12 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 1549: /* module 6 call 13 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 1551: /* module 6 call 15 */ - switch (itemIdx) { - case 0: /* staking_force_unstake_V8 - stash */; - return _toStringAccountId_V8( - &m->basic.staking_force_unstake_V8.stash, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_force_unstake_V8 - num_slashing_spans */; - return _toStringu32( - &m->basic.staking_force_unstake_V8.num_slashing_spans, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1552: /* module 6 call 16 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 1556: /* module 6 call 20 */ - switch (itemIdx) { - case 0: /* staking_set_history_depth_V8 - new_history_depth */; - return _toStringCompactu32( - &m->basic.staking_set_history_depth_V8.new_history_depth, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_set_history_depth_V8 - era_items_deleted */; - return _toStringCompactu32( - &m->basic.staking_set_history_depth_V8.era_items_deleted, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1557: /* module 6 call 21 */ - switch (itemIdx) { - case 0: /* staking_reap_stash_V8 - stash */; - return _toStringAccountId_V8( - &m->basic.staking_reap_stash_V8.stash, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_reap_stash_V8 - num_slashing_spans */; - return _toStringu32( - &m->basic.staking_reap_stash_V8.num_slashing_spans, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1558: /* module 6 call 22 */ - switch (itemIdx) { - case 0: /* staking_kick_V8 - who */; - return _toStringVecLookupasStaticLookupSource_V8( - &m->basic.staking_kick_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 1560: /* module 6 call 24 */ - switch (itemIdx) { - case 0: /* staking_chill_other_V8 - controller */; - return _toStringAccountId_V8( - &m->basic.staking_chill_other_V8.controller, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 2562: /* module 10 call 2 */ - switch (itemIdx) { - case 0: /* grandpa_note_stalled_V8 - delay */; - return _toStringBlockNumber( - &m->basic.grandpa_note_stalled_V8.delay, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* grandpa_note_stalled_V8 - best_finalized_block_number */; - return _toStringBlockNumber( - &m->basic.grandpa_note_stalled_V8.best_finalized_block_number, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3329: /* module 13 call 1 */ - switch (itemIdx) { - case 0: /* democracy_second_V8 - proposal */; - return _toStringCompactu32( - &m->basic.democracy_second_V8.proposal, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* democracy_second_V8 - seconds_upper_bound */; - return _toStringCompactu32( - &m->basic.democracy_second_V8.seconds_upper_bound, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3331: /* module 13 call 3 */ - switch (itemIdx) { - case 0: /* democracy_emergency_cancel_V8 - ref_index */; - return _toStringReferendumIndex_V8( - &m->basic.democracy_emergency_cancel_V8.ref_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3337: /* module 13 call 9 */ - switch (itemIdx) { - case 0: /* democracy_cancel_referendum_V8 - ref_index */; - return _toStringCompactu32( - &m->basic.democracy_cancel_referendum_V8.ref_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3338: /* module 13 call 10 */ - switch (itemIdx) { - case 0: /* democracy_cancel_queued_V8 - which */; - return _toStringReferendumIndex_V8( - &m->basic.democracy_cancel_queued_V8.which, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3340: /* module 13 call 12 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 3341: /* module 13 call 13 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 3342: /* module 13 call 14 */ - switch (itemIdx) { - case 0: /* democracy_note_preimage_V8 - encoded_proposal */; - return _toStringBytes( - &m->basic.democracy_note_preimage_V8.encoded_proposal, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3343: /* module 13 call 15 */ - switch (itemIdx) { - case 0: /* democracy_note_preimage_operational_V8 - encoded_proposal */; - return _toStringBytes( - &m->basic.democracy_note_preimage_operational_V8.encoded_proposal, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3344: /* module 13 call 16 */ - switch (itemIdx) { - case 0: /* democracy_note_imminent_preimage_V8 - encoded_proposal */; - return _toStringBytes( - &m->basic.democracy_note_imminent_preimage_V8.encoded_proposal, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3345: /* module 13 call 17 */ - switch (itemIdx) { - case 0: /* democracy_note_imminent_preimage_operational_V8 - encoded_proposal */; - return _toStringBytes( - &m->basic.democracy_note_imminent_preimage_operational_V8.encoded_proposal, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3348: /* module 13 call 20 */ - switch (itemIdx) { - case 0: /* democracy_remove_vote_V8 - index */; - return _toStringReferendumIndex_V8( - &m->basic.democracy_remove_vote_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3352: /* module 13 call 24 */ - switch (itemIdx) { - case 0: /* democracy_cancel_proposal_V8 - prop_index */; - return _toStringCompactu32( - &m->basic.democracy_cancel_proposal_V8.prop_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3587: /* module 14 call 3 */ - switch (itemIdx) { - case 0: /* council_vote_V8 - proposal */; - return _toStringHash( - &m->basic.council_vote_V8.proposal, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* council_vote_V8 - index */; - return _toStringCompactu32( - &m->basic.council_vote_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* council_vote_V8 - approve */; - return _toStringbool( - &m->basic.council_vote_V8.approve, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3588: /* module 14 call 4 */ - switch (itemIdx) { - case 0: /* council_close_V8 - proposal_hash */; - return _toStringHash( - &m->basic.council_close_V8.proposal_hash, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* council_close_V8 - index */; - return _toStringCompactu32( - &m->basic.council_close_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* council_close_V8 - proposal_weight_bound */; - return _toStringCompactu64( - &m->basic.council_close_V8.proposal_weight_bound, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* council_close_V8 - length_bound */; - return _toStringCompactu32( - &m->basic.council_close_V8.length_bound, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3589: /* module 14 call 5 */ - switch (itemIdx) { - case 0: /* council_disapprove_proposal_V8 - proposal_hash */; - return _toStringHash( - &m->basic.council_disapprove_proposal_V8.proposal_hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3845: /* module 15 call 5 */ - switch (itemIdx) { - case 0: /* technicalcommittee_disapprove_proposal_V8 - proposal_hash */; - return _toStringHash( - &m->basic.technicalcommittee_disapprove_proposal_V8.proposal_hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4097: /* module 16 call 1 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 4098: /* module 16 call 2 */ - switch (itemIdx) { - case 0: /* phragmenelection_submit_candidacy_V8 - candidate_count */; - return _toStringCompactu32( - &m->basic.phragmenelection_submit_candidacy_V8.candidate_count, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4100: /* module 16 call 4 */ - switch (itemIdx) { - case 0: /* phragmenelection_remove_member_V8 - who */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.phragmenelection_remove_member_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* phragmenelection_remove_member_V8 - has_replacement */; - return _toStringbool( - &m->basic.phragmenelection_remove_member_V8.has_replacement, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4101: /* module 16 call 5 */ - switch (itemIdx) { - case 0: /* phragmenelection_clean_defunct_voters_V8 - num_voters */; - return _toStringu32( - &m->basic.phragmenelection_clean_defunct_voters_V8.num_voters, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* phragmenelection_clean_defunct_voters_V8 - num_defunct */; - return _toStringu32( - &m->basic.phragmenelection_clean_defunct_voters_V8.num_defunct, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4352: /* module 17 call 0 */ - switch (itemIdx) { - case 0: /* technicalmembership_add_member_V8 - who */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_add_member_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4353: /* module 17 call 1 */ - switch (itemIdx) { - case 0: /* technicalmembership_remove_member_V8 - who */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_remove_member_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4354: /* module 17 call 2 */ - switch (itemIdx) { - case 0: /* technicalmembership_swap_member_V8 - remove */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_swap_member_V8.remove, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* technicalmembership_swap_member_V8 - add */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_swap_member_V8.add, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4355: /* module 17 call 3 */ - switch (itemIdx) { - case 0: /* technicalmembership_reset_members_V8 - members */; - return _toStringVecAccountId_V8( - &m->basic.technicalmembership_reset_members_V8.members, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4356: /* module 17 call 4 */ - switch (itemIdx) { - case 0: /* technicalmembership_change_key_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_change_key_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4357: /* module 17 call 5 */ - switch (itemIdx) { - case 0: /* technicalmembership_set_prime_V8 - who */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_set_prime_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4358: /* module 17 call 6 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 4608: /* module 18 call 0 */ - switch (itemIdx) { - case 0: /* treasury_propose_spend_V8 - amount */; - return _toStringCompactBalance( - &m->basic.treasury_propose_spend_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* treasury_propose_spend_V8 - beneficiary */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.treasury_propose_spend_V8.beneficiary, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4609: /* module 18 call 1 */ - switch (itemIdx) { - case 0: /* treasury_reject_proposal_V8 - proposal_id */; - return _toStringCompactu32( - &m->basic.treasury_reject_proposal_V8.proposal_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4610: /* module 18 call 2 */ - switch (itemIdx) { - case 0: /* treasury_approve_proposal_V8 - proposal_id */; - return _toStringCompactu32( - &m->basic.treasury_approve_proposal_V8.proposal_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4864: /* module 19 call 0 */ - switch (itemIdx) { - case 0: /* claims_claim_V8 - dest */; - return _toStringAccountId_V8( - &m->basic.claims_claim_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* claims_claim_V8 - ethereum_signature */; - return _toStringEcdsaSignature_V8( - &m->basic.claims_claim_V8.ethereum_signature, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4866: /* module 19 call 2 */ - switch (itemIdx) { - case 0: /* claims_claim_attest_V8 - dest */; - return _toStringAccountId_V8( - &m->basic.claims_claim_attest_V8.dest, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* claims_claim_attest_V8 - ethereum_signature */; - return _toStringEcdsaSignature_V8( - &m->basic.claims_claim_attest_V8.ethereum_signature, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* claims_claim_attest_V8 - statement */; - return _toStringBytes( - &m->basic.claims_claim_attest_V8.statement, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4867: /* module 19 call 3 */ - switch (itemIdx) { - case 0: /* claims_attest_V8 - statement */; - return _toStringBytes( - &m->basic.claims_attest_V8.statement, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4868: /* module 19 call 4 */ - switch (itemIdx) { - case 0: /* claims_move_claim_V8 - old */; - return _toStringEthereumAddress_V8( - &m->basic.claims_move_claim_V8.old, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* claims_move_claim_V8 - new_ */; - return _toStringEthereumAddress_V8( - &m->basic.claims_move_claim_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* claims_move_claim_V8 - maybe_preclaim */; - return _toStringOptionAccountId_V8( - &m->basic.claims_move_claim_V8.maybe_preclaim, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6400: /* module 25 call 0 */ - switch (itemIdx) { - case 0: /* identity_add_registrar_V8 - account */; - return _toStringAccountId_V8( - &m->basic.identity_add_registrar_V8.account, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6403: /* module 25 call 3 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6404: /* module 25 call 4 */ - switch (itemIdx) { - case 0: /* identity_request_judgement_V8 - reg_index */; - return _toStringCompactu32( - &m->basic.identity_request_judgement_V8.reg_index, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* identity_request_judgement_V8 - max_fee */; - return _toStringCompactu128( - &m->basic.identity_request_judgement_V8.max_fee, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6405: /* module 25 call 5 */ - switch (itemIdx) { - case 0: /* identity_cancel_request_V8 - reg_index */; - return _toStringRegistrarIndex_V8( - &m->basic.identity_cancel_request_V8.reg_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6406: /* module 25 call 6 */ - switch (itemIdx) { - case 0: /* identity_set_fee_V8 - index */; - return _toStringCompactu32( - &m->basic.identity_set_fee_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* identity_set_fee_V8 - fee */; - return _toStringCompactu128( - &m->basic.identity_set_fee_V8.fee, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6407: /* module 25 call 7 */ - switch (itemIdx) { - case 0: /* identity_set_account_id_V8 - index */; - return _toStringCompactu32( - &m->basic.identity_set_account_id_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* identity_set_account_id_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.identity_set_account_id_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6410: /* module 25 call 10 */ - switch (itemIdx) { - case 0: /* identity_kill_identity_V8 - target */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.identity_kill_identity_V8.target, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6413: /* module 25 call 13 */ - switch (itemIdx) { - case 0: /* identity_remove_sub_V8 - sub */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.identity_remove_sub_V8.sub, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6414: /* module 25 call 14 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6656: /* module 26 call 0 */ - switch (itemIdx) { - case 0: /* society_bid_V8 - amount */; - return _toStringBalance( - &m->basic.society_bid_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6657: /* module 26 call 1 */ - switch (itemIdx) { - case 0: /* society_unbid_V8 - pos */; - return _toStringu32( - &m->basic.society_unbid_V8.pos, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6658: /* module 26 call 2 */ - switch (itemIdx) { - case 0: /* society_vouch_V8 - who */; - return _toStringAccountId_V8( - &m->basic.society_vouch_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* society_vouch_V8 - amount */; - return _toStringBalance( - &m->basic.society_vouch_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* society_vouch_V8 - tip */; - return _toStringBalance( - &m->basic.society_vouch_V8.tip, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6659: /* module 26 call 3 */ - switch (itemIdx) { - case 0: /* society_unvouch_V8 - pos */; - return _toStringu32( - &m->basic.society_unvouch_V8.pos, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6660: /* module 26 call 4 */ - switch (itemIdx) { - case 0: /* society_vote_V8 - candidate */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.society_vote_V8.candidate, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* society_vote_V8 - approve */; - return _toStringbool( - &m->basic.society_vote_V8.approve, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6661: /* module 26 call 5 */ - switch (itemIdx) { - case 0: /* society_defender_vote_V8 - approve */; - return _toStringbool( - &m->basic.society_defender_vote_V8.approve, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6662: /* module 26 call 6 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6663: /* module 26 call 7 */ - switch (itemIdx) { - case 0: /* society_found_V8 - founder */; - return _toStringAccountId_V8( - &m->basic.society_found_V8.founder, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* society_found_V8 - max_members */; - return _toStringu32( - &m->basic.society_found_V8.max_members, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* society_found_V8 - rules */; - return _toStringBytes( - &m->basic.society_found_V8.rules, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6664: /* module 26 call 8 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6665: /* module 26 call 9 */ - switch (itemIdx) { - case 0: /* society_judge_suspended_member_V8 - who */; - return _toStringAccountId_V8( - &m->basic.society_judge_suspended_member_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* society_judge_suspended_member_V8 - forgive */; - return _toStringbool( - &m->basic.society_judge_suspended_member_V8.forgive, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6667: /* module 26 call 11 */ - switch (itemIdx) { - case 0: /* society_set_max_members_V8 - max */; - return _toStringu32( - &m->basic.society_set_max_members_V8.max, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6913: /* module 27 call 1 */ - switch (itemIdx) { - case 0: /* recovery_set_recovered_V8 - lost */; - return _toStringAccountId_V8( - &m->basic.recovery_set_recovered_V8.lost, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* recovery_set_recovered_V8 - rescuer */; - return _toStringAccountId_V8( - &m->basic.recovery_set_recovered_V8.rescuer, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6915: /* module 27 call 3 */ - switch (itemIdx) { - case 0: /* recovery_initiate_recovery_V8 - account */; - return _toStringAccountId_V8( - &m->basic.recovery_initiate_recovery_V8.account, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6916: /* module 27 call 4 */ - switch (itemIdx) { - case 0: /* recovery_vouch_recovery_V8 - lost */; - return _toStringAccountId_V8( - &m->basic.recovery_vouch_recovery_V8.lost, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* recovery_vouch_recovery_V8 - rescuer */; - return _toStringAccountId_V8( - &m->basic.recovery_vouch_recovery_V8.rescuer, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6917: /* module 27 call 5 */ - switch (itemIdx) { - case 0: /* recovery_claim_recovery_V8 - account */; - return _toStringAccountId_V8( - &m->basic.recovery_claim_recovery_V8.account, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6918: /* module 27 call 6 */ - switch (itemIdx) { - case 0: /* recovery_close_recovery_V8 - rescuer */; - return _toStringAccountId_V8( - &m->basic.recovery_close_recovery_V8.rescuer, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6919: /* module 27 call 7 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 6920: /* module 27 call 8 */ - switch (itemIdx) { - case 0: /* recovery_cancel_recovered_V8 - account */; - return _toStringAccountId_V8( - &m->basic.recovery_cancel_recovered_V8.account, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7168: /* module 28 call 0 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 7169: /* module 28 call 1 */ - switch (itemIdx) { - case 0: /* vesting_vest_other_V8 - target */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.vesting_vest_other_V8.target, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7172: /* module 28 call 4 */ - switch (itemIdx) { - case 0: /* vesting_merge_schedules_V8 - schedule1_index */; - return _toStringu32( - &m->basic.vesting_merge_schedules_V8.schedule1_index, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* vesting_merge_schedules_V8 - schedule2_index */; - return _toStringu32( - &m->basic.vesting_merge_schedules_V8.schedule2_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7680: /* module 30 call 0 */ - switch (itemIdx) { - case 0: /* proxy_proxy_V8 - real */; - return _toStringAccountId_V8( - &m->nested.proxy_proxy_V8.real, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_proxy_V8 - force_proxy_type */; - return _toStringOptionProxyType_V8( - &m->nested.proxy_proxy_V8.force_proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_proxy_V8 - call */; - return _toStringCall( - &m->nested.proxy_proxy_V8.call, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7681: /* module 30 call 1 */ - switch (itemIdx) { - case 0: /* proxy_add_proxy_V8 - delegate */; - return _toStringAccountId_V8( - &m->basic.proxy_add_proxy_V8.delegate, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_add_proxy_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_add_proxy_V8.proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_add_proxy_V8 - delay */; - return _toStringBlockNumber( - &m->basic.proxy_add_proxy_V8.delay, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7682: /* module 30 call 2 */ - switch (itemIdx) { - case 0: /* proxy_remove_proxy_V8 - delegate */; - return _toStringAccountId_V8( - &m->basic.proxy_remove_proxy_V8.delegate, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_remove_proxy_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_remove_proxy_V8.proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_remove_proxy_V8 - delay */; - return _toStringBlockNumber( - &m->basic.proxy_remove_proxy_V8.delay, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7683: /* module 30 call 3 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 7684: /* module 30 call 4 */ - switch (itemIdx) { - case 0: /* proxy_anonymous_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_anonymous_V8.proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_anonymous_V8 - delay */; - return _toStringBlockNumber( - &m->basic.proxy_anonymous_V8.delay, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_anonymous_V8 - index */; - return _toStringu16( - &m->basic.proxy_anonymous_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7685: /* module 30 call 5 */ - switch (itemIdx) { - case 0: /* proxy_kill_anonymous_V8 - spawner */; - return _toStringAccountId_V8( - &m->basic.proxy_kill_anonymous_V8.spawner, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_kill_anonymous_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_kill_anonymous_V8.proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_kill_anonymous_V8 - index */; - return _toStringu16( - &m->basic.proxy_kill_anonymous_V8.index, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* proxy_kill_anonymous_V8 - height */; - return _toStringCompactu32( - &m->basic.proxy_kill_anonymous_V8.height, - outValue, outValueLen, - pageIdx, pageCount); - case 4: /* proxy_kill_anonymous_V8 - ext_index */; - return _toStringCompactu32( - &m->basic.proxy_kill_anonymous_V8.ext_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7689: /* module 30 call 9 */ - switch (itemIdx) { - case 0: /* proxy_proxy_announced_V8 - delegate */; - return _toStringAccountId_V8( - &m->basic.proxy_proxy_announced_V8.delegate, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* proxy_proxy_announced_V8 - real */; - return _toStringAccountId_V8( - &m->basic.proxy_proxy_announced_V8.real, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* proxy_proxy_announced_V8 - force_proxy_type */; - return _toStringOptionProxyType_V8( - &m->basic.proxy_proxy_announced_V8.force_proxy_type, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* proxy_proxy_announced_V8 - call */; - return _toStringCall( - &m->basic.proxy_proxy_announced_V8.call, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7937: /* module 31 call 1 */ - switch (itemIdx) { - case 0: /* multisig_as_multi_V8 - threshold */; - return _toStringu16( - &m->nested.multisig_as_multi_V8.threshold, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_as_multi_V8 - other_signatories */; - return _toStringVecAccountId_V8( - &m->nested.multisig_as_multi_V8.other_signatories, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_as_multi_V8 - maybe_timepoint */; - return _toStringOptionTimepoint_V8( - &m->nested.multisig_as_multi_V8.maybe_timepoint, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_as_multi_V8 - call */; - return _toStringOpaqueCall_V8( - &m->nested.multisig_as_multi_V8.call, - outValue, outValueLen, - pageIdx, pageCount); - case 4: /* multisig_as_multi_V8 - store_call */; - return _toStringbool( - &m->nested.multisig_as_multi_V8.store_call, - outValue, outValueLen, - pageIdx, pageCount); - case 5: /* multisig_as_multi_V8 - max_weight */; - return _toStringWeight_V8( - &m->nested.multisig_as_multi_V8.max_weight, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7938: /* module 31 call 2 */ - switch (itemIdx) { - case 0: /* multisig_approve_as_multi_V8 - threshold */; - return _toStringu16( - &m->nested.multisig_approve_as_multi_V8.threshold, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_approve_as_multi_V8 - other_signatories */; - return _toStringVecAccountId_V8( - &m->nested.multisig_approve_as_multi_V8.other_signatories, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_approve_as_multi_V8 - maybe_timepoint */; - return _toStringOptionTimepoint_V8( - &m->nested.multisig_approve_as_multi_V8.maybe_timepoint, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_approve_as_multi_V8 - call_hash */; - return _toStringH256( - &m->nested.multisig_approve_as_multi_V8.call_hash, - outValue, outValueLen, - pageIdx, pageCount); - case 4: /* multisig_approve_as_multi_V8 - max_weight */; - return _toStringWeight_V8( - &m->nested.multisig_approve_as_multi_V8.max_weight, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 7939: /* module 31 call 3 */ - switch (itemIdx) { - case 0: /* multisig_cancel_as_multi_V8 - threshold */; - return _toStringu16( - &m->nested.multisig_cancel_as_multi_V8.threshold, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_cancel_as_multi_V8 - other_signatories */; - return _toStringVecAccountId_V8( - &m->nested.multisig_cancel_as_multi_V8.other_signatories, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_cancel_as_multi_V8 - timepoint */; - return _toStringTimepoint_V8( - &m->nested.multisig_cancel_as_multi_V8.timepoint, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_cancel_as_multi_V8 - call_hash */; - return _toStringH256( - &m->nested.multisig_cancel_as_multi_V8.call_hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8960: /* module 35 call 0 */ - switch (itemIdx) { - case 0: /* bounties_propose_bounty_V8 - amount */; - return _toStringCompactBalance( - &m->basic.bounties_propose_bounty_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* bounties_propose_bounty_V8 - description */; - return _toStringBytes( - &m->basic.bounties_propose_bounty_V8.description, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8961: /* module 35 call 1 */ - switch (itemIdx) { - case 0: /* bounties_approve_bounty_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_approve_bounty_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8962: /* module 35 call 2 */ - switch (itemIdx) { - case 0: /* bounties_propose_curator_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_propose_curator_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* bounties_propose_curator_V8 - curator */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.bounties_propose_curator_V8.curator, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* bounties_propose_curator_V8 - fee */; - return _toStringCompactBalance( - &m->basic.bounties_propose_curator_V8.fee, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8963: /* module 35 call 3 */ - switch (itemIdx) { - case 0: /* bounties_unassign_curator_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_unassign_curator_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8964: /* module 35 call 4 */ - switch (itemIdx) { - case 0: /* bounties_accept_curator_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_accept_curator_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8965: /* module 35 call 5 */ - switch (itemIdx) { - case 0: /* bounties_award_bounty_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_award_bounty_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* bounties_award_bounty_V8 - beneficiary */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.bounties_award_bounty_V8.beneficiary, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8966: /* module 35 call 6 */ - switch (itemIdx) { - case 0: /* bounties_claim_bounty_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_claim_bounty_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8967: /* module 35 call 7 */ - switch (itemIdx) { - case 0: /* bounties_close_bounty_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_close_bounty_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8968: /* module 35 call 8 */ - switch (itemIdx) { - case 0: /* bounties_extend_bounty_expiry_V8 - bounty_id */; - return _toStringCompactu32( - &m->basic.bounties_extend_bounty_expiry_V8.bounty_id, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* bounties_extend_bounty_expiry_V8 - remark */; - return _toStringBytes( - &m->basic.bounties_extend_bounty_expiry_V8.remark, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9216: /* module 36 call 0 */ - switch (itemIdx) { - case 0: /* tips_report_awesome_V8 - reason */; - return _toStringBytes( - &m->basic.tips_report_awesome_V8.reason, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* tips_report_awesome_V8 - who */; - return _toStringAccountId_V8( - &m->basic.tips_report_awesome_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9217: /* module 36 call 1 */ - switch (itemIdx) { - case 0: /* tips_retract_tip_V8 - hash */; - return _toStringHash( - &m->basic.tips_retract_tip_V8.hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9218: /* module 36 call 2 */ - switch (itemIdx) { - case 0: /* tips_tip_new_V8 - reason */; - return _toStringBytes( - &m->basic.tips_tip_new_V8.reason, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* tips_tip_new_V8 - who */; - return _toStringAccountId_V8( - &m->basic.tips_tip_new_V8.who, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* tips_tip_new_V8 - tip_value */; - return _toStringCompactu128( - &m->basic.tips_tip_new_V8.tip_value, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9219: /* module 36 call 3 */ - switch (itemIdx) { - case 0: /* tips_tip_V8 - hash */; - return _toStringHash( - &m->basic.tips_tip_V8.hash, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* tips_tip_V8 - tip_value */; - return _toStringCompactu128( - &m->basic.tips_tip_V8.tip_value, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9220: /* module 36 call 4 */ - switch (itemIdx) { - case 0: /* tips_close_tip_V8 - hash */; - return _toStringHash( - &m->basic.tips_close_tip_V8.hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9221: /* module 36 call 5 */ - switch (itemIdx) { - case 0: /* tips_slash_tip_V8 - hash */; - return _toStringHash( - &m->basic.tips_slash_tip_V8.hash, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9728: /* module 38 call 0 */ - switch (itemIdx) { - case 0: /* gilt_place_bid_V8 - amount */; - return _toStringCompactBalance( - &m->basic.gilt_place_bid_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* gilt_place_bid_V8 - duration */; - return _toStringu32( - &m->basic.gilt_place_bid_V8.duration, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9729: /* module 38 call 1 */ - switch (itemIdx) { - case 0: /* gilt_retract_bid_V8 - amount */; - return _toStringCompactBalance( - &m->basic.gilt_retract_bid_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* gilt_retract_bid_V8 - duration */; - return _toStringu32( - &m->basic.gilt_retract_bid_V8.duration, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 9984: /* module 39 call 0 */ - switch (itemIdx) { - case 0: /* bagslist_rebag_V8 - dislocated */; - return _toStringAccountId_V8( - &m->basic.bagslist_rebag_V8.dislocated, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13056: /* module 51 call 0 */ - switch (itemIdx) { - case 0: /* configuration_set_validation_upgrade_frequency_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_validation_upgrade_frequency_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13057: /* module 51 call 1 */ - switch (itemIdx) { - case 0: /* configuration_set_validation_upgrade_delay_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_validation_upgrade_delay_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13058: /* module 51 call 2 */ - switch (itemIdx) { - case 0: /* configuration_set_code_retention_period_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_code_retention_period_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13059: /* module 51 call 3 */ - switch (itemIdx) { - case 0: /* configuration_set_max_code_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_code_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13060: /* module 51 call 4 */ - switch (itemIdx) { - case 0: /* configuration_set_max_pov_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_pov_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13061: /* module 51 call 5 */ - switch (itemIdx) { - case 0: /* configuration_set_max_head_data_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_head_data_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13062: /* module 51 call 6 */ - switch (itemIdx) { - case 0: /* configuration_set_parathread_cores_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_parathread_cores_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13063: /* module 51 call 7 */ - switch (itemIdx) { - case 0: /* configuration_set_parathread_retries_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_parathread_retries_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13064: /* module 51 call 8 */ - switch (itemIdx) { - case 0: /* configuration_set_group_rotation_frequency_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_group_rotation_frequency_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13065: /* module 51 call 9 */ - switch (itemIdx) { - case 0: /* configuration_set_chain_availability_period_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_chain_availability_period_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13066: /* module 51 call 10 */ - switch (itemIdx) { - case 0: /* configuration_set_thread_availability_period_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_thread_availability_period_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13067: /* module 51 call 11 */ - switch (itemIdx) { - case 0: /* configuration_set_scheduling_lookahead_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_scheduling_lookahead_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13068: /* module 51 call 12 */ - switch (itemIdx) { - case 0: /* configuration_set_max_validators_per_core_V8 - new_ */; - return _toStringOptionu32( - &m->basic.configuration_set_max_validators_per_core_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13069: /* module 51 call 13 */ - switch (itemIdx) { - case 0: /* configuration_set_max_validators_V8 - new_ */; - return _toStringOptionu32( - &m->basic.configuration_set_max_validators_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13071: /* module 51 call 15 */ - switch (itemIdx) { - case 0: /* configuration_set_dispute_post_conclusion_acceptance_period_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_dispute_post_conclusion_acceptance_period_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13072: /* module 51 call 16 */ - switch (itemIdx) { - case 0: /* configuration_set_dispute_max_spam_slots_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_dispute_max_spam_slots_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13073: /* module 51 call 17 */ - switch (itemIdx) { - case 0: /* configuration_set_dispute_conclusion_by_time_out_period_V8 - new_ */; - return _toStringBlockNumber( - &m->basic.configuration_set_dispute_conclusion_by_time_out_period_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13074: /* module 51 call 18 */ - switch (itemIdx) { - case 0: /* configuration_set_no_show_slots_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_no_show_slots_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13075: /* module 51 call 19 */ - switch (itemIdx) { - case 0: /* configuration_set_n_delay_tranches_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_n_delay_tranches_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13076: /* module 51 call 20 */ - switch (itemIdx) { - case 0: /* configuration_set_zeroth_delay_tranche_width_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_zeroth_delay_tranche_width_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13077: /* module 51 call 21 */ - switch (itemIdx) { - case 0: /* configuration_set_needed_approvals_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_needed_approvals_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13078: /* module 51 call 22 */ - switch (itemIdx) { - case 0: /* configuration_set_relay_vrf_modulo_samples_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_relay_vrf_modulo_samples_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13079: /* module 51 call 23 */ - switch (itemIdx) { - case 0: /* configuration_set_max_upward_queue_count_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_upward_queue_count_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13080: /* module 51 call 24 */ - switch (itemIdx) { - case 0: /* configuration_set_max_upward_queue_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_upward_queue_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13081: /* module 51 call 25 */ - switch (itemIdx) { - case 0: /* configuration_set_max_downward_message_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_downward_message_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13082: /* module 51 call 26 */ - switch (itemIdx) { - case 0: /* configuration_set_ump_service_total_weight_V8 - new_ */; - return _toStringWeight_V8( - &m->basic.configuration_set_ump_service_total_weight_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13083: /* module 51 call 27 */ - switch (itemIdx) { - case 0: /* configuration_set_max_upward_message_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_upward_message_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13084: /* module 51 call 28 */ - switch (itemIdx) { - case 0: /* configuration_set_max_upward_message_num_per_candidate_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_max_upward_message_num_per_candidate_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13085: /* module 51 call 29 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_open_request_ttl_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_open_request_ttl_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13087: /* module 51 call 31 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_recipient_deposit_V8 - new_ */; - return _toStringBalance( - &m->basic.configuration_set_hrmp_recipient_deposit_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13088: /* module 51 call 32 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_capacity_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_capacity_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13089: /* module 51 call 33 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_total_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_total_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13090: /* module 51 call 34 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parachain_inbound_channels_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_max_parachain_inbound_channels_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13091: /* module 51 call 35 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parathread_inbound_channels_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_max_parathread_inbound_channels_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13092: /* module 51 call 36 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_message_size_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_message_size_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13093: /* module 51 call 37 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parachain_outbound_channels_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_max_parachain_outbound_channels_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13094: /* module 51 call 38 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parathread_outbound_channels_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_max_parathread_outbound_channels_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13095: /* module 51 call 39 */ - switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_message_num_per_candidate_V8 - new_ */; - return _toStringu32( - &m->basic.configuration_set_hrmp_max_message_num_per_candidate_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 13096: /* module 51 call 40 */ - switch (itemIdx) { - case 0: /* configuration_set_ump_max_individual_weight_V8 - new_ */; - return _toStringWeight_V8( - &m->basic.configuration_set_ump_max_individual_weight_V8.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 14592: /* module 57 call 0 */ - switch (itemIdx) { - case 0: /* initializer_force_approve_V8 - up_to */; - return _toStringBlockNumber( - &m->basic.initializer_force_approve_V8.up_to, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 15364: /* module 60 call 4 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 15365: /* module 60 call 5 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 15872: /* module 62 call 0 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 17925: /* module 70 call 5 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 18432: /* module 72 call 0 */ - switch (itemIdx) { - case 0: /* auctions_new_auction_V8 - duration */; - return _toStringCompactu32( - &m->basic.auctions_new_auction_V8.duration, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* auctions_new_auction_V8 - lease_period_index */; - return _toStringCompactu32( - &m->basic.auctions_new_auction_V8.lease_period_index, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 18433: /* module 72 call 1 */ - switch (itemIdx) { - case 0: /* auctions_bid_V8 - para */; - return _toStringCompactu32( - &m->basic.auctions_bid_V8.para, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* auctions_bid_V8 - auction_index */; - return _toStringCompactu32( - &m->basic.auctions_bid_V8.auction_index, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* auctions_bid_V8 - first_slot */; - return _toStringCompactu32( - &m->basic.auctions_bid_V8.first_slot, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* auctions_bid_V8 - last_slot */; - return _toStringCompactu32( - &m->basic.auctions_bid_V8.last_slot, - outValue, outValueLen, - pageIdx, pageCount); - case 4: /* auctions_bid_V8 - amount */; - return _toStringCompactBalance( - &m->basic.auctions_bid_V8.amount, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 18434: /* module 72 call 2 */ - switch (itemIdx) { - default: - return parser_no_data; - } -#endif - default: - return parser_ok; - } - - return parser_ok; -} - -bool _getMethod_ItemIsExpert_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 1539: // Staking:Withdraw Unbonded - switch (itemIdx) { - case 0: // Num slashing spans - return true; - default: - return false; - } - case 1551: // Staking:Force unstake - switch (itemIdx) { - case 1: // Num slashing spans - return true; - default: - return false; - } - case 1557: // Staking:Reap stash - switch (itemIdx) { - case 1: // Num slashing spans - return true; - default: - return false; - } - - default: - return false; - } -} - -bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) -{ - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; - - switch (callPrivIdx) { - case 512: // Timestamp:Set - case 768: // Indices:Claim - case 769: // Indices:Transfer - case 770: // Indices:Free - case 771: // Indices:Force transfer - case 772: // Indices:Freeze - case 1028: // Balances:Transfer all - case 1029: // Balances:Force unreserve - case 1536: // Staking:Bond - case 1537: // Staking:Bond extra - case 1538: // Staking:Unbond - case 1539: // Staking:Withdraw Unbonded - case 1540: // Staking:Validate - case 1541: // Staking:Nominate - case 1542: // Staking:Chill - case 1543: // Staking:Set payee - case 1544: // Staking:Set controller - case 1545: // Staking:Set validator count - case 1546: // Staking:Increase validator count - case 1548: // Staking:Force no eras - case 1549: // Staking:Force new era - case 1551: // Staking:Force unstake - case 1552: // Staking:Force new era always - case 1554: // Staking:Payout stakers - case 1555: // Staking:Rebond - case 1556: // Staking:Set history depth - case 1557: // Staking:Reap stash - case 1558: // Staking:Kick - case 1560: // Staking:Chill other - case 2048: // Session:Set keys - case 2049: // Session:Purge keys - case 2562: // Grandpa:Note stalled - case 3329: // Democracy:Second - case 3331: // Democracy:Emergency cancel - case 3337: // Democracy:Cancel referendum - case 3338: // Democracy:Cancel queued - case 3340: // Democracy:Undelegate - case 3341: // Democracy:Clear public proposals - case 3342: // Democracy:Note preimage - case 3343: // Democracy:Note preimage operational - case 3344: // Democracy:Note imminent preimage - case 3345: // Democracy:Note imminent preimage operational - case 3348: // Democracy:Remove vote - case 3352: // Democracy:Cancel proposal - case 3587: // Council:Vote - case 3588: // Council:Close - case 3589: // Council:Disapprove proposal - case 3845: // TechnicalCommittee:Disapprove proposal - case 4097: // PhragmenElection:Remove voter - case 4098: // PhragmenElection:Submit candidacy - case 4100: // PhragmenElection:Remove member - case 4101: // PhragmenElection:Clean defunct voters - case 4352: // TechnicalMembership:Add member - case 4353: // TechnicalMembership:Remove member - case 4354: // TechnicalMembership:Swap member - case 4355: // TechnicalMembership:Reset members - case 4356: // TechnicalMembership:Change key - case 4357: // TechnicalMembership:Set prime - case 4358: // TechnicalMembership:Clear prime - case 4608: // Treasury:Propose spend - case 4609: // Treasury:Reject proposal - case 4610: // Treasury:Approve proposal - case 4864: // Claims:Claim - case 4866: // Claims:Claim attest - case 4867: // Claims:Attest - case 4868: // Claims:Move claim - case 6144: // Utility:Batch - case 6146: // Utility:Batch all - case 6400: // Identity:Add registrar - case 6403: // Identity:Clear identity - case 6404: // Identity:Request judgement - case 6405: // Identity:Cancel request - case 6406: // Identity:Set fee - case 6407: // Identity:Set account id - case 6410: // Identity:Kill identity - case 6413: // Identity:Remove sub - case 6414: // Identity:Quit sub - case 6656: // Society:Bid - case 6657: // Society:Unbid - case 6658: // Society:Vouch - case 6659: // Society:Unvouch - case 6660: // Society:Vote - case 6661: // Society:Defender vote - case 6662: // Society:Payout - case 6663: // Society:Found - case 6664: // Society:Unfound - case 6665: // Society:Judge suspended member - case 6667: // Society:Set max members - case 6913: // Recovery:Set recovered - case 6915: // Recovery:Initiate recovery - case 6916: // Recovery:Vouch recovery - case 6917: // Recovery:Claim recovery - case 6918: // Recovery:Close recovery - case 6919: // Recovery:Remove recovery - case 6920: // Recovery:Cancel recovered - case 7168: // Vesting:Vest - case 7169: // Vesting:Vest other - case 7172: // Vesting:Merge schedules - case 7681: // Proxy:Add proxy - case 7682: // Proxy:Remove proxy - case 7683: // Proxy:Remove proxies - case 7684: // Proxy:Anonymous - case 7685: // Proxy:Kill anonymous - case 7689: // Proxy:Proxy announced - case 8960: // Bounties:Propose bounty - case 8961: // Bounties:Approve bounty - case 8962: // Bounties:Propose curator - case 8963: // Bounties:Unassign curator - case 8964: // Bounties:Accept curator - case 8965: // Bounties:Award bounty - case 8966: // Bounties:Claim bounty - case 8967: // Bounties:Close bounty - case 8968: // Bounties:Extend bounty expiry - case 9216: // Tips:Report awesome - case 9217: // Tips:Retract tip - case 9218: // Tips:Tip new - case 9219: // Tips:Tip - case 9220: // Tips:Close tip - case 9221: // Tips:Slash tip - case 9728: // Gilt:Place bid - case 9729: // Gilt:Retract bid - case 9984: // BagsList:Rebag - case 13056: // Configuration:Set validation upgrade frequency - case 13057: // Configuration:Set validation upgrade delay - case 13058: // Configuration:Set code retention period - case 13059: // Configuration:Set max code size - case 13060: // Configuration:Set max pov size - case 13061: // Configuration:Set max head data size - case 13062: // Configuration:Set parathread cores - case 13063: // Configuration:Set parathread retries - case 13064: // Configuration:Set group rotation frequency - case 13065: // Configuration:Set chain availability period - case 13066: // Configuration:Set thread availability period - case 13067: // Configuration:Set scheduling lookahead - case 13068: // Configuration:Set max validators per core - case 13069: // Configuration:Set max validators - case 13071: // Configuration:Set dispute post conclusion acceptance period - case 13072: // Configuration:Set dispute max spam slots - case 13073: // Configuration:Set dispute conclusion by time out period - case 13074: // Configuration:Set no show slots - case 13075: // Configuration:Set n delay tranches - case 13076: // Configuration:Set zeroth delay tranche width - case 13077: // Configuration:Set needed approvals - case 13078: // Configuration:Set relay vrf modulo samples - case 13079: // Configuration:Set max upward queue count - case 13080: // Configuration:Set max upward queue size - case 13081: // Configuration:Set max downward message size - case 13082: // Configuration:Set ump service total weight - case 13083: // Configuration:Set max upward message size - case 13084: // Configuration:Set max upward message num per candidate - case 13085: // Configuration:Set hrmp open request ttl - case 13087: // Configuration:Set hrmp recipient deposit - case 13088: // Configuration:Set hrmp channel max capacity - case 13089: // Configuration:Set hrmp channel max total size - case 13090: // Configuration:Set hrmp max parachain inbound channels - case 13091: // Configuration:Set hrmp max parathread inbound channels - case 13092: // Configuration:Set hrmp channel max message size - case 13093: // Configuration:Set hrmp max parachain outbound channels - case 13094: // Configuration:Set hrmp max parathread outbound channels - case 13095: // Configuration:Set hrmp max message num per candidate - case 13096: // Configuration:Set ump max individual weight - case 14592: // Initializer:Force approve - case 15364: // Hrmp:Force process hrmp open - case 15365: // Hrmp:Force process hrmp close - case 15872: // ParasDisputes:Force unfreeze - case 17925: // Registrar:Reserve - case 18432: // Auctions:New auction - case 18433: // Auctions:Bid - case 18434: // Auctions:Cancel auction - return false; - default: - return true; - } -} diff --git a/app/src/substrate/substrate_dispatch_V8.h b/app/src/substrate/substrate_dispatch_V8.h deleted file mode 100644 index 96152e37..00000000 --- a/app/src/substrate/substrate_dispatch_V8.h +++ /dev/null @@ -1,49 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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 -extern "C" { -#endif - -#include "parser_impl.h" -#include "stdbool.h" -#include "substrate_functions.h" -#include "substrate_functions_V8.h" -#include -#include - -parser_error_t _readMethod_V8(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V8_t* method); - -const char* _getMethod_ModuleName_V8(uint8_t moduleIdx); - -const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx); - -const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); - -uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx); - -parser_error_t _getMethod_ItemValue_V8( - pd_Method_V8_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_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); -bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx); - -#ifdef __cplusplus -} -#endif diff --git a/app/src/substrate/substrate_functions_V8.h b/app/src/substrate/substrate_functions_V8.h deleted file mode 100644 index c8a1272f..00000000 --- a/app/src/substrate/substrate_functions_V8.h +++ /dev/null @@ -1,689 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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 -extern "C" { -#endif - -#include "parser_common.h" -#include "substrate_methods_V8.h" -#include "substrate_types_V8.h" -#include -#include - -// Read functions -parser_error_t _readAccountId_V8(parser_context_t* c, pd_AccountId_V8_t* v); -parser_error_t _readAccountIndex_V8(parser_context_t* c, pd_AccountIndex_V8_t* v); -parser_error_t _readAccountVoteBalanceOf_V8(parser_context_t* c, pd_AccountVoteBalanceOf_V8_t* v); -parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V8(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v); -parser_error_t _readBoxEquivocationProofHashBlockNumber_V8(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V8_t* v); -parser_error_t _readBoxEquivocationProofHeader_V8(parser_context_t* c, pd_BoxEquivocationProofHeader_V8_t* v); -parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V8(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v); -parser_error_t _readBoxMultiLocation_V8(parser_context_t* c, pd_BoxMultiLocation_V8_t* v); -parser_error_t _readBoxPalletsOrigin_V8(parser_context_t* c, pd_BoxPalletsOrigin_V8_t* v); -parser_error_t _readBoxRawSolutionSolutionOfT_V8(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V8_t* v); -parser_error_t _readBoxTasConfigIProposal_V8(parser_context_t* c, pd_BoxTasConfigIProposal_V8_t* v); -parser_error_t _readBoxVersionedMultiAssets_V8(parser_context_t* c, pd_BoxVersionedMultiAssets_V8_t* v); -parser_error_t _readBoxVersionedMultiLocation_V8(parser_context_t* c, pd_BoxVersionedMultiLocation_V8_t* v); -parser_error_t _readBoxVersionedXcmTasSysConfigCall_V8(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V8_t* v); -parser_error_t _readBoxVersionedXcmTuple_V8(parser_context_t* c, pd_BoxVersionedXcmTuple_V8_t* v); -parser_error_t _readCallHashOf_V8(parser_context_t* c, pd_CallHashOf_V8_t* v); -parser_error_t _readCompactAccountIndex_V8(parser_context_t* c, pd_CompactAccountIndex_V8_t* v); -parser_error_t _readCompactPerBill_V8(parser_context_t* c, pd_CompactPerBill_V8_t* v); -parser_error_t _readConviction_V8(parser_context_t* c, pd_Conviction_V8_t* v); -parser_error_t _readEcdsaSignature_V8(parser_context_t* c, pd_EcdsaSignature_V8_t* v); -parser_error_t _readElectionScore_V8(parser_context_t* c, pd_ElectionScore_V8_t* v); -parser_error_t _readEraIndex_V8(parser_context_t* c, pd_EraIndex_V8_t* v); -parser_error_t _readEthereumAddress_V8(parser_context_t* c, pd_EthereumAddress_V8_t* v); -parser_error_t _readHeadData_V8(parser_context_t* c, pd_HeadData_V8_t* v); -parser_error_t _readHeartbeatBlockNumber_V8(parser_context_t* c, pd_HeartbeatBlockNumber_V8_t* v); -parser_error_t _readHrmpChannelId_V8(parser_context_t* c, pd_HrmpChannelId_V8_t* v); -parser_error_t _readIdentityFields_V8(parser_context_t* c, pd_IdentityFields_V8_t* v); -parser_error_t _readJudgementBalanceOfT_V8(parser_context_t* c, pd_JudgementBalanceOfT_V8_t* v); -parser_error_t _readJudgement_V8(parser_context_t* c, pd_Judgement_V8_t* v); -parser_error_t _readKeyOwnerProof_V8(parser_context_t* c, pd_KeyOwnerProof_V8_t* v); -parser_error_t _readKeyValue_V8(parser_context_t* c, pd_KeyValue_V8_t* v); -parser_error_t _readKey_V8(parser_context_t* c, pd_Key_V8_t* v); -parser_error_t _readKeys_V8(parser_context_t* c, pd_Keys_V8_t* v); -parser_error_t _readLeasePeriodOfT_V8(parser_context_t* c, pd_LeasePeriodOfT_V8_t* v); -parser_error_t _readLookupasStaticLookupSource_V8(parser_context_t* c, pd_LookupasStaticLookupSource_V8_t* v); -parser_error_t _readMemberCount_V8(parser_context_t* c, pd_MemberCount_V8_t* v); -parser_error_t _readMultiSignature_V8(parser_context_t* c, pd_MultiSignature_V8_t* v); -parser_error_t _readMultiSigner_V8(parser_context_t* c, pd_MultiSigner_V8_t* v); -parser_error_t _readNextConfigDescriptor_V8(parser_context_t* c, pd_NextConfigDescriptor_V8_t* v); -parser_error_t _readOpaqueCall_V8(parser_context_t* c, pd_OpaqueCall_V8_t* v); -parser_error_t _readOptionAccountId_V8(parser_context_t* c, pd_OptionAccountId_V8_t* v); -parser_error_t _readOptionElectionScore_V8(parser_context_t* c, pd_OptionElectionScore_V8_t* v); -parser_error_t _readOptionMultiSignature_V8(parser_context_t* c, pd_OptionMultiSignature_V8_t* v); -parser_error_t _readOptionMultiSigner_V8(parser_context_t* c, pd_OptionMultiSigner_V8_t* v); -parser_error_t _readOptionPercent_V8(parser_context_t* c, pd_OptionPercent_V8_t* v); -parser_error_t _readOptionProxyType_V8(parser_context_t* c, pd_OptionProxyType_V8_t* v); -parser_error_t _readOptionReferendumIndex_V8(parser_context_t* c, pd_OptionReferendumIndex_V8_t* v); -parser_error_t _readOptionStatementKind_V8(parser_context_t* c, pd_OptionStatementKind_V8_t* v); -parser_error_t _readOptionTimepoint_V8(parser_context_t* c, pd_OptionTimepoint_V8_t* v); -parser_error_t _readOptionTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v); -parser_error_t _readOptionXcmVersion_V8(parser_context_t* c, pd_OptionXcmVersion_V8_t* v); -parser_error_t _readOptionschedulePeriodBlockNumber_V8(parser_context_t* c, pd_OptionschedulePeriodBlockNumber_V8_t* v); -parser_error_t _readOverweightIndex_V8(parser_context_t* c, pd_OverweightIndex_V8_t* v); -parser_error_t _readParaId_V8(parser_context_t* c, pd_ParaId_V8_t* v); -parser_error_t _readParachainsInherentDataHeader_V8(parser_context_t* c, pd_ParachainsInherentDataHeader_V8_t* v); -parser_error_t _readPerbill_V8(parser_context_t* c, pd_Perbill_V8_t* v); -parser_error_t _readPercent_V8(parser_context_t* c, pd_Percent_V8_t* v); -parser_error_t _readProxyType_V8(parser_context_t* c, pd_ProxyType_V8_t* v); -parser_error_t _readReferendumIndex_V8(parser_context_t* c, pd_ReferendumIndex_V8_t* v); -parser_error_t _readRegistrarIndex_V8(parser_context_t* c, pd_RegistrarIndex_V8_t* v); -parser_error_t _readRenouncing_V8(parser_context_t* c, pd_Renouncing_V8_t* v); -parser_error_t _readRewardDestination_V8(parser_context_t* c, pd_RewardDestination_V8_t* v); -parser_error_t _readSessionIndex_V8(parser_context_t* c, pd_SessionIndex_V8_t* v); -parser_error_t _readSolutionOrSnapshotSize_V8(parser_context_t* c, pd_SolutionOrSnapshotSize_V8_t* v); -parser_error_t _readStatementKind_V8(parser_context_t* c, pd_StatementKind_V8_t* v); -parser_error_t _readSupportsAccountId_V8(parser_context_t* c, pd_SupportsAccountId_V8_t* v); -parser_error_t _readTimepoint_V8(parser_context_t* c, pd_Timepoint_V8_t* v); -parser_error_t _readTupleAccountIdData_V8(parser_context_t* c, pd_TupleAccountIdData_V8_t* v); -parser_error_t _readTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v); -parser_error_t _readValidationCode_V8(parser_context_t* c, pd_ValidationCode_V8_t* v); -parser_error_t _readValidatorPrefs_V8(parser_context_t* c, pd_ValidatorPrefs_V8_t* v); -parser_error_t _readVecAccountId_V8(parser_context_t* c, pd_VecAccountId_V8_t* v); -parser_error_t _readVecKeyValue_V8(parser_context_t* c, pd_VecKeyValue_V8_t* v); -parser_error_t _readVecKey_V8(parser_context_t* c, pd_VecKey_V8_t* v); -parser_error_t _readVecLookupasStaticLookupSource_V8(parser_context_t* c, pd_VecLookupasStaticLookupSource_V8_t* v); -parser_error_t _readVecTupleAccountIdData_V8(parser_context_t* c, pd_VecTupleAccountIdData_V8_t* v); -parser_error_t _readVestingInfoBalanceOfTBlockNumber_V8(parser_context_t* c, pd_VestingInfoBalanceOfTBlockNumber_V8_t* v); -parser_error_t _readWeightLimit_V8(parser_context_t* c, pd_WeightLimit_V8_t* v); -parser_error_t _readWeight_V8(parser_context_t* c, pd_Weight_V8_t* v); -parser_error_t _readXcmVersion_V8(parser_context_t* c, pd_XcmVersion_V8_t* v); -parser_error_t _readschedulePeriodBlockNumber_V8(parser_context_t* c, pd_schedulePeriodBlockNumber_V8_t* v); -parser_error_t _readschedulePriority_V8(parser_context_t* c, pd_schedulePriority_V8_t* v); - -// toString functions -parser_error_t _toStringAccountId_V8( - const pd_AccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringAccountIndex_V8( - const pd_AccountIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringAccountVoteBalanceOf_V8( - const pd_AccountVoteBalanceOf_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V8( - const pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V8( - const pd_BoxEquivocationProofHashBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxEquivocationProofHeader_V8( - const pd_BoxEquivocationProofHeader_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V8( - const pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxMultiLocation_V8( - const pd_BoxMultiLocation_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxPalletsOrigin_V8( - const pd_BoxPalletsOrigin_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxRawSolutionSolutionOfT_V8( - const pd_BoxRawSolutionSolutionOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxTasConfigIProposal_V8( - const pd_BoxTasConfigIProposal_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxVersionedMultiAssets_V8( - const pd_BoxVersionedMultiAssets_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxVersionedMultiLocation_V8( - const pd_BoxVersionedMultiLocation_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V8( - const pd_BoxVersionedXcmTasSysConfigCall_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringBoxVersionedXcmTuple_V8( - const pd_BoxVersionedXcmTuple_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringCallHashOf_V8( - const pd_CallHashOf_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringCompactAccountIndex_V8( - const pd_CompactAccountIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringCompactPerBill_V8( - const pd_CompactPerBill_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringConviction_V8( - const pd_Conviction_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringEcdsaSignature_V8( - const pd_EcdsaSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringElectionScore_V8( - const pd_ElectionScore_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringEraIndex_V8( - const pd_EraIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringEthereumAddress_V8( - const pd_EthereumAddress_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringHeadData_V8( - const pd_HeadData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringHeartbeatBlockNumber_V8( - const pd_HeartbeatBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringHrmpChannelId_V8( - const pd_HrmpChannelId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringIdentityFields_V8( - const pd_IdentityFields_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringJudgementBalanceOfT_V8( - const pd_JudgementBalanceOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringJudgement_V8( - const pd_Judgement_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringKeyOwnerProof_V8( - const pd_KeyOwnerProof_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringKeyValue_V8( - const pd_KeyValue_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringKey_V8( - const pd_Key_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringKeys_V8( - const pd_Keys_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringLeasePeriodOfT_V8( - const pd_LeasePeriodOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringLookupasStaticLookupSource_V8( - const pd_LookupasStaticLookupSource_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringMemberCount_V8( - const pd_MemberCount_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringMultiSignature_V8( - const pd_MultiSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringMultiSigner_V8( - const pd_MultiSigner_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringNextConfigDescriptor_V8( - const pd_NextConfigDescriptor_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOpaqueCall_V8( - const pd_OpaqueCall_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionAccountId_V8( - const pd_OptionAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionElectionScore_V8( - const pd_OptionElectionScore_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionMultiSignature_V8( - const pd_OptionMultiSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionMultiSigner_V8( - const pd_OptionMultiSigner_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionPercent_V8( - const pd_OptionPercent_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionProxyType_V8( - const pd_OptionProxyType_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionReferendumIndex_V8( - const pd_OptionReferendumIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionStatementKind_V8( - const pd_OptionStatementKind_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionTimepoint_V8( - const pd_OptionTimepoint_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionXcmVersion_V8( - const pd_OptionXcmVersion_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOptionschedulePeriodBlockNumber_V8( - const pd_OptionschedulePeriodBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringOverweightIndex_V8( - const pd_OverweightIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringParaId_V8( - const pd_ParaId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringParachainsInherentDataHeader_V8( - const pd_ParachainsInherentDataHeader_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringPerbill_V8( - const pd_Perbill_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringPercent_V8( - const pd_Percent_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringProxyType_V8( - const pd_ProxyType_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringReferendumIndex_V8( - const pd_ReferendumIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringRegistrarIndex_V8( - const pd_RegistrarIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringRenouncing_V8( - const pd_Renouncing_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringRewardDestination_V8( - const pd_RewardDestination_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringSessionIndex_V8( - const pd_SessionIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringSolutionOrSnapshotSize_V8( - const pd_SolutionOrSnapshotSize_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringStatementKind_V8( - const pd_StatementKind_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringSupportsAccountId_V8( - const pd_SupportsAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringTimepoint_V8( - const pd_Timepoint_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringTupleAccountIdData_V8( - const pd_TupleAccountIdData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringValidationCode_V8( - const pd_ValidationCode_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringValidatorPrefs_V8( - const pd_ValidatorPrefs_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVecAccountId_V8( - const pd_VecAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVecKeyValue_V8( - const pd_VecKeyValue_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVecKey_V8( - const pd_VecKey_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVecLookupasStaticLookupSource_V8( - const pd_VecLookupasStaticLookupSource_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVecTupleAccountIdData_V8( - const pd_VecTupleAccountIdData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V8( - const pd_VestingInfoBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringWeightLimit_V8( - const pd_WeightLimit_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringWeight_V8( - const pd_Weight_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringXcmVersion_V8( - const pd_XcmVersion_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringschedulePeriodBlockNumber_V8( - const pd_schedulePeriodBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -parser_error_t _toStringschedulePriority_V8( - const pd_schedulePriority_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - -#ifdef __cplusplus -} -#endif diff --git a/app/src/substrate/substrate_methods_V8.h b/app/src/substrate/substrate_methods_V8.h deleted file mode 100644 index 23eeb989..00000000 --- a/app/src/substrate/substrate_methods_V8.h +++ /dev/null @@ -1,1253 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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 clang diagnostic push -#pragma clang diagnostic ignored "-Wextern-c-compat" -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -#include "substrate_types.h" -#include "substrate_types_V8.h" -#include -#include - -#define PD_CALL_SYSTEM_V8 0 -#define PD_CALL_TIMESTAMP_V8 2 -#define PD_CALL_INDICES_V8 3 -#define PD_CALL_BALANCES_V8 4 -#define PD_CALL_STAKING_V8 6 -#define PD_CALL_SESSION_V8 8 -#define PD_CALL_GRANDPA_V8 10 -#define PD_CALL_DEMOCRACY_V8 13 -#define PD_CALL_COUNCIL_V8 14 -#define PD_CALL_TECHNICALCOMMITTEE_V8 15 -#define PD_CALL_PHRAGMENELECTION_V8 16 -#define PD_CALL_TECHNICALMEMBERSHIP_V8 17 -#define PD_CALL_TREASURY_V8 18 -#define PD_CALL_CLAIMS_V8 19 -#define PD_CALL_UTILITY_V8 24 -#define PD_CALL_IDENTITY_V8 25 -#define PD_CALL_SOCIETY_V8 26 -#define PD_CALL_RECOVERY_V8 27 -#define PD_CALL_VESTING_V8 28 -#define PD_CALL_PROXY_V8 30 -#define PD_CALL_MULTISIG_V8 31 -#define PD_CALL_BOUNTIES_V8 35 -#define PD_CALL_TIPS_V8 36 -#define PD_CALL_GILT_V8 38 -#define PD_CALL_BAGSLIST_V8 39 -#define PD_CALL_CONFIGURATION_V8 51 -#define PD_CALL_INITIALIZER_V8 57 -#define PD_CALL_HRMP_V8 60 -#define PD_CALL_PARASDISPUTES_V8 62 -#define PD_CALL_REGISTRAR_V8 70 -#define PD_CALL_AUCTIONS_V8 72 - -#define PD_CALL_BALANCES_TRANSFER_ALL_V8 4 -typedef struct { - pd_LookupasStaticLookupSource_V8_t dest; - pd_bool_t keep_alive; -} pd_balances_transfer_all_V8_t; - -#define PD_CALL_STAKING_BOND_V8 0 -typedef struct { - pd_LookupasStaticLookupSource_V8_t controller; - pd_CompactBalance_t amount; - pd_RewardDestination_V8_t payee; -} pd_staking_bond_V8_t; - -#define PD_CALL_STAKING_BOND_EXTRA_V8 1 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_bond_extra_V8_t; - -#define PD_CALL_STAKING_UNBOND_V8 2 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_unbond_V8_t; - -#define PD_CALL_STAKING_WITHDRAW_UNBONDED_V8 3 -typedef struct { - pd_u32_t num_slashing_spans; -} pd_staking_withdraw_unbonded_V8_t; - -#define PD_CALL_STAKING_VALIDATE_V8 4 -typedef struct { - pd_ValidatorPrefs_V8_t prefs; -} pd_staking_validate_V8_t; - -#define PD_CALL_STAKING_NOMINATE_V8 5 -typedef struct { - pd_VecLookupasStaticLookupSource_V8_t targets; -} pd_staking_nominate_V8_t; - -#define PD_CALL_STAKING_CHILL_V8 6 -typedef struct { -} pd_staking_chill_V8_t; - -#define PD_CALL_STAKING_SET_PAYEE_V8 7 -typedef struct { - pd_RewardDestination_V8_t payee; -} pd_staking_set_payee_V8_t; - -#define PD_CALL_STAKING_SET_CONTROLLER_V8 8 -typedef struct { - pd_LookupasStaticLookupSource_V8_t controller; -} pd_staking_set_controller_V8_t; - -#define PD_CALL_STAKING_PAYOUT_STAKERS_V8 18 -typedef struct { - pd_AccountId_V8_t validator_stash; - pd_EraIndex_V8_t era; -} pd_staking_payout_stakers_V8_t; - -#define PD_CALL_STAKING_REBOND_V8 19 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_rebond_V8_t; - -#define PD_CALL_SESSION_SET_KEYS_V8 0 -typedef struct { - pd_Keys_V8_t keys; - pd_Bytes_t proof; -} pd_session_set_keys_V8_t; - -#define PD_CALL_SESSION_PURGE_KEYS_V8 1 -typedef struct { -} pd_session_purge_keys_V8_t; - -#define PD_CALL_UTILITY_BATCH_V8 0 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_V8_t; - -#define PD_CALL_UTILITY_BATCH_ALL_V8 2 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_all_V8_t; - -#ifdef SUBSTRATE_PARSER_FULL - -#define PD_CALL_TIMESTAMP_SET_V8 0 -typedef struct { - pd_Compactu64_t now; -} pd_timestamp_set_V8_t; - -#define PD_CALL_INDICES_CLAIM_V8 0 -typedef struct { - pd_AccountIndex_V8_t index; -} pd_indices_claim_V8_t; - -#define PD_CALL_INDICES_TRANSFER_V8 1 -typedef struct { - pd_AccountId_V8_t new_; - pd_AccountIndex_V8_t index; -} pd_indices_transfer_V8_t; - -#define PD_CALL_INDICES_FREE_V8 2 -typedef struct { - pd_AccountIndex_V8_t index; -} pd_indices_free_V8_t; - -#define PD_CALL_INDICES_FORCE_TRANSFER_V8 3 -typedef struct { - pd_AccountId_V8_t new_; - pd_AccountIndex_V8_t index; - pd_bool_t freeze; -} pd_indices_force_transfer_V8_t; - -#define PD_CALL_INDICES_FREEZE_V8 4 -typedef struct { - pd_AccountIndex_V8_t index; -} pd_indices_freeze_V8_t; - -#define PD_CALL_BALANCES_FORCE_UNRESERVE_V8 5 -typedef struct { - pd_LookupasStaticLookupSource_V8_t who; - pd_Balance_t amount; -} pd_balances_force_unreserve_V8_t; - -#define PD_CALL_STAKING_SET_VALIDATOR_COUNT_V8 9 -typedef struct { - pd_Compactu32_t new_; -} pd_staking_set_validator_count_V8_t; - -#define PD_CALL_STAKING_INCREASE_VALIDATOR_COUNT_V8 10 -typedef struct { - pd_Compactu32_t additional; -} pd_staking_increase_validator_count_V8_t; - -#define PD_CALL_STAKING_FORCE_NO_ERAS_V8 12 -typedef struct { -} pd_staking_force_no_eras_V8_t; - -#define PD_CALL_STAKING_FORCE_NEW_ERA_V8 13 -typedef struct { -} pd_staking_force_new_era_V8_t; - -#define PD_CALL_STAKING_FORCE_UNSTAKE_V8 15 -typedef struct { - pd_AccountId_V8_t stash; - pd_u32_t num_slashing_spans; -} pd_staking_force_unstake_V8_t; - -#define PD_CALL_STAKING_FORCE_NEW_ERA_ALWAYS_V8 16 -typedef struct { -} pd_staking_force_new_era_always_V8_t; - -#define PD_CALL_STAKING_SET_HISTORY_DEPTH_V8 20 -typedef struct { - pd_Compactu32_t new_history_depth; - pd_Compactu32_t era_items_deleted; -} pd_staking_set_history_depth_V8_t; - -#define PD_CALL_STAKING_REAP_STASH_V8 21 -typedef struct { - pd_AccountId_V8_t stash; - pd_u32_t num_slashing_spans; -} pd_staking_reap_stash_V8_t; - -#define PD_CALL_STAKING_KICK_V8 22 -typedef struct { - pd_VecLookupasStaticLookupSource_V8_t who; -} pd_staking_kick_V8_t; - -#define PD_CALL_STAKING_CHILL_OTHER_V8 24 -typedef struct { - pd_AccountId_V8_t controller; -} pd_staking_chill_other_V8_t; - -#define PD_CALL_GRANDPA_NOTE_STALLED_V8 2 -typedef struct { - pd_BlockNumber_t delay; - pd_BlockNumber_t best_finalized_block_number; -} pd_grandpa_note_stalled_V8_t; - -#define PD_CALL_DEMOCRACY_SECOND_V8 1 -typedef struct { - pd_Compactu32_t proposal; - pd_Compactu32_t seconds_upper_bound; -} pd_democracy_second_V8_t; - -#define PD_CALL_DEMOCRACY_EMERGENCY_CANCEL_V8 3 -typedef struct { - pd_ReferendumIndex_V8_t ref_index; -} pd_democracy_emergency_cancel_V8_t; - -#define PD_CALL_DEMOCRACY_CANCEL_REFERENDUM_V8 9 -typedef struct { - pd_Compactu32_t ref_index; -} pd_democracy_cancel_referendum_V8_t; - -#define PD_CALL_DEMOCRACY_CANCEL_QUEUED_V8 10 -typedef struct { - pd_ReferendumIndex_V8_t which; -} pd_democracy_cancel_queued_V8_t; - -#define PD_CALL_DEMOCRACY_UNDELEGATE_V8 12 -typedef struct { -} pd_democracy_undelegate_V8_t; - -#define PD_CALL_DEMOCRACY_CLEAR_PUBLIC_PROPOSALS_V8 13 -typedef struct { -} pd_democracy_clear_public_proposals_V8_t; - -#define PD_CALL_DEMOCRACY_NOTE_PREIMAGE_V8 14 -typedef struct { - pd_Bytes_t encoded_proposal; -} pd_democracy_note_preimage_V8_t; - -#define PD_CALL_DEMOCRACY_NOTE_PREIMAGE_OPERATIONAL_V8 15 -typedef struct { - pd_Bytes_t encoded_proposal; -} pd_democracy_note_preimage_operational_V8_t; - -#define PD_CALL_DEMOCRACY_NOTE_IMMINENT_PREIMAGE_V8 16 -typedef struct { - pd_Bytes_t encoded_proposal; -} pd_democracy_note_imminent_preimage_V8_t; - -#define PD_CALL_DEMOCRACY_NOTE_IMMINENT_PREIMAGE_OPERATIONAL_V8 17 -typedef struct { - pd_Bytes_t encoded_proposal; -} pd_democracy_note_imminent_preimage_operational_V8_t; - -#define PD_CALL_DEMOCRACY_REMOVE_VOTE_V8 20 -typedef struct { - pd_ReferendumIndex_V8_t index; -} pd_democracy_remove_vote_V8_t; - -#define PD_CALL_DEMOCRACY_CANCEL_PROPOSAL_V8 24 -typedef struct { - pd_Compactu32_t prop_index; -} pd_democracy_cancel_proposal_V8_t; - -#define PD_CALL_COUNCIL_VOTE_V8 3 -typedef struct { - pd_Hash_t proposal; - pd_Compactu32_t index; - pd_bool_t approve; -} pd_council_vote_V8_t; - -#define PD_CALL_COUNCIL_CLOSE_V8 4 -typedef struct { - pd_Hash_t proposal_hash; - pd_Compactu32_t index; - pd_Compactu64_t proposal_weight_bound; - pd_Compactu32_t length_bound; -} pd_council_close_V8_t; - -#define PD_CALL_COUNCIL_DISAPPROVE_PROPOSAL_V8 5 -typedef struct { - pd_Hash_t proposal_hash; -} pd_council_disapprove_proposal_V8_t; - -#define PD_CALL_TECHNICALCOMMITTEE_DISAPPROVE_PROPOSAL_V8 5 -typedef struct { - pd_Hash_t proposal_hash; -} pd_technicalcommittee_disapprove_proposal_V8_t; - -#define PD_CALL_PHRAGMENELECTION_REMOVE_VOTER_V8 1 -typedef struct { -} pd_phragmenelection_remove_voter_V8_t; - -#define PD_CALL_PHRAGMENELECTION_SUBMIT_CANDIDACY_V8 2 -typedef struct { - pd_Compactu32_t candidate_count; -} pd_phragmenelection_submit_candidacy_V8_t; - -#define PD_CALL_PHRAGMENELECTION_REMOVE_MEMBER_V8 4 -typedef struct { - pd_LookupasStaticLookupSource_V8_t who; - pd_bool_t has_replacement; -} pd_phragmenelection_remove_member_V8_t; - -#define PD_CALL_PHRAGMENELECTION_CLEAN_DEFUNCT_VOTERS_V8 5 -typedef struct { - pd_u32_t num_voters; - pd_u32_t num_defunct; -} pd_phragmenelection_clean_defunct_voters_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_ADD_MEMBER_V8 0 -typedef struct { - pd_AccountId_V8_t who; -} pd_technicalmembership_add_member_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_REMOVE_MEMBER_V8 1 -typedef struct { - pd_AccountId_V8_t who; -} pd_technicalmembership_remove_member_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_SWAP_MEMBER_V8 2 -typedef struct { - pd_AccountId_V8_t remove; - pd_AccountId_V8_t add; -} pd_technicalmembership_swap_member_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_RESET_MEMBERS_V8 3 -typedef struct { - pd_VecAccountId_V8_t members; -} pd_technicalmembership_reset_members_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_CHANGE_KEY_V8 4 -typedef struct { - pd_AccountId_V8_t new_; -} pd_technicalmembership_change_key_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_SET_PRIME_V8 5 -typedef struct { - pd_AccountId_V8_t who; -} pd_technicalmembership_set_prime_V8_t; - -#define PD_CALL_TECHNICALMEMBERSHIP_CLEAR_PRIME_V8 6 -typedef struct { -} pd_technicalmembership_clear_prime_V8_t; - -#define PD_CALL_TREASURY_PROPOSE_SPEND_V8 0 -typedef struct { - pd_CompactBalance_t amount; - pd_LookupasStaticLookupSource_V8_t beneficiary; -} pd_treasury_propose_spend_V8_t; - -#define PD_CALL_TREASURY_REJECT_PROPOSAL_V8 1 -typedef struct { - pd_Compactu32_t proposal_id; -} pd_treasury_reject_proposal_V8_t; - -#define PD_CALL_TREASURY_APPROVE_PROPOSAL_V8 2 -typedef struct { - pd_Compactu32_t proposal_id; -} pd_treasury_approve_proposal_V8_t; - -#define PD_CALL_CLAIMS_CLAIM_V8 0 -typedef struct { - pd_AccountId_V8_t dest; - pd_EcdsaSignature_V8_t ethereum_signature; -} pd_claims_claim_V8_t; - -#define PD_CALL_CLAIMS_CLAIM_ATTEST_V8 2 -typedef struct { - pd_AccountId_V8_t dest; - pd_EcdsaSignature_V8_t ethereum_signature; - pd_Bytes_t statement; -} pd_claims_claim_attest_V8_t; - -#define PD_CALL_CLAIMS_ATTEST_V8 3 -typedef struct { - pd_Bytes_t statement; -} pd_claims_attest_V8_t; - -#define PD_CALL_CLAIMS_MOVE_CLAIM_V8 4 -typedef struct { - pd_EthereumAddress_V8_t old; - pd_EthereumAddress_V8_t new_; - pd_OptionAccountId_V8_t maybe_preclaim; -} pd_claims_move_claim_V8_t; - -#define PD_CALL_IDENTITY_ADD_REGISTRAR_V8 0 -typedef struct { - pd_AccountId_V8_t account; -} pd_identity_add_registrar_V8_t; - -#define PD_CALL_IDENTITY_CLEAR_IDENTITY_V8 3 -typedef struct { -} pd_identity_clear_identity_V8_t; - -#define PD_CALL_IDENTITY_REQUEST_JUDGEMENT_V8 4 -typedef struct { - pd_Compactu32_t reg_index; - pd_Compactu128_t max_fee; -} pd_identity_request_judgement_V8_t; - -#define PD_CALL_IDENTITY_CANCEL_REQUEST_V8 5 -typedef struct { - pd_RegistrarIndex_V8_t reg_index; -} pd_identity_cancel_request_V8_t; - -#define PD_CALL_IDENTITY_SET_FEE_V8 6 -typedef struct { - pd_Compactu32_t index; - pd_Compactu128_t fee; -} pd_identity_set_fee_V8_t; - -#define PD_CALL_IDENTITY_SET_ACCOUNT_ID_V8 7 -typedef struct { - pd_Compactu32_t index; - pd_AccountId_V8_t new_; -} pd_identity_set_account_id_V8_t; - -#define PD_CALL_IDENTITY_KILL_IDENTITY_V8 10 -typedef struct { - pd_LookupasStaticLookupSource_V8_t target; -} pd_identity_kill_identity_V8_t; - -#define PD_CALL_IDENTITY_REMOVE_SUB_V8 13 -typedef struct { - pd_LookupasStaticLookupSource_V8_t sub; -} pd_identity_remove_sub_V8_t; - -#define PD_CALL_IDENTITY_QUIT_SUB_V8 14 -typedef struct { -} pd_identity_quit_sub_V8_t; - -#define PD_CALL_SOCIETY_BID_V8 0 -typedef struct { - pd_Balance_t amount; -} pd_society_bid_V8_t; - -#define PD_CALL_SOCIETY_UNBID_V8 1 -typedef struct { - pd_u32_t pos; -} pd_society_unbid_V8_t; - -#define PD_CALL_SOCIETY_VOUCH_V8 2 -typedef struct { - pd_AccountId_V8_t who; - pd_Balance_t amount; - pd_Balance_t tip; -} pd_society_vouch_V8_t; - -#define PD_CALL_SOCIETY_UNVOUCH_V8 3 -typedef struct { - pd_u32_t pos; -} pd_society_unvouch_V8_t; - -#define PD_CALL_SOCIETY_VOTE_V8 4 -typedef struct { - pd_LookupasStaticLookupSource_V8_t candidate; - pd_bool_t approve; -} pd_society_vote_V8_t; - -#define PD_CALL_SOCIETY_DEFENDER_VOTE_V8 5 -typedef struct { - pd_bool_t approve; -} pd_society_defender_vote_V8_t; - -#define PD_CALL_SOCIETY_PAYOUT_V8 6 -typedef struct { -} pd_society_payout_V8_t; - -#define PD_CALL_SOCIETY_FOUND_V8 7 -typedef struct { - pd_AccountId_V8_t founder; - pd_u32_t max_members; - pd_Bytes_t rules; -} pd_society_found_V8_t; - -#define PD_CALL_SOCIETY_UNFOUND_V8 8 -typedef struct { -} pd_society_unfound_V8_t; - -#define PD_CALL_SOCIETY_JUDGE_SUSPENDED_MEMBER_V8 9 -typedef struct { - pd_AccountId_V8_t who; - pd_bool_t forgive; -} pd_society_judge_suspended_member_V8_t; - -#define PD_CALL_SOCIETY_SET_MAX_MEMBERS_V8 11 -typedef struct { - pd_u32_t max; -} pd_society_set_max_members_V8_t; - -#define PD_CALL_RECOVERY_SET_RECOVERED_V8 1 -typedef struct { - pd_AccountId_V8_t lost; - pd_AccountId_V8_t rescuer; -} pd_recovery_set_recovered_V8_t; - -#define PD_CALL_RECOVERY_INITIATE_RECOVERY_V8 3 -typedef struct { - pd_AccountId_V8_t account; -} pd_recovery_initiate_recovery_V8_t; - -#define PD_CALL_RECOVERY_VOUCH_RECOVERY_V8 4 -typedef struct { - pd_AccountId_V8_t lost; - pd_AccountId_V8_t rescuer; -} pd_recovery_vouch_recovery_V8_t; - -#define PD_CALL_RECOVERY_CLAIM_RECOVERY_V8 5 -typedef struct { - pd_AccountId_V8_t account; -} pd_recovery_claim_recovery_V8_t; - -#define PD_CALL_RECOVERY_CLOSE_RECOVERY_V8 6 -typedef struct { - pd_AccountId_V8_t rescuer; -} pd_recovery_close_recovery_V8_t; - -#define PD_CALL_RECOVERY_REMOVE_RECOVERY_V8 7 -typedef struct { -} pd_recovery_remove_recovery_V8_t; - -#define PD_CALL_RECOVERY_CANCEL_RECOVERED_V8 8 -typedef struct { - pd_AccountId_V8_t account; -} pd_recovery_cancel_recovered_V8_t; - -#define PD_CALL_VESTING_VEST_V8 0 -typedef struct { -} pd_vesting_vest_V8_t; - -#define PD_CALL_VESTING_VEST_OTHER_V8 1 -typedef struct { - pd_LookupasStaticLookupSource_V8_t target; -} pd_vesting_vest_other_V8_t; - -#define PD_CALL_VESTING_MERGE_SCHEDULES_V8 4 -typedef struct { - pd_u32_t schedule1_index; - pd_u32_t schedule2_index; -} pd_vesting_merge_schedules_V8_t; - -#define PD_CALL_PROXY_ADD_PROXY_V8 1 -typedef struct { - pd_AccountId_V8_t delegate; - pd_ProxyType_V8_t proxy_type; - pd_BlockNumber_t delay; -} pd_proxy_add_proxy_V8_t; - -#define PD_CALL_PROXY_REMOVE_PROXY_V8 2 -typedef struct { - pd_AccountId_V8_t delegate; - pd_ProxyType_V8_t proxy_type; - pd_BlockNumber_t delay; -} pd_proxy_remove_proxy_V8_t; - -#define PD_CALL_PROXY_REMOVE_PROXIES_V8 3 -typedef struct { -} pd_proxy_remove_proxies_V8_t; - -#define PD_CALL_PROXY_ANONYMOUS_V8 4 -typedef struct { - pd_ProxyType_V8_t proxy_type; - pd_BlockNumber_t delay; - pd_u16_t index; -} pd_proxy_anonymous_V8_t; - -#define PD_CALL_PROXY_KILL_ANONYMOUS_V8 5 -typedef struct { - pd_AccountId_V8_t spawner; - pd_ProxyType_V8_t proxy_type; - pd_u16_t index; - pd_Compactu32_t height; - pd_Compactu32_t ext_index; -} pd_proxy_kill_anonymous_V8_t; - -#define PD_CALL_PROXY_PROXY_ANNOUNCED_V8 9 -typedef struct { - pd_AccountId_V8_t delegate; - pd_AccountId_V8_t real; - pd_OptionProxyType_V8_t force_proxy_type; - pd_Call_t call; -} pd_proxy_proxy_announced_V8_t; - -#define PD_CALL_BOUNTIES_PROPOSE_BOUNTY_V8 0 -typedef struct { - pd_CompactBalance_t amount; - pd_Bytes_t description; -} pd_bounties_propose_bounty_V8_t; - -#define PD_CALL_BOUNTIES_APPROVE_BOUNTY_V8 1 -typedef struct { - pd_Compactu32_t bounty_id; -} pd_bounties_approve_bounty_V8_t; - -#define PD_CALL_BOUNTIES_PROPOSE_CURATOR_V8 2 -typedef struct { - pd_Compactu32_t bounty_id; - pd_LookupasStaticLookupSource_V8_t curator; - pd_CompactBalance_t fee; -} pd_bounties_propose_curator_V8_t; - -#define PD_CALL_BOUNTIES_UNASSIGN_CURATOR_V8 3 -typedef struct { - pd_Compactu32_t bounty_id; -} pd_bounties_unassign_curator_V8_t; - -#define PD_CALL_BOUNTIES_ACCEPT_CURATOR_V8 4 -typedef struct { - pd_Compactu32_t bounty_id; -} pd_bounties_accept_curator_V8_t; - -#define PD_CALL_BOUNTIES_AWARD_BOUNTY_V8 5 -typedef struct { - pd_Compactu32_t bounty_id; - pd_LookupasStaticLookupSource_V8_t beneficiary; -} pd_bounties_award_bounty_V8_t; - -#define PD_CALL_BOUNTIES_CLAIM_BOUNTY_V8 6 -typedef struct { - pd_Compactu32_t bounty_id; -} pd_bounties_claim_bounty_V8_t; - -#define PD_CALL_BOUNTIES_CLOSE_BOUNTY_V8 7 -typedef struct { - pd_Compactu32_t bounty_id; -} pd_bounties_close_bounty_V8_t; - -#define PD_CALL_BOUNTIES_EXTEND_BOUNTY_EXPIRY_V8 8 -typedef struct { - pd_Compactu32_t bounty_id; - pd_Bytes_t remark; -} pd_bounties_extend_bounty_expiry_V8_t; - -#define PD_CALL_TIPS_REPORT_AWESOME_V8 0 -typedef struct { - pd_Bytes_t reason; - pd_AccountId_V8_t who; -} pd_tips_report_awesome_V8_t; - -#define PD_CALL_TIPS_RETRACT_TIP_V8 1 -typedef struct { - pd_Hash_t hash; -} pd_tips_retract_tip_V8_t; - -#define PD_CALL_TIPS_TIP_NEW_V8 2 -typedef struct { - pd_Bytes_t reason; - pd_AccountId_V8_t who; - pd_Compactu128_t tip_value; -} pd_tips_tip_new_V8_t; - -#define PD_CALL_TIPS_TIP_V8 3 -typedef struct { - pd_Hash_t hash; - pd_Compactu128_t tip_value; -} pd_tips_tip_V8_t; - -#define PD_CALL_TIPS_CLOSE_TIP_V8 4 -typedef struct { - pd_Hash_t hash; -} pd_tips_close_tip_V8_t; - -#define PD_CALL_TIPS_SLASH_TIP_V8 5 -typedef struct { - pd_Hash_t hash; -} pd_tips_slash_tip_V8_t; - -#define PD_CALL_GILT_PLACE_BID_V8 0 -typedef struct { - pd_CompactBalance_t amount; - pd_u32_t duration; -} pd_gilt_place_bid_V8_t; - -#define PD_CALL_GILT_RETRACT_BID_V8 1 -typedef struct { - pd_CompactBalance_t amount; - pd_u32_t duration; -} pd_gilt_retract_bid_V8_t; - -#define PD_CALL_BAGSLIST_REBAG_V8 0 -typedef struct { - pd_AccountId_V8_t dislocated; -} pd_bagslist_rebag_V8_t; - -#define PD_CALL_CONFIGURATION_SET_VALIDATION_UPGRADE_FREQUENCY_V8 0 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_validation_upgrade_frequency_V8_t; - -#define PD_CALL_CONFIGURATION_SET_VALIDATION_UPGRADE_DELAY_V8 1 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_validation_upgrade_delay_V8_t; - -#define PD_CALL_CONFIGURATION_SET_CODE_RETENTION_PERIOD_V8 2 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_code_retention_period_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_CODE_SIZE_V8 3 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_code_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_POV_SIZE_V8 4 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_pov_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_HEAD_DATA_SIZE_V8 5 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_head_data_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_PARATHREAD_CORES_V8 6 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_parathread_cores_V8_t; - -#define PD_CALL_CONFIGURATION_SET_PARATHREAD_RETRIES_V8 7 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_parathread_retries_V8_t; - -#define PD_CALL_CONFIGURATION_SET_GROUP_ROTATION_FREQUENCY_V8 8 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_group_rotation_frequency_V8_t; - -#define PD_CALL_CONFIGURATION_SET_CHAIN_AVAILABILITY_PERIOD_V8 9 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_chain_availability_period_V8_t; - -#define PD_CALL_CONFIGURATION_SET_THREAD_AVAILABILITY_PERIOD_V8 10 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_thread_availability_period_V8_t; - -#define PD_CALL_CONFIGURATION_SET_SCHEDULING_LOOKAHEAD_V8 11 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_scheduling_lookahead_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_VALIDATORS_PER_CORE_V8 12 -typedef struct { - pd_Optionu32_t new_; -} pd_configuration_set_max_validators_per_core_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_VALIDATORS_V8 13 -typedef struct { - pd_Optionu32_t new_; -} pd_configuration_set_max_validators_V8_t; - -#define PD_CALL_CONFIGURATION_SET_DISPUTE_POST_CONCLUSION_ACCEPTANCE_PERIOD_V8 15 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_dispute_post_conclusion_acceptance_period_V8_t; - -#define PD_CALL_CONFIGURATION_SET_DISPUTE_MAX_SPAM_SLOTS_V8 16 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_dispute_max_spam_slots_V8_t; - -#define PD_CALL_CONFIGURATION_SET_DISPUTE_CONCLUSION_BY_TIME_OUT_PERIOD_V8 17 -typedef struct { - pd_BlockNumber_t new_; -} pd_configuration_set_dispute_conclusion_by_time_out_period_V8_t; - -#define PD_CALL_CONFIGURATION_SET_NO_SHOW_SLOTS_V8 18 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_no_show_slots_V8_t; - -#define PD_CALL_CONFIGURATION_SET_N_DELAY_TRANCHES_V8 19 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_n_delay_tranches_V8_t; - -#define PD_CALL_CONFIGURATION_SET_ZEROTH_DELAY_TRANCHE_WIDTH_V8 20 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_zeroth_delay_tranche_width_V8_t; - -#define PD_CALL_CONFIGURATION_SET_NEEDED_APPROVALS_V8 21 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_needed_approvals_V8_t; - -#define PD_CALL_CONFIGURATION_SET_RELAY_VRF_MODULO_SAMPLES_V8 22 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_relay_vrf_modulo_samples_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_QUEUE_COUNT_V8 23 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_upward_queue_count_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_QUEUE_SIZE_V8 24 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_upward_queue_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_DOWNWARD_MESSAGE_SIZE_V8 25 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_downward_message_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_UMP_SERVICE_TOTAL_WEIGHT_V8 26 -typedef struct { - pd_Weight_V8_t new_; -} pd_configuration_set_ump_service_total_weight_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_MESSAGE_SIZE_V8 27 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_upward_message_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE_V8 28 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_max_upward_message_num_per_candidate_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_OPEN_REQUEST_TTL_V8 29 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_open_request_ttl_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_RECIPIENT_DEPOSIT_V8 31 -typedef struct { - pd_Balance_t new_; -} pd_configuration_set_hrmp_recipient_deposit_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_CAPACITY_V8 32 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_channel_max_capacity_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_TOTAL_SIZE_V8 33 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_channel_max_total_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARACHAIN_INBOUND_CHANNELS_V8 34 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_max_parachain_inbound_channels_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARATHREAD_INBOUND_CHANNELS_V8 35 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_max_parathread_inbound_channels_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_MESSAGE_SIZE_V8 36 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_channel_max_message_size_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARACHAIN_OUTBOUND_CHANNELS_V8 37 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_max_parachain_outbound_channels_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARATHREAD_OUTBOUND_CHANNELS_V8 38 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_max_parathread_outbound_channels_V8_t; - -#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_MESSAGE_NUM_PER_CANDIDATE_V8 39 -typedef struct { - pd_u32_t new_; -} pd_configuration_set_hrmp_max_message_num_per_candidate_V8_t; - -#define PD_CALL_CONFIGURATION_SET_UMP_MAX_INDIVIDUAL_WEIGHT_V8 40 -typedef struct { - pd_Weight_V8_t new_; -} pd_configuration_set_ump_max_individual_weight_V8_t; - -#define PD_CALL_INITIALIZER_FORCE_APPROVE_V8 0 -typedef struct { - pd_BlockNumber_t up_to; -} pd_initializer_force_approve_V8_t; - -#define PD_CALL_HRMP_FORCE_PROCESS_HRMP_OPEN_V8 4 -typedef struct { -} pd_hrmp_force_process_hrmp_open_V8_t; - -#define PD_CALL_HRMP_FORCE_PROCESS_HRMP_CLOSE_V8 5 -typedef struct { -} pd_hrmp_force_process_hrmp_close_V8_t; - -#define PD_CALL_PARASDISPUTES_FORCE_UNFREEZE_V8 0 -typedef struct { -} pd_parasdisputes_force_unfreeze_V8_t; - -#define PD_CALL_REGISTRAR_RESERVE_V8 5 -typedef struct { -} pd_registrar_reserve_V8_t; - -#define PD_CALL_AUCTIONS_NEW_AUCTION_V8 0 -typedef struct { - pd_Compactu32_t duration; - pd_Compactu32_t lease_period_index; -} pd_auctions_new_auction_V8_t; - -#define PD_CALL_AUCTIONS_BID_V8 1 -typedef struct { - pd_Compactu32_t para; - pd_Compactu32_t auction_index; - pd_Compactu32_t first_slot; - pd_Compactu32_t last_slot; - pd_CompactBalance_t amount; -} pd_auctions_bid_V8_t; - -#define PD_CALL_AUCTIONS_CANCEL_AUCTION_V8 2 -typedef struct { -} pd_auctions_cancel_auction_V8_t; - -#endif - -typedef union { - pd_balances_transfer_all_V8_t balances_transfer_all_V8; - pd_staking_bond_V8_t staking_bond_V8; - pd_staking_bond_extra_V8_t staking_bond_extra_V8; - pd_staking_unbond_V8_t staking_unbond_V8; - pd_staking_withdraw_unbonded_V8_t staking_withdraw_unbonded_V8; - pd_staking_validate_V8_t staking_validate_V8; - pd_staking_nominate_V8_t staking_nominate_V8; - pd_staking_chill_V8_t staking_chill_V8; - pd_staking_set_payee_V8_t staking_set_payee_V8; - pd_staking_set_controller_V8_t staking_set_controller_V8; - pd_staking_payout_stakers_V8_t staking_payout_stakers_V8; - pd_staking_rebond_V8_t staking_rebond_V8; - pd_session_set_keys_V8_t session_set_keys_V8; - pd_session_purge_keys_V8_t session_purge_keys_V8; - pd_utility_batch_V8_t utility_batch_V8; - pd_utility_batch_all_V8_t utility_batch_all_V8; -#ifdef SUBSTRATE_PARSER_FULL - pd_timestamp_set_V8_t timestamp_set_V8; - pd_indices_claim_V8_t indices_claim_V8; - pd_indices_transfer_V8_t indices_transfer_V8; - pd_indices_free_V8_t indices_free_V8; - pd_indices_force_transfer_V8_t indices_force_transfer_V8; - pd_indices_freeze_V8_t indices_freeze_V8; - pd_balances_force_unreserve_V8_t balances_force_unreserve_V8; - pd_staking_set_validator_count_V8_t staking_set_validator_count_V8; - pd_staking_increase_validator_count_V8_t staking_increase_validator_count_V8; - pd_staking_force_no_eras_V8_t staking_force_no_eras_V8; - pd_staking_force_new_era_V8_t staking_force_new_era_V8; - pd_staking_force_unstake_V8_t staking_force_unstake_V8; - pd_staking_force_new_era_always_V8_t staking_force_new_era_always_V8; - pd_staking_set_history_depth_V8_t staking_set_history_depth_V8; - pd_staking_reap_stash_V8_t staking_reap_stash_V8; - pd_staking_kick_V8_t staking_kick_V8; - pd_staking_chill_other_V8_t staking_chill_other_V8; - pd_grandpa_note_stalled_V8_t grandpa_note_stalled_V8; - pd_democracy_second_V8_t democracy_second_V8; - pd_democracy_emergency_cancel_V8_t democracy_emergency_cancel_V8; - pd_democracy_cancel_referendum_V8_t democracy_cancel_referendum_V8; - pd_democracy_cancel_queued_V8_t democracy_cancel_queued_V8; - pd_democracy_undelegate_V8_t democracy_undelegate_V8; - pd_democracy_clear_public_proposals_V8_t democracy_clear_public_proposals_V8; - pd_democracy_note_preimage_V8_t democracy_note_preimage_V8; - pd_democracy_note_preimage_operational_V8_t democracy_note_preimage_operational_V8; - pd_democracy_note_imminent_preimage_V8_t democracy_note_imminent_preimage_V8; - pd_democracy_note_imminent_preimage_operational_V8_t democracy_note_imminent_preimage_operational_V8; - pd_democracy_remove_vote_V8_t democracy_remove_vote_V8; - pd_democracy_cancel_proposal_V8_t democracy_cancel_proposal_V8; - pd_council_vote_V8_t council_vote_V8; - pd_council_close_V8_t council_close_V8; - pd_council_disapprove_proposal_V8_t council_disapprove_proposal_V8; - pd_technicalcommittee_disapprove_proposal_V8_t technicalcommittee_disapprove_proposal_V8; - pd_phragmenelection_remove_voter_V8_t phragmenelection_remove_voter_V8; - pd_phragmenelection_submit_candidacy_V8_t phragmenelection_submit_candidacy_V8; - pd_phragmenelection_remove_member_V8_t phragmenelection_remove_member_V8; - pd_phragmenelection_clean_defunct_voters_V8_t phragmenelection_clean_defunct_voters_V8; - pd_technicalmembership_add_member_V8_t technicalmembership_add_member_V8; - pd_technicalmembership_remove_member_V8_t technicalmembership_remove_member_V8; - pd_technicalmembership_swap_member_V8_t technicalmembership_swap_member_V8; - pd_technicalmembership_reset_members_V8_t technicalmembership_reset_members_V8; - pd_technicalmembership_change_key_V8_t technicalmembership_change_key_V8; - pd_technicalmembership_set_prime_V8_t technicalmembership_set_prime_V8; - pd_technicalmembership_clear_prime_V8_t technicalmembership_clear_prime_V8; - pd_treasury_propose_spend_V8_t treasury_propose_spend_V8; - pd_treasury_reject_proposal_V8_t treasury_reject_proposal_V8; - pd_treasury_approve_proposal_V8_t treasury_approve_proposal_V8; - pd_claims_claim_V8_t claims_claim_V8; - pd_claims_claim_attest_V8_t claims_claim_attest_V8; - pd_claims_attest_V8_t claims_attest_V8; - pd_claims_move_claim_V8_t claims_move_claim_V8; - pd_identity_add_registrar_V8_t identity_add_registrar_V8; - pd_identity_clear_identity_V8_t identity_clear_identity_V8; - pd_identity_request_judgement_V8_t identity_request_judgement_V8; - pd_identity_cancel_request_V8_t identity_cancel_request_V8; - pd_identity_set_fee_V8_t identity_set_fee_V8; - pd_identity_set_account_id_V8_t identity_set_account_id_V8; - pd_identity_kill_identity_V8_t identity_kill_identity_V8; - pd_identity_remove_sub_V8_t identity_remove_sub_V8; - pd_identity_quit_sub_V8_t identity_quit_sub_V8; - pd_society_bid_V8_t society_bid_V8; - pd_society_unbid_V8_t society_unbid_V8; - pd_society_vouch_V8_t society_vouch_V8; - pd_society_unvouch_V8_t society_unvouch_V8; - pd_society_vote_V8_t society_vote_V8; - pd_society_defender_vote_V8_t society_defender_vote_V8; - pd_society_payout_V8_t society_payout_V8; - pd_society_found_V8_t society_found_V8; - pd_society_unfound_V8_t society_unfound_V8; - pd_society_judge_suspended_member_V8_t society_judge_suspended_member_V8; - pd_society_set_max_members_V8_t society_set_max_members_V8; - pd_recovery_set_recovered_V8_t recovery_set_recovered_V8; - pd_recovery_initiate_recovery_V8_t recovery_initiate_recovery_V8; - pd_recovery_vouch_recovery_V8_t recovery_vouch_recovery_V8; - pd_recovery_claim_recovery_V8_t recovery_claim_recovery_V8; - pd_recovery_close_recovery_V8_t recovery_close_recovery_V8; - pd_recovery_remove_recovery_V8_t recovery_remove_recovery_V8; - pd_recovery_cancel_recovered_V8_t recovery_cancel_recovered_V8; - pd_vesting_vest_V8_t vesting_vest_V8; - pd_vesting_vest_other_V8_t vesting_vest_other_V8; - pd_vesting_merge_schedules_V8_t vesting_merge_schedules_V8; - pd_proxy_add_proxy_V8_t proxy_add_proxy_V8; - pd_proxy_remove_proxy_V8_t proxy_remove_proxy_V8; - pd_proxy_remove_proxies_V8_t proxy_remove_proxies_V8; - pd_proxy_anonymous_V8_t proxy_anonymous_V8; - pd_proxy_kill_anonymous_V8_t proxy_kill_anonymous_V8; - pd_proxy_proxy_announced_V8_t proxy_proxy_announced_V8; - pd_bounties_propose_bounty_V8_t bounties_propose_bounty_V8; - pd_bounties_approve_bounty_V8_t bounties_approve_bounty_V8; - pd_bounties_propose_curator_V8_t bounties_propose_curator_V8; - pd_bounties_unassign_curator_V8_t bounties_unassign_curator_V8; - pd_bounties_accept_curator_V8_t bounties_accept_curator_V8; - pd_bounties_award_bounty_V8_t bounties_award_bounty_V8; - pd_bounties_claim_bounty_V8_t bounties_claim_bounty_V8; - pd_bounties_close_bounty_V8_t bounties_close_bounty_V8; - pd_bounties_extend_bounty_expiry_V8_t bounties_extend_bounty_expiry_V8; - pd_tips_report_awesome_V8_t tips_report_awesome_V8; - pd_tips_retract_tip_V8_t tips_retract_tip_V8; - pd_tips_tip_new_V8_t tips_tip_new_V8; - pd_tips_tip_V8_t tips_tip_V8; - pd_tips_close_tip_V8_t tips_close_tip_V8; - pd_tips_slash_tip_V8_t tips_slash_tip_V8; - pd_gilt_place_bid_V8_t gilt_place_bid_V8; - pd_gilt_retract_bid_V8_t gilt_retract_bid_V8; - pd_bagslist_rebag_V8_t bagslist_rebag_V8; - pd_configuration_set_validation_upgrade_frequency_V8_t configuration_set_validation_upgrade_frequency_V8; - pd_configuration_set_validation_upgrade_delay_V8_t configuration_set_validation_upgrade_delay_V8; - pd_configuration_set_code_retention_period_V8_t configuration_set_code_retention_period_V8; - pd_configuration_set_max_code_size_V8_t configuration_set_max_code_size_V8; - pd_configuration_set_max_pov_size_V8_t configuration_set_max_pov_size_V8; - pd_configuration_set_max_head_data_size_V8_t configuration_set_max_head_data_size_V8; - pd_configuration_set_parathread_cores_V8_t configuration_set_parathread_cores_V8; - pd_configuration_set_parathread_retries_V8_t configuration_set_parathread_retries_V8; - pd_configuration_set_group_rotation_frequency_V8_t configuration_set_group_rotation_frequency_V8; - pd_configuration_set_chain_availability_period_V8_t configuration_set_chain_availability_period_V8; - pd_configuration_set_thread_availability_period_V8_t configuration_set_thread_availability_period_V8; - pd_configuration_set_scheduling_lookahead_V8_t configuration_set_scheduling_lookahead_V8; - pd_configuration_set_max_validators_per_core_V8_t configuration_set_max_validators_per_core_V8; - pd_configuration_set_max_validators_V8_t configuration_set_max_validators_V8; - pd_configuration_set_dispute_post_conclusion_acceptance_period_V8_t configuration_set_dispute_post_conclusion_acceptance_period_V8; - pd_configuration_set_dispute_max_spam_slots_V8_t configuration_set_dispute_max_spam_slots_V8; - pd_configuration_set_dispute_conclusion_by_time_out_period_V8_t configuration_set_dispute_conclusion_by_time_out_period_V8; - pd_configuration_set_no_show_slots_V8_t configuration_set_no_show_slots_V8; - pd_configuration_set_n_delay_tranches_V8_t configuration_set_n_delay_tranches_V8; - pd_configuration_set_zeroth_delay_tranche_width_V8_t configuration_set_zeroth_delay_tranche_width_V8; - pd_configuration_set_needed_approvals_V8_t configuration_set_needed_approvals_V8; - pd_configuration_set_relay_vrf_modulo_samples_V8_t configuration_set_relay_vrf_modulo_samples_V8; - pd_configuration_set_max_upward_queue_count_V8_t configuration_set_max_upward_queue_count_V8; - pd_configuration_set_max_upward_queue_size_V8_t configuration_set_max_upward_queue_size_V8; - pd_configuration_set_max_downward_message_size_V8_t configuration_set_max_downward_message_size_V8; - pd_configuration_set_ump_service_total_weight_V8_t configuration_set_ump_service_total_weight_V8; - pd_configuration_set_max_upward_message_size_V8_t configuration_set_max_upward_message_size_V8; - pd_configuration_set_max_upward_message_num_per_candidate_V8_t configuration_set_max_upward_message_num_per_candidate_V8; - pd_configuration_set_hrmp_open_request_ttl_V8_t configuration_set_hrmp_open_request_ttl_V8; - pd_configuration_set_hrmp_recipient_deposit_V8_t configuration_set_hrmp_recipient_deposit_V8; - pd_configuration_set_hrmp_channel_max_capacity_V8_t configuration_set_hrmp_channel_max_capacity_V8; - pd_configuration_set_hrmp_channel_max_total_size_V8_t configuration_set_hrmp_channel_max_total_size_V8; - pd_configuration_set_hrmp_max_parachain_inbound_channels_V8_t configuration_set_hrmp_max_parachain_inbound_channels_V8; - pd_configuration_set_hrmp_max_parathread_inbound_channels_V8_t configuration_set_hrmp_max_parathread_inbound_channels_V8; - pd_configuration_set_hrmp_channel_max_message_size_V8_t configuration_set_hrmp_channel_max_message_size_V8; - pd_configuration_set_hrmp_max_parachain_outbound_channels_V8_t configuration_set_hrmp_max_parachain_outbound_channels_V8; - pd_configuration_set_hrmp_max_parathread_outbound_channels_V8_t configuration_set_hrmp_max_parathread_outbound_channels_V8; - pd_configuration_set_hrmp_max_message_num_per_candidate_V8_t configuration_set_hrmp_max_message_num_per_candidate_V8; - pd_configuration_set_ump_max_individual_weight_V8_t configuration_set_ump_max_individual_weight_V8; - pd_initializer_force_approve_V8_t initializer_force_approve_V8; - pd_hrmp_force_process_hrmp_open_V8_t hrmp_force_process_hrmp_open_V8; - pd_hrmp_force_process_hrmp_close_V8_t hrmp_force_process_hrmp_close_V8; - pd_parasdisputes_force_unfreeze_V8_t parasdisputes_force_unfreeze_V8; - pd_registrar_reserve_V8_t registrar_reserve_V8; - pd_auctions_new_auction_V8_t auctions_new_auction_V8; - pd_auctions_bid_V8_t auctions_bid_V8; - pd_auctions_cancel_auction_V8_t auctions_cancel_auction_V8; -#endif -} pd_MethodBasic_V8_t; - -#define PD_CALL_BALANCES_TRANSFER_V8 0 -typedef struct { - pd_LookupasStaticLookupSource_V8_t dest; - pd_CompactBalance_t amount; -} pd_balances_transfer_V8_t; - -#define PD_CALL_BALANCES_FORCE_TRANSFER_V8 2 -typedef struct { - pd_LookupasStaticLookupSource_V8_t source; - pd_LookupasStaticLookupSource_V8_t dest; - pd_CompactBalance_t amount; -} pd_balances_force_transfer_V8_t; - -#define PD_CALL_BALANCES_TRANSFER_KEEP_ALIVE_V8 3 -typedef struct { - pd_LookupasStaticLookupSource_V8_t dest; - pd_CompactBalance_t amount; -} pd_balances_transfer_keep_alive_V8_t; - -#ifdef SUBSTRATE_PARSER_FULL -#define PD_CALL_SYSTEM_FILL_BLOCK_V8 0 -typedef struct { - pd_Perbill_V8_t ratio; -} pd_system_fill_block_V8_t; - -#define PD_CALL_SYSTEM_REMARK_V8 1 -typedef struct { - pd_Vecu8_t remark; -} pd_system_remark_V8_t; - -#define PD_CALL_SYSTEM_SET_HEAP_PAGES_V8 2 -typedef struct { - pd_u64_t pages; -} pd_system_set_heap_pages_V8_t; - -#define PD_CALL_SYSTEM_SET_CODE_V8 3 -typedef struct { - pd_Vecu8_t code; -} pd_system_set_code_V8_t; - -#define PD_CALL_SYSTEM_SET_CODE_WITHOUT_CHECKS_V8 4 -typedef struct { - pd_Vecu8_t code; -} pd_system_set_code_without_checks_V8_t; - -#define PD_CALL_SYSTEM_REMARK_WITH_EVENT_V8 8 -typedef struct { - pd_Vecu8_t remark; -} pd_system_remark_with_event_V8_t; - -#define PD_CALL_BALANCES_SET_BALANCE_V8 1 -typedef struct { - pd_LookupasStaticLookupSource_V8_t who; - pd_CompactBalance_t new_free; - pd_CompactBalance_t new_reserved; -} pd_balances_set_balance_V8_t; - -#define PD_CALL_PROXY_PROXY_V8 0 -typedef struct { - pd_AccountId_V8_t real; - pd_OptionProxyType_V8_t force_proxy_type; - pd_Call_t call; -} pd_proxy_proxy_V8_t; - -#define PD_CALL_MULTISIG_AS_MULTI_V8 1 -typedef struct { - pd_u16_t threshold; - pd_VecAccountId_V8_t other_signatories; - pd_OptionTimepoint_V8_t maybe_timepoint; - pd_OpaqueCall_V8_t call; - pd_bool_t store_call; - pd_Weight_V8_t max_weight; -} pd_multisig_as_multi_V8_t; - -#define PD_CALL_MULTISIG_APPROVE_AS_MULTI_V8 2 -typedef struct { - pd_u16_t threshold; - pd_VecAccountId_V8_t other_signatories; - pd_OptionTimepoint_V8_t maybe_timepoint; - pd_H256_t call_hash; - pd_Weight_V8_t max_weight; -} pd_multisig_approve_as_multi_V8_t; - -#define PD_CALL_MULTISIG_CANCEL_AS_MULTI_V8 3 -typedef struct { - pd_u16_t threshold; - pd_VecAccountId_V8_t other_signatories; - pd_Timepoint_V8_t timepoint; - pd_H256_t call_hash; -} pd_multisig_cancel_as_multi_V8_t; - -#endif - -typedef union { - pd_balances_transfer_V8_t balances_transfer_V8; - pd_balances_force_transfer_V8_t balances_force_transfer_V8; - pd_balances_transfer_keep_alive_V8_t balances_transfer_keep_alive_V8; -#ifdef SUBSTRATE_PARSER_FULL - pd_system_fill_block_V8_t system_fill_block_V8; - pd_system_remark_V8_t system_remark_V8; - pd_system_set_heap_pages_V8_t system_set_heap_pages_V8; - pd_system_set_code_V8_t system_set_code_V8; - pd_system_set_code_without_checks_V8_t system_set_code_without_checks_V8; - pd_system_remark_with_event_V8_t system_remark_with_event_V8; - pd_balances_set_balance_V8_t balances_set_balance_V8; - pd_proxy_proxy_V8_t proxy_proxy_V8; - pd_multisig_as_multi_V8_t multisig_as_multi_V8; - pd_multisig_approve_as_multi_V8_t multisig_approve_as_multi_V8; - pd_multisig_cancel_as_multi_V8_t multisig_cancel_as_multi_V8; -#endif -} pd_MethodNested_V8_t; - -typedef union { - pd_MethodBasic_V8_t basic; - pd_MethodNested_V8_t nested; -} pd_Method_V8_t; - -#ifdef __cplusplus -} -#endif - -#pragma clang diagnostic pop diff --git a/app/src/substrate/substrate_types_V8.c b/app/src/substrate/substrate_types_V8.c deleted file mode 100644 index a2b4b6d9..00000000 --- a/app/src/substrate/substrate_types_V8.c +++ /dev/null @@ -1,1666 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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. -********************************************************************************/ -#include "bignum.h" -#include "coin.h" -#include "parser_impl.h" -#include "substrate_dispatch_V8.h" -#include "substrate_strings.h" - -#include -#include -#include -#include - -parser_error_t _readAccountId_V8(parser_context_t* c, pd_AccountId_V8_t* v) { - GEN_DEF_READARRAY(32) -} - -parser_error_t _readAccountIndex_V8(parser_context_t* c, pd_AccountIndex_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readAccountVoteBalanceOf_V8(parser_context_t* c, pd_AccountVoteBalanceOf_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V8(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxEquivocationProofHashBlockNumber_V8(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxEquivocationProofHeader_V8(parser_context_t* c, pd_BoxEquivocationProofHeader_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V8(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxMultiLocation_V8(parser_context_t* c, pd_BoxMultiLocation_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxPalletsOrigin_V8(parser_context_t* c, pd_BoxPalletsOrigin_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxRawSolutionSolutionOfT_V8(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxTasConfigIProposal_V8(parser_context_t* c, pd_BoxTasConfigIProposal_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxVersionedMultiAssets_V8(parser_context_t* c, pd_BoxVersionedMultiAssets_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxVersionedMultiLocation_V8(parser_context_t* c, pd_BoxVersionedMultiLocation_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxVersionedXcmTasSysConfigCall_V8(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readBoxVersionedXcmTuple_V8(parser_context_t* c, pd_BoxVersionedXcmTuple_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readCallHashOf_V8(parser_context_t* c, pd_CallHashOf_V8_t* v) { - GEN_DEF_READARRAY(32) -} - -parser_error_t _readCompactAccountIndex_V8(parser_context_t* c, pd_CompactAccountIndex_V8_t* v) -{ - return _readCompactInt(c, &v->value); -} - -parser_error_t _readCompactPerBill_V8(parser_context_t* c, pd_CompactPerBill_V8_t* v) -{ - return _readCompactInt(c, &v->value); -} - -parser_error_t _readConviction_V8(parser_context_t* c, pd_Conviction_V8_t* v) -{ - CHECK_INPUT() - - CHECK_ERROR(_readUInt8(c, &v->value)) - if (v->value > 5) { - return parser_value_out_of_range; - } - - return parser_ok; -} - -parser_error_t _readEcdsaSignature_V8(parser_context_t* c, pd_EcdsaSignature_V8_t* v) { - GEN_DEF_READARRAY(65) -} - -parser_error_t _readElectionScore_V8(parser_context_t* c, pd_ElectionScore_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readEraIndex_V8(parser_context_t* c, pd_EraIndex_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readEthereumAddress_V8(parser_context_t* c, pd_EthereumAddress_V8_t* v) { - GEN_DEF_READARRAY(20) -} - -parser_error_t _readHeadData_V8(parser_context_t* c, pd_HeadData_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readHeartbeatBlockNumber_V8(parser_context_t* c, pd_HeartbeatBlockNumber_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readHrmpChannelId_V8(parser_context_t* c, pd_HrmpChannelId_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readIdentityFields_V8(parser_context_t* c, pd_IdentityFields_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readJudgementBalanceOfT_V8(parser_context_t* c, pd_JudgementBalanceOfT_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readJudgement_V8(parser_context_t* c, pd_Judgement_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readKeyOwnerProof_V8(parser_context_t* c, pd_KeyOwnerProof_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readKeyValue_V8(parser_context_t* c, pd_KeyValue_V8_t* v) { - GEN_DEF_READARRAY(32) -} - -parser_error_t _readKey_V8(parser_context_t* c, pd_Key_V8_t* v) { - GEN_DEF_READARRAY(32) -} - -parser_error_t _readKeys_V8(parser_context_t* c, pd_Keys_V8_t* v) { - GEN_DEF_READARRAY(6 * 32) -} - -parser_error_t _readLeasePeriodOfT_V8(parser_context_t* c, pd_LeasePeriodOfT_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readLookupasStaticLookupSource_V8(parser_context_t* c, pd_LookupasStaticLookupSource_V8_t* v) -{ - CHECK_INPUT(); - CHECK_ERROR(_readUInt8(c, &v->value)) - switch (v->value) { - case 0: // Id - CHECK_ERROR(_readAccountId_V8(c, &v->id)) - break; - case 1: // Index - CHECK_ERROR(_readCompactAccountIndex_V8(c, &v->index)) - break; - case 2: // Raw - CHECK_ERROR(_readBytes(c, &v->raw)) - break; - case 3: // Address32 - GEN_DEF_READARRAY(32) - case 4: // Address20 - GEN_DEF_READARRAY(20) - default: - return parser_unexpected_value; - } - - return parser_ok; -} - -parser_error_t _readMemberCount_V8(parser_context_t* c, pd_MemberCount_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readMultiSignature_V8(parser_context_t* c, pd_MultiSignature_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readMultiSigner_V8(parser_context_t* c, pd_MultiSigner_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readNextConfigDescriptor_V8(parser_context_t* c, pd_NextConfigDescriptor_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readOpaqueCall_V8(parser_context_t* c, pd_OpaqueCall_V8_t* v) -{ - // Encoded as Byte[], array size comes first - uint8_t size; - CHECK_ERROR(_readUInt8(c, &size)) - return _readCall(c, &v->call); -} - -parser_error_t _readOverweightIndex_V8(parser_context_t* c, pd_OverweightIndex_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readParaId_V8(parser_context_t* c, pd_ParaId_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readParachainsInherentDataHeader_V8(parser_context_t* c, pd_ParachainsInherentDataHeader_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readPerbill_V8(parser_context_t* c, pd_Perbill_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readPercent_V8(parser_context_t* c, pd_Percent_V8_t* v) -{ - return _readCompactInt(c, &v->value); -} - -parser_error_t _readProxyType_V8(parser_context_t* c, pd_ProxyType_V8_t* v) -{ - CHECK_INPUT() - - CHECK_ERROR(_readUInt8(c, &v->value)) - if (v->value > 3) { - return parser_value_out_of_range; - } - - return parser_ok; -} - -parser_error_t _readReferendumIndex_V8(parser_context_t* c, pd_ReferendumIndex_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readRegistrarIndex_V8(parser_context_t* c, pd_RegistrarIndex_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readRenouncing_V8(parser_context_t* c, pd_Renouncing_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readRewardDestination_V8(parser_context_t* c, pd_RewardDestination_V8_t* v) -{ - CHECK_INPUT(); - - CHECK_ERROR(_readUInt8(c, &v->value)) - if (v->value > 2) { - return parser_value_out_of_range; - } - - return parser_ok; -} - -parser_error_t _readSessionIndex_V8(parser_context_t* c, pd_SessionIndex_V8_t* v) -{ - return _readUInt32(c, &v->value); -} - -parser_error_t _readSolutionOrSnapshotSize_V8(parser_context_t* c, pd_SolutionOrSnapshotSize_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readStatementKind_V8(parser_context_t* c, pd_StatementKind_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readSupportsAccountId_V8(parser_context_t* c, pd_SupportsAccountId_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readTimepoint_V8(parser_context_t* c, pd_Timepoint_V8_t* v) -{ - CHECK_ERROR(_readBlockNumber(c, &v->height)) - CHECK_ERROR(_readu32(c, &v->index)) - return parser_ok; -} - -parser_error_t _readTupleAccountIdData_V8(parser_context_t* c, pd_TupleAccountIdData_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readValidationCode_V8(parser_context_t* c, pd_ValidationCode_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readValidatorPrefs_V8(parser_context_t* c, pd_ValidatorPrefs_V8_t* v) -{ - CHECK_INPUT(); - CHECK_ERROR(_readCompactPerBill_V8(c, &v->commission)); - CHECK_ERROR(_readbool(c, &v->blocked)) - return parser_ok; -} - -parser_error_t _readVestingInfoBalanceOfTBlockNumber_V8(parser_context_t* c, pd_VestingInfoBalanceOfTBlockNumber_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readWeightLimit_V8(parser_context_t* c, pd_WeightLimit_V8_t* v) -{ - return _readUInt64(c, &v->value); -} - -parser_error_t _readWeight_V8(parser_context_t* c, pd_Weight_V8_t* v) -{ - return _readUInt64(c, &v->value); -} - -parser_error_t _readXcmVersion_V8(parser_context_t* c, pd_XcmVersion_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readschedulePeriodBlockNumber_V8(parser_context_t* c, pd_schedulePeriodBlockNumber_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readschedulePriority_V8(parser_context_t* c, pd_schedulePriority_V8_t* v) -{ - return parser_not_supported; -} - -parser_error_t _readVecAccountId_V8(parser_context_t* c, pd_VecAccountId_V8_t* v) { - GEN_DEF_READVECTOR(AccountId_V8) -} - -parser_error_t _readVecKeyValue_V8(parser_context_t* c, pd_VecKeyValue_V8_t* v) { - GEN_DEF_READVECTOR(KeyValue_V8) -} - -parser_error_t _readVecKey_V8(parser_context_t* c, pd_VecKey_V8_t* v) { - GEN_DEF_READVECTOR(Key_V8) -} - -parser_error_t _readVecLookupasStaticLookupSource_V8(parser_context_t* c, pd_VecLookupasStaticLookupSource_V8_t* v) { - GEN_DEF_READVECTOR(LookupasStaticLookupSource_V8) -} - -parser_error_t _readVecTupleAccountIdData_V8(parser_context_t* c, pd_VecTupleAccountIdData_V8_t* v) { - GEN_DEF_READVECTOR(TupleAccountIdData_V8) -} - -parser_error_t _readOptionAccountId_V8(parser_context_t* c, pd_OptionAccountId_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readAccountId_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionElectionScore_V8(parser_context_t* c, pd_OptionElectionScore_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readElectionScore_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionMultiSignature_V8(parser_context_t* c, pd_OptionMultiSignature_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readMultiSignature_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionMultiSigner_V8(parser_context_t* c, pd_OptionMultiSigner_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readMultiSigner_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionPercent_V8(parser_context_t* c, pd_OptionPercent_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readPercent_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionProxyType_V8(parser_context_t* c, pd_OptionProxyType_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readProxyType_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionReferendumIndex_V8(parser_context_t* c, pd_OptionReferendumIndex_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readReferendumIndex_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionStatementKind_V8(parser_context_t* c, pd_OptionStatementKind_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readStatementKind_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionTimepoint_V8(parser_context_t* c, pd_OptionTimepoint_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readTimepoint_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readTupleBalanceOfTBalanceOfTBlockNumber_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionXcmVersion_V8(parser_context_t* c, pd_OptionXcmVersion_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readXcmVersion_V8(c, &v->contained)) - } - return parser_ok; -} - -parser_error_t _readOptionschedulePeriodBlockNumber_V8(parser_context_t* c, pd_OptionschedulePeriodBlockNumber_V8_t* v) -{ - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readschedulePeriodBlockNumber_V8(c, &v->contained)) - } - return parser_ok; -} - -/////////////////////////////////// -/////////////////////////////////// -/////////////////////////////////// - -parser_error_t _toStringAccountId_V8( - const pd_AccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringPubkeyAsAddress(v->_ptr, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringAccountIndex_V8( - const pd_AccountIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringAccountVoteBalanceOf_V8( - const pd_AccountVoteBalanceOf_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V8( - const pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V8( - const pd_BoxEquivocationProofHashBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxEquivocationProofHeader_V8( - const pd_BoxEquivocationProofHeader_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V8( - const pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxMultiLocation_V8( - const pd_BoxMultiLocation_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxPalletsOrigin_V8( - const pd_BoxPalletsOrigin_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxRawSolutionSolutionOfT_V8( - const pd_BoxRawSolutionSolutionOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxTasConfigIProposal_V8( - const pd_BoxTasConfigIProposal_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxVersionedMultiAssets_V8( - const pd_BoxVersionedMultiAssets_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxVersionedMultiLocation_V8( - const pd_BoxVersionedMultiLocation_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V8( - const pd_BoxVersionedXcmTasSysConfigCall_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringBoxVersionedXcmTuple_V8( - const pd_BoxVersionedXcmTuple_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringCallHashOf_V8( - const pd_CallHashOf_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(32) -} - -parser_error_t _toStringCompactAccountIndex_V8( - const pd_CompactAccountIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringCompactInt(&v->value, 0, "", "", outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringCompactPerBill_V8( - const pd_CompactPerBill_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - // 9 but shift 2 to show as percentage - return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringConviction_V8( - const pd_Conviction_V8_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, "None"); - break; - case 1: - snprintf(outValue, outValueLen, "Locked1x"); - break; - case 2: - snprintf(outValue, outValueLen, "Locked2x"); - break; - case 3: - snprintf(outValue, outValueLen, "Locked3x"); - break; - case 4: - snprintf(outValue, outValueLen, "Locked4x"); - break; - case 5: - snprintf(outValue, outValueLen, "Locked5x"); - break; - default: - return parser_print_not_supported; - } - - return parser_ok; -} - -parser_error_t _toStringEcdsaSignature_V8( - const pd_EcdsaSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(65) -} - -parser_error_t _toStringElectionScore_V8( - const pd_ElectionScore_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringEraIndex_V8( - const pd_EraIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringEthereumAddress_V8( - const pd_EthereumAddress_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(20) -} - -parser_error_t _toStringHeadData_V8( - const pd_HeadData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringHeartbeatBlockNumber_V8( - const pd_HeartbeatBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringHrmpChannelId_V8( - const pd_HrmpChannelId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringIdentityFields_V8( - const pd_IdentityFields_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringJudgementBalanceOfT_V8( - const pd_JudgementBalanceOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringJudgement_V8( - const pd_Judgement_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringKeyOwnerProof_V8( - const pd_KeyOwnerProof_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringKeyValue_V8( - const pd_KeyValue_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - return parser_print_not_supported; -} - -parser_error_t _toStringKey_V8( - const pd_Key_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - return parser_print_not_supported; -} - -parser_error_t _toStringKeys_V8( - const pd_Keys_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(6 * 32) -} - -parser_error_t _toStringLeasePeriodOfT_V8( - const pd_LeasePeriodOfT_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringLookupasStaticLookupSource_V8( - const pd_LookupasStaticLookupSource_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - switch (v->value) { - case 0: // Id - CHECK_ERROR(_toStringAccountId_V8(&v->id, outValue, outValueLen, pageIdx, pageCount)) - break; - case 1: // Index - CHECK_ERROR(_toStringCompactAccountIndex_V8(&v->index, outValue, outValueLen, pageIdx, pageCount)) - break; - case 2: // Raw - CHECK_ERROR(_toStringBytes(&v->raw, outValue, outValueLen, pageIdx, pageCount)) - break; - case 3: // Address32 - { - GEN_DEF_TOSTRING_ARRAY(32) - } - case 4: // Address20 - { - GEN_DEF_TOSTRING_ARRAY(20) - } - default: - return parser_unexpected_address_type; - } - - return parser_ok; -} - -parser_error_t _toStringMemberCount_V8( - const pd_MemberCount_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringMultiSignature_V8( - const pd_MultiSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringMultiSigner_V8( - const pd_MultiSigner_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringNextConfigDescriptor_V8( - const pd_NextConfigDescriptor_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringOpaqueCall_V8( - const pd_OpaqueCall_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringCall(&v->call, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringOverweightIndex_V8( - const pd_OverweightIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringParaId_V8( - const pd_ParaId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringParachainsInherentDataHeader_V8( - const pd_ParachainsInherentDataHeader_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringPerbill_V8( - const pd_Perbill_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - char bufferUI[100]; - char ratioBuffer[80]; - memset(outValue, 0, outValueLen); - memset(ratioBuffer, 0, sizeof(ratioBuffer)); - memset(bufferUI, 0, sizeof(bufferUI)); - *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_V8( - const pd_Percent_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - // 9 but shift 2 to show as percentage - return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringProxyType_V8( - const pd_ProxyType_V8_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, "Any"); - break; - case 1: - snprintf(outValue, outValueLen, "NonTransfer"); - break; - case 2: - snprintf(outValue, outValueLen, "Governance"); - break; - case 3: - snprintf(outValue, outValueLen, "Staking"); - break; - default: - return parser_print_not_supported; - } - - return parser_ok; -} - -parser_error_t _toStringReferendumIndex_V8( - const pd_ReferendumIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringRegistrarIndex_V8( - const pd_RegistrarIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringRenouncing_V8( - const pd_Renouncing_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringRewardDestination_V8( - const pd_RewardDestination_V8_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, "Staked"); - break; - case 1: - snprintf(outValue, outValueLen, "Stash"); - break; - case 2: - snprintf(outValue, outValueLen, "Controller"); - break; - default: - return parser_print_not_supported; - } - - return parser_ok; -} - -parser_error_t _toStringSessionIndex_V8( - const pd_SessionIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringSolutionOrSnapshotSize_V8( - const pd_SolutionOrSnapshotSize_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringStatementKind_V8( - const pd_StatementKind_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringSupportsAccountId_V8( - const pd_SupportsAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringTimepoint_V8( - const pd_Timepoint_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - // Index + count pages - uint8_t pages[2]; - CHECK_ERROR(_toStringBlockNumber(&v->height, outValue, outValueLen, 0, &pages[0])) - CHECK_ERROR(_toStringu32(&v->index, outValue, outValueLen, 0, &pages[1])) - - *pageCount = pages[0] + pages[1]; - if (pageIdx > *pageCount) { - return parser_display_idx_out_of_range; - } - - if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringBlockNumber(&v->height, outValue, outValueLen, pageIdx, &pages[0])) - return parser_ok; - } - pageIdx -= pages[0]; - - ////// - if (pageIdx < pages[1]) { - CHECK_ERROR(_toStringu32(&v->index, outValue, outValueLen, pageIdx, &pages[1])) - return parser_ok; - } - - return parser_display_idx_out_of_range; -} - -parser_error_t _toStringTupleAccountIdData_V8( - const pd_TupleAccountIdData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringValidationCode_V8( - const pd_ValidationCode_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringValidatorPrefs_V8( - const pd_ValidatorPrefs_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - uint8_t pages[2]; - CHECK_ERROR(_toStringCompactPerBill_V8(&v->commission, outValue, outValueLen, 0, &pages[0])) - CHECK_ERROR(_toStringbool(&v->blocked, 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(_toStringCompactPerBill_V8(&v->commission, outValue, outValueLen, pageIdx, &pages[0])) - return parser_ok; - } - pageIdx -= pages[0]; - - if (pageIdx < pages[1]) { - CHECK_ERROR(_toStringbool(&v->blocked, outValue, outValueLen, pageIdx, &pages[1])) - return parser_ok; - } - - return parser_display_idx_out_of_range; -} - -parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V8( - const pd_VestingInfoBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringWeightLimit_V8( - const pd_WeightLimit_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringWeight_V8( - const pd_Weight_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); -} - -parser_error_t _toStringXcmVersion_V8( - const pd_XcmVersion_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringschedulePeriodBlockNumber_V8( - const pd_schedulePeriodBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringschedulePriority_V8( - const pd_schedulePriority_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - return parser_print_not_supported; -} - -parser_error_t _toStringVecAccountId_V8( - const pd_VecAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(AccountId_V8); -} - -parser_error_t _toStringVecKeyValue_V8( - const pd_VecKeyValue_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(KeyValue_V8); -} - -parser_error_t _toStringVecKey_V8( - const pd_VecKey_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(Key_V8); -} - -parser_error_t _toStringVecLookupasStaticLookupSource_V8( - const pd_VecLookupasStaticLookupSource_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(LookupasStaticLookupSource_V8); -} - -parser_error_t _toStringVecTupleAccountIdData_V8( - const pd_VecTupleAccountIdData_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(TupleAccountIdData_V8); -} - -parser_error_t _toStringOptionAccountId_V8( - const pd_OptionAccountId_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringAccountId_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionElectionScore_V8( - const pd_OptionElectionScore_V8_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_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionMultiSignature_V8( - const pd_OptionMultiSignature_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringMultiSignature_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionMultiSigner_V8( - const pd_OptionMultiSigner_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringMultiSigner_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionPercent_V8( - const pd_OptionPercent_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringPercent_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionProxyType_V8( - const pd_OptionProxyType_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringProxyType_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionReferendumIndex_V8( - const pd_OptionReferendumIndex_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringReferendumIndex_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionStatementKind_V8( - const pd_OptionStatementKind_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringStatementKind_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionTimepoint_V8( - const pd_OptionTimepoint_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringTimepoint_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionXcmVersion_V8( - const pd_OptionXcmVersion_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringXcmVersion_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - -parser_error_t _toStringOptionschedulePeriodBlockNumber_V8( - const pd_OptionschedulePeriodBlockNumber_V8_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringschedulePeriodBlockNumber_V8( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} diff --git a/app/src/substrate/substrate_types_V8.h b/app/src/substrate/substrate_types_V8.h deleted file mode 100644 index c854e89a..00000000 --- a/app/src/substrate/substrate_types_V8.h +++ /dev/null @@ -1,428 +0,0 @@ -/******************************************************************************* -* (c) 2019 - 2022 Zondax GmbH -* -* 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 -extern "C" { -#endif - -#include "substrate_types.h" -#include -#include - -// Based -// https://github.com/paritytech/substrate/blob/master/node/primitives/src/lib.rs - -typedef struct { - const uint8_t* _ptr; -} pd_AccountId_V8_t; - -typedef struct { - compactInt_t value; -} pd_CompactAccountIndex_V8_t; - -typedef struct { - compactInt_t value; -} pd_CompactPerBill_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ElectionScore_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_KeyValue_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_Key_V8_t; - -typedef struct { - uint8_t value; - union { - pd_AccountId_V8_t id; - pd_CompactAccountIndex_V8_t index; - pd_Bytes_t raw; - const uint8_t* _ptr; - }; -} pd_LookupasStaticLookupSource_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_MultiSignature_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_MultiSigner_V8_t; - -typedef struct { - compactInt_t value; -} pd_Percent_V8_t; - -typedef struct { - uint8_t value; -} pd_ProxyType_V8_t; - -typedef struct { - uint32_t value; -} pd_ReferendumIndex_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_StatementKind_V8_t; - -typedef struct { - pd_BlockNumber_t height; - uint32_t index; -} pd_Timepoint_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_TupleAccountIdData_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_XcmVersion_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_schedulePeriodBlockNumber_V8_t; - -typedef struct { - pd_Call_t call; -} pd_OpaqueCall_V8_t; - -typedef struct { - uint8_t some; - pd_Timepoint_V8_t contained; -} pd_OptionTimepoint_V8_t; - -typedef struct { - pd_CompactPerBill_V8_t commission; - pd_bool_t blocked; -} pd_ValidatorPrefs_V8_t; - -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecLookupasStaticLookupSource_V8_t; - -typedef struct { - uint32_t value; -} pd_AccountIndex_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_AccountVoteBalanceOf_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_AuthorityIdasRuntimeAppPublicSignature_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxEquivocationProofHashBlockNumber_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxEquivocationProofHeader_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxIdentityInfoMaxAdditionalFields_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxMultiLocation_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxPalletsOrigin_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxRawSolutionSolutionOfT_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxTasConfigIProposal_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedMultiAssets_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedMultiLocation_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedXcmTasSysConfigCall_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedXcmTuple_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_CallHashOf_V8_t; - -typedef struct { - uint8_t value; -} pd_Conviction_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_EcdsaSignature_V8_t; - -typedef struct { - uint32_t value; -} pd_EraIndex_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_EthereumAddress_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HeadData_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HeartbeatBlockNumber_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HrmpChannelId_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_IdentityFields_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_JudgementBalanceOfT_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_Judgement_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_KeyOwnerProof_V8_t; - -typedef struct { - const uint8_t* _ptr; -} pd_Keys_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_LeasePeriodOfT_V8_t; - -typedef struct { - uint32_t value; -} pd_MemberCount_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_NextConfigDescriptor_V8_t; - -typedef struct { - uint8_t some; - pd_AccountId_V8_t contained; -} pd_OptionAccountId_V8_t; - -typedef struct { - uint8_t some; - pd_ElectionScore_V8_t contained; -} pd_OptionElectionScore_V8_t; - -typedef struct { - uint8_t some; - pd_MultiSignature_V8_t contained; -} pd_OptionMultiSignature_V8_t; - -typedef struct { - uint8_t some; - pd_MultiSigner_V8_t contained; -} pd_OptionMultiSigner_V8_t; - -typedef struct { - uint8_t some; - pd_Percent_V8_t contained; -} pd_OptionPercent_V8_t; - -typedef struct { - uint8_t some; - pd_ProxyType_V8_t contained; -} pd_OptionProxyType_V8_t; - -typedef struct { - uint8_t some; - pd_ReferendumIndex_V8_t contained; -} pd_OptionReferendumIndex_V8_t; - -typedef struct { - uint8_t some; - pd_StatementKind_V8_t contained; -} pd_OptionStatementKind_V8_t; - -typedef struct { - uint8_t some; - pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t contained; -} pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t; - -typedef struct { - uint8_t some; - pd_XcmVersion_V8_t contained; -} pd_OptionXcmVersion_V8_t; - -typedef struct { - uint8_t some; - pd_schedulePeriodBlockNumber_V8_t contained; -} pd_OptionschedulePeriodBlockNumber_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_OverweightIndex_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ParaId_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ParachainsInherentDataHeader_V8_t; - -typedef struct { - uint32_t value; -} pd_Perbill_V8_t; - -typedef struct { - uint32_t value; -} pd_RegistrarIndex_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_Renouncing_V8_t; - -typedef struct { - uint8_t value; -} pd_RewardDestination_V8_t; - -typedef struct { - uint32_t value; -} pd_SessionIndex_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_SolutionOrSnapshotSize_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_SupportsAccountId_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ValidationCode_V8_t; - -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecAccountId_V8_t; - -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecKeyValue_V8_t; - -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecKey_V8_t; - -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecTupleAccountIdData_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_VestingInfoBalanceOfTBlockNumber_V8_t; - -typedef struct { - uint64_t value; -} pd_WeightLimit_V8_t; - -typedef struct { - uint64_t value; -} pd_Weight_V8_t; - -typedef struct { - // TODO: Not implemented - uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_schedulePriority_V8_t; - -#ifdef __cplusplus -} -#endif From 4d33fc2da08f775931f9fb3b6f60034720791a56 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:00:35 +0100 Subject: [PATCH 02/14] add V10 files --- app/src/substrate/substrate_dispatch_V10.c | 7310 +++++++++++++++++++ app/src/substrate/substrate_dispatch_V10.h | 49 + app/src/substrate/substrate_functions_V10.h | 721 ++ app/src/substrate/substrate_methods_V10.h | 1343 ++++ app/src/substrate/substrate_types_V10.c | 1744 +++++ app/src/substrate/substrate_types_V10.h | 448 ++ 6 files changed, 11615 insertions(+) create mode 100644 app/src/substrate/substrate_dispatch_V10.c create mode 100644 app/src/substrate/substrate_dispatch_V10.h create mode 100644 app/src/substrate/substrate_functions_V10.h create mode 100644 app/src/substrate/substrate_methods_V10.h create mode 100644 app/src/substrate/substrate_types_V10.c create mode 100644 app/src/substrate/substrate_types_V10.h diff --git a/app/src/substrate/substrate_dispatch_V10.c b/app/src/substrate/substrate_dispatch_V10.c new file mode 100644 index 00000000..61a1aad2 --- /dev/null +++ b/app/src/substrate/substrate_dispatch_V10.c @@ -0,0 +1,7310 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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. +********************************************************************************/ + +#include "substrate_dispatch_V10.h" +#include "substrate_strings.h" +#include "zxmacros.h" +#include + +__Z_INLINE parser_error_t _readMethod_balances_transfer_V10( + parser_context_t* c, pd_balances_transfer_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->dest)) + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_balances_force_transfer_V10( + parser_context_t* c, pd_balances_force_transfer_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->source)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->dest)) + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_balances_transfer_keep_alive_V10( + parser_context_t* c, pd_balances_transfer_keep_alive_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->dest)) + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_balances_transfer_all_V10( + parser_context_t* c, pd_balances_transfer_all_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->dest)) + CHECK_ERROR(_readbool(c, &m->keep_alive)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_bond_V10( + parser_context_t* c, pd_staking_bond_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->controller)) + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + CHECK_ERROR(_readRewardDestination_V10(c, &m->payee)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_bond_extra_V10( + parser_context_t* c, pd_staking_bond_extra_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_unbond_V10( + parser_context_t* c, pd_staking_unbond_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_withdraw_unbonded_V10( + parser_context_t* c, pd_staking_withdraw_unbonded_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_validate_V10( + parser_context_t* c, pd_staking_validate_V10_t* m) +{ + CHECK_ERROR(_readValidatorPrefs_V10(c, &m->prefs)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_nominate_V10( + parser_context_t* c, pd_staking_nominate_V10_t* m) +{ + CHECK_ERROR(_readVecLookupasStaticLookupSource_V10(c, &m->targets)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_chill_V10( + parser_context_t* c, pd_staking_chill_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_set_payee_V10( + parser_context_t* c, pd_staking_set_payee_V10_t* m) +{ + CHECK_ERROR(_readRewardDestination_V10(c, &m->payee)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_set_controller_V10( + parser_context_t* c, pd_staking_set_controller_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->controller)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_V10( + parser_context_t* c, pd_staking_payout_stakers_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->validator_stash)) + CHECK_ERROR(_readEraIndex_V10(c, &m->era)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_rebond_V10( + parser_context_t* c, pd_staking_rebond_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_session_set_keys_V10( + parser_context_t* c, pd_session_set_keys_V10_t* m) +{ + CHECK_ERROR(_readKeys_V10(c, &m->keys)) + CHECK_ERROR(_readBytes(c, &m->proof)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_session_purge_keys_V10( + parser_context_t* c, pd_session_purge_keys_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_utility_batch_V10( + parser_context_t* c, pd_utility_batch_V10_t* m) +{ + CHECK_ERROR(_readVecCall(c, &m->calls)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_utility_batch_all_V10( + parser_context_t* c, pd_utility_batch_all_V10_t* m) +{ + CHECK_ERROR(_readVecCall(c, &m->calls)) + return parser_ok; +} + +#ifdef SUBSTRATE_PARSER_FULL +__Z_INLINE parser_error_t _readMethod_system_fill_block_V10( + parser_context_t* c, pd_system_fill_block_V10_t* m) +{ + CHECK_ERROR(_readPerbill_V10(c, &m->ratio)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_system_remark_V10( + parser_context_t* c, pd_system_remark_V10_t* m) +{ + CHECK_ERROR(_readVecu8(c, &m->remark)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_system_set_heap_pages_V10( + parser_context_t* c, pd_system_set_heap_pages_V10_t* m) +{ + CHECK_ERROR(_readu64(c, &m->pages)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_system_set_code_V10( + parser_context_t* c, pd_system_set_code_V10_t* m) +{ + CHECK_ERROR(_readVecu8(c, &m->code)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_system_set_code_without_checks_V10( + parser_context_t* c, pd_system_set_code_without_checks_V10_t* m) +{ + CHECK_ERROR(_readVecu8(c, &m->code)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_system_remark_with_event_V10( + parser_context_t* c, pd_system_remark_with_event_V10_t* m) +{ + CHECK_ERROR(_readVecu8(c, &m->remark)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_timestamp_set_V10( + parser_context_t* c, pd_timestamp_set_V10_t* m) +{ + CHECK_ERROR(_readCompactu64(c, &m->now)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_indices_claim_V10( + parser_context_t* c, pd_indices_claim_V10_t* m) +{ + CHECK_ERROR(_readAccountIndex_V10(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_indices_transfer_V10( + parser_context_t* c, pd_indices_transfer_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->new_)) + CHECK_ERROR(_readAccountIndex_V10(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_indices_free_V10( + parser_context_t* c, pd_indices_free_V10_t* m) +{ + CHECK_ERROR(_readAccountIndex_V10(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_indices_force_transfer_V10( + parser_context_t* c, pd_indices_force_transfer_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->new_)) + CHECK_ERROR(_readAccountIndex_V10(c, &m->index)) + CHECK_ERROR(_readbool(c, &m->freeze)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_indices_freeze_V10( + parser_context_t* c, pd_indices_freeze_V10_t* m) +{ + CHECK_ERROR(_readAccountIndex_V10(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_balances_set_balance_V10( + parser_context_t* c, pd_balances_set_balance_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->who)) + CHECK_ERROR(_readCompactBalance(c, &m->new_free)) + CHECK_ERROR(_readCompactBalance(c, &m->new_reserved)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_balances_force_unreserve_V10( + parser_context_t* c, pd_balances_force_unreserve_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->who)) + CHECK_ERROR(_readBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_set_validator_count_V10( + parser_context_t* c, pd_staking_set_validator_count_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_increase_validator_count_V10( + parser_context_t* c, pd_staking_increase_validator_count_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->additional)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_force_no_eras_V10( + parser_context_t* c, pd_staking_force_no_eras_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_force_new_era_V10( + parser_context_t* c, pd_staking_force_new_era_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_force_unstake_V10( + parser_context_t* c, pd_staking_force_unstake_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->stash)) + CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_force_new_era_always_V10( + parser_context_t* c, pd_staking_force_new_era_always_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_set_history_depth_V10( + parser_context_t* c, pd_staking_set_history_depth_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->new_history_depth)) + CHECK_ERROR(_readCompactu32(c, &m->era_items_deleted)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_reap_stash_V10( + parser_context_t* c, pd_staking_reap_stash_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->stash)) + CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_kick_V10( + parser_context_t* c, pd_staking_kick_V10_t* m) +{ + CHECK_ERROR(_readVecLookupasStaticLookupSource_V10(c, &m->who)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_chill_other_V10( + parser_context_t* c, pd_staking_chill_other_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->controller)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_staking_force_apply_min_commission_V10( + parser_context_t* c, pd_staking_force_apply_min_commission_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->validator_stash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_grandpa_note_stalled_V10( + parser_context_t* c, pd_grandpa_note_stalled_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->delay)) + CHECK_ERROR(_readBlockNumber(c, &m->best_finalized_block_number)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_second_V10( + parser_context_t* c, pd_democracy_second_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->proposal)) + CHECK_ERROR(_readCompactu32(c, &m->seconds_upper_bound)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_emergency_cancel_V10( + parser_context_t* c, pd_democracy_emergency_cancel_V10_t* m) +{ + CHECK_ERROR(_readReferendumIndex_V10(c, &m->ref_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_cancel_referendum_V10( + parser_context_t* c, pd_democracy_cancel_referendum_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->ref_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_cancel_queued_V10( + parser_context_t* c, pd_democracy_cancel_queued_V10_t* m) +{ + CHECK_ERROR(_readReferendumIndex_V10(c, &m->which)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_undelegate_V10( + parser_context_t* c, pd_democracy_undelegate_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_clear_public_proposals_V10( + parser_context_t* c, pd_democracy_clear_public_proposals_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_note_preimage_V10( + parser_context_t* c, pd_democracy_note_preimage_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_note_preimage_operational_V10( + parser_context_t* c, pd_democracy_note_preimage_operational_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_note_imminent_preimage_V10( + parser_context_t* c, pd_democracy_note_imminent_preimage_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_note_imminent_preimage_operational_V10( + parser_context_t* c, pd_democracy_note_imminent_preimage_operational_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->encoded_proposal)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_remove_vote_V10( + parser_context_t* c, pd_democracy_remove_vote_V10_t* m) +{ + CHECK_ERROR(_readReferendumIndex_V10(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_democracy_cancel_proposal_V10( + parser_context_t* c, pd_democracy_cancel_proposal_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->prop_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_council_vote_V10( + parser_context_t* c, pd_council_vote_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->proposal)) + CHECK_ERROR(_readCompactu32(c, &m->index)) + CHECK_ERROR(_readbool(c, &m->approve)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_council_close_V10( + parser_context_t* c, pd_council_close_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->proposal_hash)) + CHECK_ERROR(_readCompactu32(c, &m->index)) + CHECK_ERROR(_readCompactu64(c, &m->proposal_weight_bound)) + CHECK_ERROR(_readCompactu32(c, &m->length_bound)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_council_disapprove_proposal_V10( + parser_context_t* c, pd_council_disapprove_proposal_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->proposal_hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalcommittee_disapprove_proposal_V10( + parser_context_t* c, pd_technicalcommittee_disapprove_proposal_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->proposal_hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_phragmenelection_remove_voter_V10( + parser_context_t* c, pd_phragmenelection_remove_voter_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_phragmenelection_submit_candidacy_V10( + parser_context_t* c, pd_phragmenelection_submit_candidacy_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->candidate_count)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_phragmenelection_remove_member_V10( + parser_context_t* c, pd_phragmenelection_remove_member_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->who)) + CHECK_ERROR(_readbool(c, &m->has_replacement)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_phragmenelection_clean_defunct_voters_V10( + parser_context_t* c, pd_phragmenelection_clean_defunct_voters_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->num_voters)) + CHECK_ERROR(_readu32(c, &m->num_defunct)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_add_member_V10( + parser_context_t* c, pd_technicalmembership_add_member_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_remove_member_V10( + parser_context_t* c, pd_technicalmembership_remove_member_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_swap_member_V10( + parser_context_t* c, pd_technicalmembership_swap_member_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->remove)) + CHECK_ERROR(_readAccountId_V10(c, &m->add)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_reset_members_V10( + parser_context_t* c, pd_technicalmembership_reset_members_V10_t* m) +{ + CHECK_ERROR(_readVecAccountId_V10(c, &m->members)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_change_key_V10( + parser_context_t* c, pd_technicalmembership_change_key_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_set_prime_V10( + parser_context_t* c, pd_technicalmembership_set_prime_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_technicalmembership_clear_prime_V10( + parser_context_t* c, pd_technicalmembership_clear_prime_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_treasury_propose_spend_V10( + parser_context_t* c, pd_treasury_propose_spend_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->beneficiary)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_treasury_reject_proposal_V10( + parser_context_t* c, pd_treasury_reject_proposal_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->proposal_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_treasury_approve_proposal_V10( + parser_context_t* c, pd_treasury_approve_proposal_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->proposal_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_claims_claim_V10( + parser_context_t* c, pd_claims_claim_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->dest)) + CHECK_ERROR(_readEcdsaSignature_V10(c, &m->ethereum_signature)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_claims_claim_attest_V10( + parser_context_t* c, pd_claims_claim_attest_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->dest)) + CHECK_ERROR(_readEcdsaSignature_V10(c, &m->ethereum_signature)) + CHECK_ERROR(_readBytes(c, &m->statement)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_claims_attest_V10( + parser_context_t* c, pd_claims_attest_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->statement)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_claims_move_claim_V10( + parser_context_t* c, pd_claims_move_claim_V10_t* m) +{ + CHECK_ERROR(_readEthereumAddress_V10(c, &m->old)) + CHECK_ERROR(_readEthereumAddress_V10(c, &m->new_)) + CHECK_ERROR(_readOptionAccountId_V10(c, &m->maybe_preclaim)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_add_registrar_V10( + parser_context_t* c, pd_identity_add_registrar_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->account)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_clear_identity_V10( + parser_context_t* c, pd_identity_clear_identity_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_request_judgement_V10( + parser_context_t* c, pd_identity_request_judgement_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->reg_index)) + CHECK_ERROR(_readCompactu128(c, &m->max_fee)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_cancel_request_V10( + parser_context_t* c, pd_identity_cancel_request_V10_t* m) +{ + CHECK_ERROR(_readRegistrarIndex_V10(c, &m->reg_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_set_fee_V10( + parser_context_t* c, pd_identity_set_fee_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->index)) + CHECK_ERROR(_readCompactu128(c, &m->fee)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_set_account_id_V10( + parser_context_t* c, pd_identity_set_account_id_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->index)) + CHECK_ERROR(_readAccountId_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_kill_identity_V10( + parser_context_t* c, pd_identity_kill_identity_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->target)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_remove_sub_V10( + parser_context_t* c, pd_identity_remove_sub_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->sub)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_identity_quit_sub_V10( + parser_context_t* c, pd_identity_quit_sub_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_bid_V10( + parser_context_t* c, pd_society_bid_V10_t* m) +{ + CHECK_ERROR(_readBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_unbid_V10( + parser_context_t* c, pd_society_unbid_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->pos)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_vouch_V10( + parser_context_t* c, pd_society_vouch_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + CHECK_ERROR(_readBalance(c, &m->amount)) + CHECK_ERROR(_readBalance(c, &m->tip)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_unvouch_V10( + parser_context_t* c, pd_society_unvouch_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->pos)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_vote_V10( + parser_context_t* c, pd_society_vote_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->candidate)) + CHECK_ERROR(_readbool(c, &m->approve)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_defender_vote_V10( + parser_context_t* c, pd_society_defender_vote_V10_t* m) +{ + CHECK_ERROR(_readbool(c, &m->approve)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_payout_V10( + parser_context_t* c, pd_society_payout_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_found_V10( + parser_context_t* c, pd_society_found_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->founder)) + CHECK_ERROR(_readu32(c, &m->max_members)) + CHECK_ERROR(_readBytes(c, &m->rules)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_unfound_V10( + parser_context_t* c, pd_society_unfound_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_judge_suspended_member_V10( + parser_context_t* c, pd_society_judge_suspended_member_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + CHECK_ERROR(_readbool(c, &m->forgive)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_society_set_max_members_V10( + parser_context_t* c, pd_society_set_max_members_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->max)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_set_recovered_V10( + parser_context_t* c, pd_recovery_set_recovered_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->lost)) + CHECK_ERROR(_readAccountId_V10(c, &m->rescuer)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_initiate_recovery_V10( + parser_context_t* c, pd_recovery_initiate_recovery_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->account)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_vouch_recovery_V10( + parser_context_t* c, pd_recovery_vouch_recovery_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->lost)) + CHECK_ERROR(_readAccountId_V10(c, &m->rescuer)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_claim_recovery_V10( + parser_context_t* c, pd_recovery_claim_recovery_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->account)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_close_recovery_V10( + parser_context_t* c, pd_recovery_close_recovery_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->rescuer)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_remove_recovery_V10( + parser_context_t* c, pd_recovery_remove_recovery_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_recovery_cancel_recovered_V10( + parser_context_t* c, pd_recovery_cancel_recovered_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->account)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_vesting_vest_V10( + parser_context_t* c, pd_vesting_vest_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_vesting_vest_other_V10( + parser_context_t* c, pd_vesting_vest_other_V10_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->target)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_vesting_merge_schedules_V10( + parser_context_t* c, pd_vesting_merge_schedules_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->schedule1_index)) + CHECK_ERROR(_readu32(c, &m->schedule2_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_proxy_V10( + parser_context_t* c, pd_proxy_proxy_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->real)) + CHECK_ERROR(_readOptionProxyType_V10(c, &m->force_proxy_type)) + CHECK_ERROR(_readCall(c, &m->call)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_add_proxy_V10( + parser_context_t* c, pd_proxy_add_proxy_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->delegate)) + CHECK_ERROR(_readProxyType_V10(c, &m->proxy_type)) + CHECK_ERROR(_readBlockNumber(c, &m->delay)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_remove_proxy_V10( + parser_context_t* c, pd_proxy_remove_proxy_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->delegate)) + CHECK_ERROR(_readProxyType_V10(c, &m->proxy_type)) + CHECK_ERROR(_readBlockNumber(c, &m->delay)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_remove_proxies_V10( + parser_context_t* c, pd_proxy_remove_proxies_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_anonymous_V10( + parser_context_t* c, pd_proxy_anonymous_V10_t* m) +{ + CHECK_ERROR(_readProxyType_V10(c, &m->proxy_type)) + CHECK_ERROR(_readBlockNumber(c, &m->delay)) + CHECK_ERROR(_readu16(c, &m->index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_kill_anonymous_V10( + parser_context_t* c, pd_proxy_kill_anonymous_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->spawner)) + CHECK_ERROR(_readProxyType_V10(c, &m->proxy_type)) + CHECK_ERROR(_readu16(c, &m->index)) + CHECK_ERROR(_readCompactu32(c, &m->height)) + CHECK_ERROR(_readCompactu32(c, &m->ext_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_proxy_proxy_announced_V10( + parser_context_t* c, pd_proxy_proxy_announced_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->delegate)) + CHECK_ERROR(_readAccountId_V10(c, &m->real)) + CHECK_ERROR(_readOptionProxyType_V10(c, &m->force_proxy_type)) + CHECK_ERROR(_readCall(c, &m->call)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_multisig_as_multi_threshold_1_V10( + parser_context_t* c, pd_multisig_as_multi_threshold_1_V10_t* m) +{ + CHECK_ERROR(_readVecAccountId_V10(c, &m->other_signatories)) + CHECK_ERROR(_readCall(c, &m->call)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_multisig_as_multi_V10( + parser_context_t* c, pd_multisig_as_multi_V10_t* m) +{ + CHECK_ERROR(_readu16(c, &m->threshold)) + CHECK_ERROR(_readVecAccountId_V10(c, &m->other_signatories)) + CHECK_ERROR(_readOptionTimepoint_V10(c, &m->maybe_timepoint)) + CHECK_ERROR(_readOpaqueCall_V10(c, &m->call)) + CHECK_ERROR(_readbool(c, &m->store_call)) + CHECK_ERROR(_readWeight_V10(c, &m->max_weight)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_multisig_approve_as_multi_V10( + parser_context_t* c, pd_multisig_approve_as_multi_V10_t* m) +{ + CHECK_ERROR(_readu16(c, &m->threshold)) + CHECK_ERROR(_readVecAccountId_V10(c, &m->other_signatories)) + CHECK_ERROR(_readOptionTimepoint_V10(c, &m->maybe_timepoint)) + CHECK_ERROR(_readH256(c, &m->call_hash)) + CHECK_ERROR(_readWeight_V10(c, &m->max_weight)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_multisig_cancel_as_multi_V10( + parser_context_t* c, pd_multisig_cancel_as_multi_V10_t* m) +{ + CHECK_ERROR(_readu16(c, &m->threshold)) + CHECK_ERROR(_readVecAccountId_V10(c, &m->other_signatories)) + CHECK_ERROR(_readTimepoint_V10(c, &m->timepoint)) + CHECK_ERROR(_readH256(c, &m->call_hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_preimage_note_preimage_V10( + parser_context_t* c, pd_preimage_note_preimage_V10_t* m) +{ + CHECK_ERROR(_readVecu8(c, &m->bytes)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_preimage_unnote_preimage_V10( + parser_context_t* c, pd_preimage_unnote_preimage_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_preimage_request_preimage_V10( + parser_context_t* c, pd_preimage_request_preimage_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_preimage_unrequest_preimage_V10( + parser_context_t* c, pd_preimage_unrequest_preimage_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_propose_bounty_V10( + parser_context_t* c, pd_bounties_propose_bounty_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + CHECK_ERROR(_readBytes(c, &m->description)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_approve_bounty_V10( + parser_context_t* c, pd_bounties_approve_bounty_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_propose_curator_V10( + parser_context_t* c, pd_bounties_propose_curator_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->curator)) + CHECK_ERROR(_readCompactBalance(c, &m->fee)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_unassign_curator_V10( + parser_context_t* c, pd_bounties_unassign_curator_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_accept_curator_V10( + parser_context_t* c, pd_bounties_accept_curator_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_award_bounty_V10( + parser_context_t* c, pd_bounties_award_bounty_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->beneficiary)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_claim_bounty_V10( + parser_context_t* c, pd_bounties_claim_bounty_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_close_bounty_V10( + parser_context_t* c, pd_bounties_close_bounty_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bounties_extend_bounty_expiry_V10( + parser_context_t* c, pd_bounties_extend_bounty_expiry_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->bounty_id)) + CHECK_ERROR(_readBytes(c, &m->remark)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_report_awesome_V10( + parser_context_t* c, pd_tips_report_awesome_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->reason)) + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_retract_tip_V10( + parser_context_t* c, pd_tips_retract_tip_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_tip_new_V10( + parser_context_t* c, pd_tips_tip_new_V10_t* m) +{ + CHECK_ERROR(_readBytes(c, &m->reason)) + CHECK_ERROR(_readAccountId_V10(c, &m->who)) + CHECK_ERROR(_readCompactu128(c, &m->tip_value)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_tip_V10( + parser_context_t* c, pd_tips_tip_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + CHECK_ERROR(_readCompactu128(c, &m->tip_value)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_close_tip_V10( + parser_context_t* c, pd_tips_close_tip_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_tips_slash_tip_V10( + parser_context_t* c, pd_tips_slash_tip_V10_t* m) +{ + CHECK_ERROR(_readHash(c, &m->hash)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_governance_fallback_V10( + parser_context_t* c, pd_electionprovidermultiphase_governance_fallback_V10_t* m) +{ + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_voters)) + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_targets)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_gilt_place_bid_V10( + parser_context_t* c, pd_gilt_place_bid_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + CHECK_ERROR(_readu32(c, &m->duration)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_gilt_retract_bid_V10( + parser_context_t* c, pd_gilt_retract_bid_V10_t* m) +{ + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + CHECK_ERROR(_readu32(c, &m->duration)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bagslist_rebag_V10( + parser_context_t* c, pd_bagslist_rebag_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->dislocated)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_bagslist_put_in_front_of_V10( + parser_context_t* c, pd_bagslist_put_in_front_of_V10_t* m) +{ + CHECK_ERROR(_readAccountId_V10(c, &m->lighter)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_validation_upgrade_cooldown_V10( + parser_context_t* c, pd_configuration_set_validation_upgrade_cooldown_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_validation_upgrade_delay_V10( + parser_context_t* c, pd_configuration_set_validation_upgrade_delay_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_code_retention_period_V10( + parser_context_t* c, pd_configuration_set_code_retention_period_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_code_size_V10( + parser_context_t* c, pd_configuration_set_max_code_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_pov_size_V10( + parser_context_t* c, pd_configuration_set_max_pov_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_head_data_size_V10( + parser_context_t* c, pd_configuration_set_max_head_data_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_parathread_cores_V10( + parser_context_t* c, pd_configuration_set_parathread_cores_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_parathread_retries_V10( + parser_context_t* c, pd_configuration_set_parathread_retries_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_group_rotation_frequency_V10( + parser_context_t* c, pd_configuration_set_group_rotation_frequency_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_chain_availability_period_V10( + parser_context_t* c, pd_configuration_set_chain_availability_period_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_thread_availability_period_V10( + parser_context_t* c, pd_configuration_set_thread_availability_period_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_scheduling_lookahead_V10( + parser_context_t* c, pd_configuration_set_scheduling_lookahead_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_validators_per_core_V10( + parser_context_t* c, pd_configuration_set_max_validators_per_core_V10_t* m) +{ + CHECK_ERROR(_readOptionu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_validators_V10( + parser_context_t* c, pd_configuration_set_max_validators_V10_t* m) +{ + CHECK_ERROR(_readOptionu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_period_V10( + parser_context_t* c, pd_configuration_set_dispute_period_V10_t* m) +{ + CHECK_ERROR(_readSessionIndex_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_post_conclusion_acceptance_period_V10( + parser_context_t* c, pd_configuration_set_dispute_post_conclusion_acceptance_period_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_max_spam_slots_V10( + parser_context_t* c, pd_configuration_set_dispute_max_spam_slots_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_dispute_conclusion_by_time_out_period_V10( + parser_context_t* c, pd_configuration_set_dispute_conclusion_by_time_out_period_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_no_show_slots_V10( + parser_context_t* c, pd_configuration_set_no_show_slots_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_n_delay_tranches_V10( + parser_context_t* c, pd_configuration_set_n_delay_tranches_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_zeroth_delay_tranche_width_V10( + parser_context_t* c, pd_configuration_set_zeroth_delay_tranche_width_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_needed_approvals_V10( + parser_context_t* c, pd_configuration_set_needed_approvals_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_relay_vrf_modulo_samples_V10( + parser_context_t* c, pd_configuration_set_relay_vrf_modulo_samples_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_queue_count_V10( + parser_context_t* c, pd_configuration_set_max_upward_queue_count_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_queue_size_V10( + parser_context_t* c, pd_configuration_set_max_upward_queue_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_downward_message_size_V10( + parser_context_t* c, pd_configuration_set_max_downward_message_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_ump_service_total_weight_V10( + parser_context_t* c, pd_configuration_set_ump_service_total_weight_V10_t* m) +{ + CHECK_ERROR(_readWeight_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_message_size_V10( + parser_context_t* c, pd_configuration_set_max_upward_message_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_max_upward_message_num_per_candidate_V10( + parser_context_t* c, pd_configuration_set_max_upward_message_num_per_candidate_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_open_request_ttl_V10( + parser_context_t* c, pd_configuration_set_hrmp_open_request_ttl_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_sender_deposit_V10( + parser_context_t* c, pd_configuration_set_hrmp_sender_deposit_V10_t* m) +{ + CHECK_ERROR(_readBalance(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_recipient_deposit_V10( + parser_context_t* c, pd_configuration_set_hrmp_recipient_deposit_V10_t* m) +{ + CHECK_ERROR(_readBalance(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_capacity_V10( + parser_context_t* c, pd_configuration_set_hrmp_channel_max_capacity_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_total_size_V10( + parser_context_t* c, pd_configuration_set_hrmp_channel_max_total_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parachain_inbound_channels_V10( + parser_context_t* c, pd_configuration_set_hrmp_max_parachain_inbound_channels_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parathread_inbound_channels_V10( + parser_context_t* c, pd_configuration_set_hrmp_max_parathread_inbound_channels_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_channel_max_message_size_V10( + parser_context_t* c, pd_configuration_set_hrmp_channel_max_message_size_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parachain_outbound_channels_V10( + parser_context_t* c, pd_configuration_set_hrmp_max_parachain_outbound_channels_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_parathread_outbound_channels_V10( + parser_context_t* c, pd_configuration_set_hrmp_max_parathread_outbound_channels_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_hrmp_max_message_num_per_candidate_V10( + parser_context_t* c, pd_configuration_set_hrmp_max_message_num_per_candidate_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_ump_max_individual_weight_V10( + parser_context_t* c, pd_configuration_set_ump_max_individual_weight_V10_t* m) +{ + CHECK_ERROR(_readWeight_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_pvf_checking_enabled_V10( + parser_context_t* c, pd_configuration_set_pvf_checking_enabled_V10_t* m) +{ + CHECK_ERROR(_readbool(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_pvf_voting_ttl_V10( + parser_context_t* c, pd_configuration_set_pvf_voting_ttl_V10_t* m) +{ + CHECK_ERROR(_readSessionIndex_V10(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_minimum_validation_upgrade_delay_V10( + parser_context_t* c, pd_configuration_set_minimum_validation_upgrade_delay_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_configuration_set_bypass_consistency_check_V10( + parser_context_t* c, pd_configuration_set_bypass_consistency_check_V10_t* m) +{ + CHECK_ERROR(_readbool(c, &m->new_)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_initializer_force_approve_V10( + parser_context_t* c, pd_initializer_force_approve_V10_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->up_to)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_hrmp_force_process_hrmp_open_V10( + parser_context_t* c, pd_hrmp_force_process_hrmp_open_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->channels)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_hrmp_force_process_hrmp_close_V10( + parser_context_t* c, pd_hrmp_force_process_hrmp_close_V10_t* m) +{ + CHECK_ERROR(_readu32(c, &m->channels)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_parasdisputes_force_unfreeze_V10( + parser_context_t* c, pd_parasdisputes_force_unfreeze_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_registrar_reserve_V10( + parser_context_t* c, pd_registrar_reserve_V10_t* m) +{ + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_auctions_new_auction_V10( + parser_context_t* c, pd_auctions_new_auction_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->duration)) + CHECK_ERROR(_readCompactu32(c, &m->lease_period_index)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_auctions_bid_V10( + parser_context_t* c, pd_auctions_bid_V10_t* m) +{ + CHECK_ERROR(_readCompactu32(c, &m->para)) + CHECK_ERROR(_readCompactu32(c, &m->auction_index)) + CHECK_ERROR(_readCompactu32(c, &m->first_slot)) + CHECK_ERROR(_readCompactu32(c, &m->last_slot)) + CHECK_ERROR(_readCompactBalance(c, &m->amount)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_auctions_cancel_auction_V10( + parser_context_t* c, pd_auctions_cancel_auction_V10_t* m) +{ + return parser_ok; +} + +#endif + +parser_error_t _readMethod_V10( + parser_context_t* c, + uint8_t moduleIdx, + uint8_t callIdx, + pd_Method_V10_t* method) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + + case 1024: /* module 4 call 0 */ + CHECK_ERROR(_readMethod_balances_transfer_V10(c, &method->nested.balances_transfer_V10)) + break; + case 1026: /* module 4 call 2 */ + CHECK_ERROR(_readMethod_balances_force_transfer_V10(c, &method->nested.balances_force_transfer_V10)) + break; + case 1027: /* module 4 call 3 */ + CHECK_ERROR(_readMethod_balances_transfer_keep_alive_V10(c, &method->nested.balances_transfer_keep_alive_V10)) + break; + case 1028: /* module 4 call 4 */ + CHECK_ERROR(_readMethod_balances_transfer_all_V10(c, &method->basic.balances_transfer_all_V10)) + break; + case 1536: /* module 6 call 0 */ + CHECK_ERROR(_readMethod_staking_bond_V10(c, &method->basic.staking_bond_V10)) + break; + case 1537: /* module 6 call 1 */ + CHECK_ERROR(_readMethod_staking_bond_extra_V10(c, &method->basic.staking_bond_extra_V10)) + break; + case 1538: /* module 6 call 2 */ + CHECK_ERROR(_readMethod_staking_unbond_V10(c, &method->basic.staking_unbond_V10)) + break; + case 1539: /* module 6 call 3 */ + CHECK_ERROR(_readMethod_staking_withdraw_unbonded_V10(c, &method->basic.staking_withdraw_unbonded_V10)) + break; + case 1540: /* module 6 call 4 */ + CHECK_ERROR(_readMethod_staking_validate_V10(c, &method->basic.staking_validate_V10)) + break; + case 1541: /* module 6 call 5 */ + CHECK_ERROR(_readMethod_staking_nominate_V10(c, &method->basic.staking_nominate_V10)) + break; + case 1542: /* module 6 call 6 */ + CHECK_ERROR(_readMethod_staking_chill_V10(c, &method->basic.staking_chill_V10)) + break; + case 1543: /* module 6 call 7 */ + CHECK_ERROR(_readMethod_staking_set_payee_V10(c, &method->basic.staking_set_payee_V10)) + break; + case 1544: /* module 6 call 8 */ + CHECK_ERROR(_readMethod_staking_set_controller_V10(c, &method->basic.staking_set_controller_V10)) + break; + case 1554: /* module 6 call 18 */ + CHECK_ERROR(_readMethod_staking_payout_stakers_V10(c, &method->basic.staking_payout_stakers_V10)) + break; + case 1555: /* module 6 call 19 */ + CHECK_ERROR(_readMethod_staking_rebond_V10(c, &method->basic.staking_rebond_V10)) + break; + case 2048: /* module 8 call 0 */ + CHECK_ERROR(_readMethod_session_set_keys_V10(c, &method->basic.session_set_keys_V10)) + break; + case 2049: /* module 8 call 1 */ + CHECK_ERROR(_readMethod_session_purge_keys_V10(c, &method->basic.session_purge_keys_V10)) + break; + case 6144: /* module 24 call 0 */ + CHECK_ERROR(_readMethod_utility_batch_V10(c, &method->basic.utility_batch_V10)) + break; + case 6146: /* module 24 call 2 */ + CHECK_ERROR(_readMethod_utility_batch_all_V10(c, &method->basic.utility_batch_all_V10)) + break; + +#ifdef SUBSTRATE_PARSER_FULL + case 0: /* module 0 call 0 */ + CHECK_ERROR(_readMethod_system_fill_block_V10(c, &method->nested.system_fill_block_V10)) + break; + case 1: /* module 0 call 1 */ + CHECK_ERROR(_readMethod_system_remark_V10(c, &method->nested.system_remark_V10)) + break; + case 2: /* module 0 call 2 */ + CHECK_ERROR(_readMethod_system_set_heap_pages_V10(c, &method->nested.system_set_heap_pages_V10)) + break; + case 3: /* module 0 call 3 */ + CHECK_ERROR(_readMethod_system_set_code_V10(c, &method->nested.system_set_code_V10)) + break; + case 4: /* module 0 call 4 */ + CHECK_ERROR(_readMethod_system_set_code_without_checks_V10(c, &method->nested.system_set_code_without_checks_V10)) + break; + case 8: /* module 0 call 8 */ + CHECK_ERROR(_readMethod_system_remark_with_event_V10(c, &method->nested.system_remark_with_event_V10)) + break; + case 512: /* module 2 call 0 */ + CHECK_ERROR(_readMethod_timestamp_set_V10(c, &method->basic.timestamp_set_V10)) + break; + case 768: /* module 3 call 0 */ + CHECK_ERROR(_readMethod_indices_claim_V10(c, &method->basic.indices_claim_V10)) + break; + case 769: /* module 3 call 1 */ + CHECK_ERROR(_readMethod_indices_transfer_V10(c, &method->basic.indices_transfer_V10)) + break; + case 770: /* module 3 call 2 */ + CHECK_ERROR(_readMethod_indices_free_V10(c, &method->basic.indices_free_V10)) + break; + case 771: /* module 3 call 3 */ + CHECK_ERROR(_readMethod_indices_force_transfer_V10(c, &method->basic.indices_force_transfer_V10)) + break; + case 772: /* module 3 call 4 */ + CHECK_ERROR(_readMethod_indices_freeze_V10(c, &method->basic.indices_freeze_V10)) + break; + case 1025: /* module 4 call 1 */ + CHECK_ERROR(_readMethod_balances_set_balance_V10(c, &method->nested.balances_set_balance_V10)) + break; + case 1029: /* module 4 call 5 */ + CHECK_ERROR(_readMethod_balances_force_unreserve_V10(c, &method->basic.balances_force_unreserve_V10)) + break; + case 1545: /* module 6 call 9 */ + CHECK_ERROR(_readMethod_staking_set_validator_count_V10(c, &method->basic.staking_set_validator_count_V10)) + break; + case 1546: /* module 6 call 10 */ + CHECK_ERROR(_readMethod_staking_increase_validator_count_V10(c, &method->basic.staking_increase_validator_count_V10)) + break; + case 1548: /* module 6 call 12 */ + CHECK_ERROR(_readMethod_staking_force_no_eras_V10(c, &method->basic.staking_force_no_eras_V10)) + break; + case 1549: /* module 6 call 13 */ + CHECK_ERROR(_readMethod_staking_force_new_era_V10(c, &method->basic.staking_force_new_era_V10)) + break; + case 1551: /* module 6 call 15 */ + CHECK_ERROR(_readMethod_staking_force_unstake_V10(c, &method->basic.staking_force_unstake_V10)) + break; + case 1552: /* module 6 call 16 */ + CHECK_ERROR(_readMethod_staking_force_new_era_always_V10(c, &method->basic.staking_force_new_era_always_V10)) + break; + case 1556: /* module 6 call 20 */ + CHECK_ERROR(_readMethod_staking_set_history_depth_V10(c, &method->basic.staking_set_history_depth_V10)) + break; + case 1557: /* module 6 call 21 */ + CHECK_ERROR(_readMethod_staking_reap_stash_V10(c, &method->basic.staking_reap_stash_V10)) + break; + case 1558: /* module 6 call 22 */ + CHECK_ERROR(_readMethod_staking_kick_V10(c, &method->basic.staking_kick_V10)) + break; + case 1560: /* module 6 call 24 */ + CHECK_ERROR(_readMethod_staking_chill_other_V10(c, &method->basic.staking_chill_other_V10)) + break; + case 1561: /* module 6 call 25 */ + CHECK_ERROR(_readMethod_staking_force_apply_min_commission_V10(c, &method->basic.staking_force_apply_min_commission_V10)) + break; + case 2562: /* module 10 call 2 */ + CHECK_ERROR(_readMethod_grandpa_note_stalled_V10(c, &method->basic.grandpa_note_stalled_V10)) + break; + case 3329: /* module 13 call 1 */ + CHECK_ERROR(_readMethod_democracy_second_V10(c, &method->basic.democracy_second_V10)) + break; + case 3331: /* module 13 call 3 */ + CHECK_ERROR(_readMethod_democracy_emergency_cancel_V10(c, &method->basic.democracy_emergency_cancel_V10)) + break; + case 3337: /* module 13 call 9 */ + CHECK_ERROR(_readMethod_democracy_cancel_referendum_V10(c, &method->basic.democracy_cancel_referendum_V10)) + break; + case 3338: /* module 13 call 10 */ + CHECK_ERROR(_readMethod_democracy_cancel_queued_V10(c, &method->basic.democracy_cancel_queued_V10)) + break; + case 3340: /* module 13 call 12 */ + CHECK_ERROR(_readMethod_democracy_undelegate_V10(c, &method->basic.democracy_undelegate_V10)) + break; + case 3341: /* module 13 call 13 */ + CHECK_ERROR(_readMethod_democracy_clear_public_proposals_V10(c, &method->basic.democracy_clear_public_proposals_V10)) + break; + case 3342: /* module 13 call 14 */ + CHECK_ERROR(_readMethod_democracy_note_preimage_V10(c, &method->basic.democracy_note_preimage_V10)) + break; + case 3343: /* module 13 call 15 */ + CHECK_ERROR(_readMethod_democracy_note_preimage_operational_V10(c, &method->basic.democracy_note_preimage_operational_V10)) + break; + case 3344: /* module 13 call 16 */ + CHECK_ERROR(_readMethod_democracy_note_imminent_preimage_V10(c, &method->basic.democracy_note_imminent_preimage_V10)) + break; + case 3345: /* module 13 call 17 */ + CHECK_ERROR(_readMethod_democracy_note_imminent_preimage_operational_V10(c, &method->basic.democracy_note_imminent_preimage_operational_V10)) + break; + case 3348: /* module 13 call 20 */ + CHECK_ERROR(_readMethod_democracy_remove_vote_V10(c, &method->basic.democracy_remove_vote_V10)) + break; + case 3352: /* module 13 call 24 */ + CHECK_ERROR(_readMethod_democracy_cancel_proposal_V10(c, &method->basic.democracy_cancel_proposal_V10)) + break; + case 3587: /* module 14 call 3 */ + CHECK_ERROR(_readMethod_council_vote_V10(c, &method->basic.council_vote_V10)) + break; + case 3588: /* module 14 call 4 */ + CHECK_ERROR(_readMethod_council_close_V10(c, &method->basic.council_close_V10)) + break; + case 3589: /* module 14 call 5 */ + CHECK_ERROR(_readMethod_council_disapprove_proposal_V10(c, &method->basic.council_disapprove_proposal_V10)) + break; + case 3845: /* module 15 call 5 */ + CHECK_ERROR(_readMethod_technicalcommittee_disapprove_proposal_V10(c, &method->basic.technicalcommittee_disapprove_proposal_V10)) + break; + case 4097: /* module 16 call 1 */ + CHECK_ERROR(_readMethod_phragmenelection_remove_voter_V10(c, &method->basic.phragmenelection_remove_voter_V10)) + break; + case 4098: /* module 16 call 2 */ + CHECK_ERROR(_readMethod_phragmenelection_submit_candidacy_V10(c, &method->basic.phragmenelection_submit_candidacy_V10)) + break; + case 4100: /* module 16 call 4 */ + CHECK_ERROR(_readMethod_phragmenelection_remove_member_V10(c, &method->basic.phragmenelection_remove_member_V10)) + break; + case 4101: /* module 16 call 5 */ + CHECK_ERROR(_readMethod_phragmenelection_clean_defunct_voters_V10(c, &method->basic.phragmenelection_clean_defunct_voters_V10)) + break; + case 4352: /* module 17 call 0 */ + CHECK_ERROR(_readMethod_technicalmembership_add_member_V10(c, &method->basic.technicalmembership_add_member_V10)) + break; + case 4353: /* module 17 call 1 */ + CHECK_ERROR(_readMethod_technicalmembership_remove_member_V10(c, &method->basic.technicalmembership_remove_member_V10)) + break; + case 4354: /* module 17 call 2 */ + CHECK_ERROR(_readMethod_technicalmembership_swap_member_V10(c, &method->basic.technicalmembership_swap_member_V10)) + break; + case 4355: /* module 17 call 3 */ + CHECK_ERROR(_readMethod_technicalmembership_reset_members_V10(c, &method->basic.technicalmembership_reset_members_V10)) + break; + case 4356: /* module 17 call 4 */ + CHECK_ERROR(_readMethod_technicalmembership_change_key_V10(c, &method->basic.technicalmembership_change_key_V10)) + break; + case 4357: /* module 17 call 5 */ + CHECK_ERROR(_readMethod_technicalmembership_set_prime_V10(c, &method->basic.technicalmembership_set_prime_V10)) + break; + case 4358: /* module 17 call 6 */ + CHECK_ERROR(_readMethod_technicalmembership_clear_prime_V10(c, &method->basic.technicalmembership_clear_prime_V10)) + break; + case 4608: /* module 18 call 0 */ + CHECK_ERROR(_readMethod_treasury_propose_spend_V10(c, &method->basic.treasury_propose_spend_V10)) + break; + case 4609: /* module 18 call 1 */ + CHECK_ERROR(_readMethod_treasury_reject_proposal_V10(c, &method->basic.treasury_reject_proposal_V10)) + break; + case 4610: /* module 18 call 2 */ + CHECK_ERROR(_readMethod_treasury_approve_proposal_V10(c, &method->basic.treasury_approve_proposal_V10)) + break; + case 4864: /* module 19 call 0 */ + CHECK_ERROR(_readMethod_claims_claim_V10(c, &method->basic.claims_claim_V10)) + break; + case 4866: /* module 19 call 2 */ + CHECK_ERROR(_readMethod_claims_claim_attest_V10(c, &method->basic.claims_claim_attest_V10)) + break; + case 4867: /* module 19 call 3 */ + CHECK_ERROR(_readMethod_claims_attest_V10(c, &method->basic.claims_attest_V10)) + break; + case 4868: /* module 19 call 4 */ + CHECK_ERROR(_readMethod_claims_move_claim_V10(c, &method->basic.claims_move_claim_V10)) + break; + case 6400: /* module 25 call 0 */ + CHECK_ERROR(_readMethod_identity_add_registrar_V10(c, &method->basic.identity_add_registrar_V10)) + break; + case 6403: /* module 25 call 3 */ + CHECK_ERROR(_readMethod_identity_clear_identity_V10(c, &method->basic.identity_clear_identity_V10)) + break; + case 6404: /* module 25 call 4 */ + CHECK_ERROR(_readMethod_identity_request_judgement_V10(c, &method->basic.identity_request_judgement_V10)) + break; + case 6405: /* module 25 call 5 */ + CHECK_ERROR(_readMethod_identity_cancel_request_V10(c, &method->basic.identity_cancel_request_V10)) + break; + case 6406: /* module 25 call 6 */ + CHECK_ERROR(_readMethod_identity_set_fee_V10(c, &method->basic.identity_set_fee_V10)) + break; + case 6407: /* module 25 call 7 */ + CHECK_ERROR(_readMethod_identity_set_account_id_V10(c, &method->basic.identity_set_account_id_V10)) + break; + case 6410: /* module 25 call 10 */ + CHECK_ERROR(_readMethod_identity_kill_identity_V10(c, &method->basic.identity_kill_identity_V10)) + break; + case 6413: /* module 25 call 13 */ + CHECK_ERROR(_readMethod_identity_remove_sub_V10(c, &method->basic.identity_remove_sub_V10)) + break; + case 6414: /* module 25 call 14 */ + CHECK_ERROR(_readMethod_identity_quit_sub_V10(c, &method->basic.identity_quit_sub_V10)) + break; + case 6656: /* module 26 call 0 */ + CHECK_ERROR(_readMethod_society_bid_V10(c, &method->basic.society_bid_V10)) + break; + case 6657: /* module 26 call 1 */ + CHECK_ERROR(_readMethod_society_unbid_V10(c, &method->basic.society_unbid_V10)) + break; + case 6658: /* module 26 call 2 */ + CHECK_ERROR(_readMethod_society_vouch_V10(c, &method->basic.society_vouch_V10)) + break; + case 6659: /* module 26 call 3 */ + CHECK_ERROR(_readMethod_society_unvouch_V10(c, &method->basic.society_unvouch_V10)) + break; + case 6660: /* module 26 call 4 */ + CHECK_ERROR(_readMethod_society_vote_V10(c, &method->basic.society_vote_V10)) + break; + case 6661: /* module 26 call 5 */ + CHECK_ERROR(_readMethod_society_defender_vote_V10(c, &method->basic.society_defender_vote_V10)) + break; + case 6662: /* module 26 call 6 */ + CHECK_ERROR(_readMethod_society_payout_V10(c, &method->basic.society_payout_V10)) + break; + case 6663: /* module 26 call 7 */ + CHECK_ERROR(_readMethod_society_found_V10(c, &method->basic.society_found_V10)) + break; + case 6664: /* module 26 call 8 */ + CHECK_ERROR(_readMethod_society_unfound_V10(c, &method->basic.society_unfound_V10)) + break; + case 6665: /* module 26 call 9 */ + CHECK_ERROR(_readMethod_society_judge_suspended_member_V10(c, &method->basic.society_judge_suspended_member_V10)) + break; + case 6667: /* module 26 call 11 */ + CHECK_ERROR(_readMethod_society_set_max_members_V10(c, &method->basic.society_set_max_members_V10)) + break; + case 6913: /* module 27 call 1 */ + CHECK_ERROR(_readMethod_recovery_set_recovered_V10(c, &method->basic.recovery_set_recovered_V10)) + break; + case 6915: /* module 27 call 3 */ + CHECK_ERROR(_readMethod_recovery_initiate_recovery_V10(c, &method->basic.recovery_initiate_recovery_V10)) + break; + case 6916: /* module 27 call 4 */ + CHECK_ERROR(_readMethod_recovery_vouch_recovery_V10(c, &method->basic.recovery_vouch_recovery_V10)) + break; + case 6917: /* module 27 call 5 */ + CHECK_ERROR(_readMethod_recovery_claim_recovery_V10(c, &method->basic.recovery_claim_recovery_V10)) + break; + case 6918: /* module 27 call 6 */ + CHECK_ERROR(_readMethod_recovery_close_recovery_V10(c, &method->basic.recovery_close_recovery_V10)) + break; + case 6919: /* module 27 call 7 */ + CHECK_ERROR(_readMethod_recovery_remove_recovery_V10(c, &method->basic.recovery_remove_recovery_V10)) + break; + case 6920: /* module 27 call 8 */ + CHECK_ERROR(_readMethod_recovery_cancel_recovered_V10(c, &method->basic.recovery_cancel_recovered_V10)) + break; + case 7168: /* module 28 call 0 */ + CHECK_ERROR(_readMethod_vesting_vest_V10(c, &method->basic.vesting_vest_V10)) + break; + case 7169: /* module 28 call 1 */ + CHECK_ERROR(_readMethod_vesting_vest_other_V10(c, &method->basic.vesting_vest_other_V10)) + break; + case 7172: /* module 28 call 4 */ + CHECK_ERROR(_readMethod_vesting_merge_schedules_V10(c, &method->basic.vesting_merge_schedules_V10)) + break; + case 7680: /* module 30 call 0 */ + CHECK_ERROR(_readMethod_proxy_proxy_V10(c, &method->nested.proxy_proxy_V10)) + break; + case 7681: /* module 30 call 1 */ + CHECK_ERROR(_readMethod_proxy_add_proxy_V10(c, &method->basic.proxy_add_proxy_V10)) + break; + case 7682: /* module 30 call 2 */ + CHECK_ERROR(_readMethod_proxy_remove_proxy_V10(c, &method->basic.proxy_remove_proxy_V10)) + break; + case 7683: /* module 30 call 3 */ + CHECK_ERROR(_readMethod_proxy_remove_proxies_V10(c, &method->basic.proxy_remove_proxies_V10)) + break; + case 7684: /* module 30 call 4 */ + CHECK_ERROR(_readMethod_proxy_anonymous_V10(c, &method->basic.proxy_anonymous_V10)) + break; + case 7685: /* module 30 call 5 */ + CHECK_ERROR(_readMethod_proxy_kill_anonymous_V10(c, &method->basic.proxy_kill_anonymous_V10)) + break; + case 7689: /* module 30 call 9 */ + CHECK_ERROR(_readMethod_proxy_proxy_announced_V10(c, &method->basic.proxy_proxy_announced_V10)) + break; + case 7936: /* module 31 call 0 */ + CHECK_ERROR(_readMethod_multisig_as_multi_threshold_1_V10(c, &method->nested.multisig_as_multi_threshold_1_V10)) + break; + case 7937: /* module 31 call 1 */ + CHECK_ERROR(_readMethod_multisig_as_multi_V10(c, &method->nested.multisig_as_multi_V10)) + break; + case 7938: /* module 31 call 2 */ + CHECK_ERROR(_readMethod_multisig_approve_as_multi_V10(c, &method->nested.multisig_approve_as_multi_V10)) + break; + case 7939: /* module 31 call 3 */ + CHECK_ERROR(_readMethod_multisig_cancel_as_multi_V10(c, &method->nested.multisig_cancel_as_multi_V10)) + break; + case 8192: /* module 32 call 0 */ + CHECK_ERROR(_readMethod_preimage_note_preimage_V10(c, &method->basic.preimage_note_preimage_V10)) + break; + case 8193: /* module 32 call 1 */ + CHECK_ERROR(_readMethod_preimage_unnote_preimage_V10(c, &method->basic.preimage_unnote_preimage_V10)) + break; + case 8194: /* module 32 call 2 */ + CHECK_ERROR(_readMethod_preimage_request_preimage_V10(c, &method->basic.preimage_request_preimage_V10)) + break; + case 8195: /* module 32 call 3 */ + CHECK_ERROR(_readMethod_preimage_unrequest_preimage_V10(c, &method->basic.preimage_unrequest_preimage_V10)) + break; + case 8960: /* module 35 call 0 */ + CHECK_ERROR(_readMethod_bounties_propose_bounty_V10(c, &method->basic.bounties_propose_bounty_V10)) + break; + case 8961: /* module 35 call 1 */ + CHECK_ERROR(_readMethod_bounties_approve_bounty_V10(c, &method->basic.bounties_approve_bounty_V10)) + break; + case 8962: /* module 35 call 2 */ + CHECK_ERROR(_readMethod_bounties_propose_curator_V10(c, &method->basic.bounties_propose_curator_V10)) + break; + case 8963: /* module 35 call 3 */ + CHECK_ERROR(_readMethod_bounties_unassign_curator_V10(c, &method->basic.bounties_unassign_curator_V10)) + break; + case 8964: /* module 35 call 4 */ + CHECK_ERROR(_readMethod_bounties_accept_curator_V10(c, &method->basic.bounties_accept_curator_V10)) + break; + case 8965: /* module 35 call 5 */ + CHECK_ERROR(_readMethod_bounties_award_bounty_V10(c, &method->basic.bounties_award_bounty_V10)) + break; + case 8966: /* module 35 call 6 */ + CHECK_ERROR(_readMethod_bounties_claim_bounty_V10(c, &method->basic.bounties_claim_bounty_V10)) + break; + case 8967: /* module 35 call 7 */ + CHECK_ERROR(_readMethod_bounties_close_bounty_V10(c, &method->basic.bounties_close_bounty_V10)) + break; + case 8968: /* module 35 call 8 */ + CHECK_ERROR(_readMethod_bounties_extend_bounty_expiry_V10(c, &method->basic.bounties_extend_bounty_expiry_V10)) + break; + case 9216: /* module 36 call 0 */ + CHECK_ERROR(_readMethod_tips_report_awesome_V10(c, &method->basic.tips_report_awesome_V10)) + break; + case 9217: /* module 36 call 1 */ + CHECK_ERROR(_readMethod_tips_retract_tip_V10(c, &method->basic.tips_retract_tip_V10)) + break; + case 9218: /* module 36 call 2 */ + CHECK_ERROR(_readMethod_tips_tip_new_V10(c, &method->basic.tips_tip_new_V10)) + break; + case 9219: /* module 36 call 3 */ + CHECK_ERROR(_readMethod_tips_tip_V10(c, &method->basic.tips_tip_V10)) + break; + case 9220: /* module 36 call 4 */ + CHECK_ERROR(_readMethod_tips_close_tip_V10(c, &method->basic.tips_close_tip_V10)) + break; + case 9221: /* module 36 call 5 */ + CHECK_ERROR(_readMethod_tips_slash_tip_V10(c, &method->basic.tips_slash_tip_V10)) + break; + case 9476: /* module 37 call 4 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_governance_fallback_V10(c, &method->basic.electionprovidermultiphase_governance_fallback_V10)) + break; + case 9728: /* module 38 call 0 */ + CHECK_ERROR(_readMethod_gilt_place_bid_V10(c, &method->basic.gilt_place_bid_V10)) + break; + case 9729: /* module 38 call 1 */ + CHECK_ERROR(_readMethod_gilt_retract_bid_V10(c, &method->basic.gilt_retract_bid_V10)) + break; + case 9984: /* module 39 call 0 */ + CHECK_ERROR(_readMethod_bagslist_rebag_V10(c, &method->basic.bagslist_rebag_V10)) + break; + case 9985: /* module 39 call 1 */ + CHECK_ERROR(_readMethod_bagslist_put_in_front_of_V10(c, &method->basic.bagslist_put_in_front_of_V10)) + break; + case 13056: /* module 51 call 0 */ + CHECK_ERROR(_readMethod_configuration_set_validation_upgrade_cooldown_V10(c, &method->basic.configuration_set_validation_upgrade_cooldown_V10)) + break; + case 13057: /* module 51 call 1 */ + CHECK_ERROR(_readMethod_configuration_set_validation_upgrade_delay_V10(c, &method->basic.configuration_set_validation_upgrade_delay_V10)) + break; + case 13058: /* module 51 call 2 */ + CHECK_ERROR(_readMethod_configuration_set_code_retention_period_V10(c, &method->basic.configuration_set_code_retention_period_V10)) + break; + case 13059: /* module 51 call 3 */ + CHECK_ERROR(_readMethod_configuration_set_max_code_size_V10(c, &method->basic.configuration_set_max_code_size_V10)) + break; + case 13060: /* module 51 call 4 */ + CHECK_ERROR(_readMethod_configuration_set_max_pov_size_V10(c, &method->basic.configuration_set_max_pov_size_V10)) + break; + case 13061: /* module 51 call 5 */ + CHECK_ERROR(_readMethod_configuration_set_max_head_data_size_V10(c, &method->basic.configuration_set_max_head_data_size_V10)) + break; + case 13062: /* module 51 call 6 */ + CHECK_ERROR(_readMethod_configuration_set_parathread_cores_V10(c, &method->basic.configuration_set_parathread_cores_V10)) + break; + case 13063: /* module 51 call 7 */ + CHECK_ERROR(_readMethod_configuration_set_parathread_retries_V10(c, &method->basic.configuration_set_parathread_retries_V10)) + break; + case 13064: /* module 51 call 8 */ + CHECK_ERROR(_readMethod_configuration_set_group_rotation_frequency_V10(c, &method->basic.configuration_set_group_rotation_frequency_V10)) + break; + case 13065: /* module 51 call 9 */ + CHECK_ERROR(_readMethod_configuration_set_chain_availability_period_V10(c, &method->basic.configuration_set_chain_availability_period_V10)) + break; + case 13066: /* module 51 call 10 */ + CHECK_ERROR(_readMethod_configuration_set_thread_availability_period_V10(c, &method->basic.configuration_set_thread_availability_period_V10)) + break; + case 13067: /* module 51 call 11 */ + CHECK_ERROR(_readMethod_configuration_set_scheduling_lookahead_V10(c, &method->basic.configuration_set_scheduling_lookahead_V10)) + break; + case 13068: /* module 51 call 12 */ + CHECK_ERROR(_readMethod_configuration_set_max_validators_per_core_V10(c, &method->basic.configuration_set_max_validators_per_core_V10)) + break; + case 13069: /* module 51 call 13 */ + CHECK_ERROR(_readMethod_configuration_set_max_validators_V10(c, &method->basic.configuration_set_max_validators_V10)) + break; + case 13070: /* module 51 call 14 */ + CHECK_ERROR(_readMethod_configuration_set_dispute_period_V10(c, &method->basic.configuration_set_dispute_period_V10)) + break; + case 13071: /* module 51 call 15 */ + CHECK_ERROR(_readMethod_configuration_set_dispute_post_conclusion_acceptance_period_V10(c, &method->basic.configuration_set_dispute_post_conclusion_acceptance_period_V10)) + break; + case 13072: /* module 51 call 16 */ + CHECK_ERROR(_readMethod_configuration_set_dispute_max_spam_slots_V10(c, &method->basic.configuration_set_dispute_max_spam_slots_V10)) + break; + case 13073: /* module 51 call 17 */ + CHECK_ERROR(_readMethod_configuration_set_dispute_conclusion_by_time_out_period_V10(c, &method->basic.configuration_set_dispute_conclusion_by_time_out_period_V10)) + break; + case 13074: /* module 51 call 18 */ + CHECK_ERROR(_readMethod_configuration_set_no_show_slots_V10(c, &method->basic.configuration_set_no_show_slots_V10)) + break; + case 13075: /* module 51 call 19 */ + CHECK_ERROR(_readMethod_configuration_set_n_delay_tranches_V10(c, &method->basic.configuration_set_n_delay_tranches_V10)) + break; + case 13076: /* module 51 call 20 */ + CHECK_ERROR(_readMethod_configuration_set_zeroth_delay_tranche_width_V10(c, &method->basic.configuration_set_zeroth_delay_tranche_width_V10)) + break; + case 13077: /* module 51 call 21 */ + CHECK_ERROR(_readMethod_configuration_set_needed_approvals_V10(c, &method->basic.configuration_set_needed_approvals_V10)) + break; + case 13078: /* module 51 call 22 */ + CHECK_ERROR(_readMethod_configuration_set_relay_vrf_modulo_samples_V10(c, &method->basic.configuration_set_relay_vrf_modulo_samples_V10)) + break; + case 13079: /* module 51 call 23 */ + CHECK_ERROR(_readMethod_configuration_set_max_upward_queue_count_V10(c, &method->basic.configuration_set_max_upward_queue_count_V10)) + break; + case 13080: /* module 51 call 24 */ + CHECK_ERROR(_readMethod_configuration_set_max_upward_queue_size_V10(c, &method->basic.configuration_set_max_upward_queue_size_V10)) + break; + case 13081: /* module 51 call 25 */ + CHECK_ERROR(_readMethod_configuration_set_max_downward_message_size_V10(c, &method->basic.configuration_set_max_downward_message_size_V10)) + break; + case 13082: /* module 51 call 26 */ + CHECK_ERROR(_readMethod_configuration_set_ump_service_total_weight_V10(c, &method->basic.configuration_set_ump_service_total_weight_V10)) + break; + case 13083: /* module 51 call 27 */ + CHECK_ERROR(_readMethod_configuration_set_max_upward_message_size_V10(c, &method->basic.configuration_set_max_upward_message_size_V10)) + break; + case 13084: /* module 51 call 28 */ + CHECK_ERROR(_readMethod_configuration_set_max_upward_message_num_per_candidate_V10(c, &method->basic.configuration_set_max_upward_message_num_per_candidate_V10)) + break; + case 13085: /* module 51 call 29 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_open_request_ttl_V10(c, &method->basic.configuration_set_hrmp_open_request_ttl_V10)) + break; + case 13086: /* module 51 call 30 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_sender_deposit_V10(c, &method->basic.configuration_set_hrmp_sender_deposit_V10)) + break; + case 13087: /* module 51 call 31 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_recipient_deposit_V10(c, &method->basic.configuration_set_hrmp_recipient_deposit_V10)) + break; + case 13088: /* module 51 call 32 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_capacity_V10(c, &method->basic.configuration_set_hrmp_channel_max_capacity_V10)) + break; + case 13089: /* module 51 call 33 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_total_size_V10(c, &method->basic.configuration_set_hrmp_channel_max_total_size_V10)) + break; + case 13090: /* module 51 call 34 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parachain_inbound_channels_V10(c, &method->basic.configuration_set_hrmp_max_parachain_inbound_channels_V10)) + break; + case 13091: /* module 51 call 35 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parathread_inbound_channels_V10(c, &method->basic.configuration_set_hrmp_max_parathread_inbound_channels_V10)) + break; + case 13092: /* module 51 call 36 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_channel_max_message_size_V10(c, &method->basic.configuration_set_hrmp_channel_max_message_size_V10)) + break; + case 13093: /* module 51 call 37 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parachain_outbound_channels_V10(c, &method->basic.configuration_set_hrmp_max_parachain_outbound_channels_V10)) + break; + case 13094: /* module 51 call 38 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_max_parathread_outbound_channels_V10(c, &method->basic.configuration_set_hrmp_max_parathread_outbound_channels_V10)) + break; + case 13095: /* module 51 call 39 */ + CHECK_ERROR(_readMethod_configuration_set_hrmp_max_message_num_per_candidate_V10(c, &method->basic.configuration_set_hrmp_max_message_num_per_candidate_V10)) + break; + case 13096: /* module 51 call 40 */ + CHECK_ERROR(_readMethod_configuration_set_ump_max_individual_weight_V10(c, &method->basic.configuration_set_ump_max_individual_weight_V10)) + break; + case 13097: /* module 51 call 41 */ + CHECK_ERROR(_readMethod_configuration_set_pvf_checking_enabled_V10(c, &method->basic.configuration_set_pvf_checking_enabled_V10)) + break; + case 13098: /* module 51 call 42 */ + CHECK_ERROR(_readMethod_configuration_set_pvf_voting_ttl_V10(c, &method->basic.configuration_set_pvf_voting_ttl_V10)) + break; + case 13099: /* module 51 call 43 */ + CHECK_ERROR(_readMethod_configuration_set_minimum_validation_upgrade_delay_V10(c, &method->basic.configuration_set_minimum_validation_upgrade_delay_V10)) + break; + case 13100: /* module 51 call 44 */ + CHECK_ERROR(_readMethod_configuration_set_bypass_consistency_check_V10(c, &method->basic.configuration_set_bypass_consistency_check_V10)) + break; + case 14592: /* module 57 call 0 */ + CHECK_ERROR(_readMethod_initializer_force_approve_V10(c, &method->basic.initializer_force_approve_V10)) + break; + case 15364: /* module 60 call 4 */ + CHECK_ERROR(_readMethod_hrmp_force_process_hrmp_open_V10(c, &method->basic.hrmp_force_process_hrmp_open_V10)) + break; + case 15365: /* module 60 call 5 */ + CHECK_ERROR(_readMethod_hrmp_force_process_hrmp_close_V10(c, &method->basic.hrmp_force_process_hrmp_close_V10)) + break; + case 15872: /* module 62 call 0 */ + CHECK_ERROR(_readMethod_parasdisputes_force_unfreeze_V10(c, &method->basic.parasdisputes_force_unfreeze_V10)) + break; + case 17925: /* module 70 call 5 */ + CHECK_ERROR(_readMethod_registrar_reserve_V10(c, &method->basic.registrar_reserve_V10)) + break; + case 18432: /* module 72 call 0 */ + CHECK_ERROR(_readMethod_auctions_new_auction_V10(c, &method->basic.auctions_new_auction_V10)) + break; + case 18433: /* module 72 call 1 */ + CHECK_ERROR(_readMethod_auctions_bid_V10(c, &method->basic.auctions_bid_V10)) + break; + case 18434: /* module 72 call 2 */ + CHECK_ERROR(_readMethod_auctions_cancel_auction_V10(c, &method->basic.auctions_cancel_auction_V10)) + break; +#endif + default: + return parser_unexpected_callIndex; + } + + return parser_ok; +} + +///////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////// + +const char* _getMethod_ModuleName_V10(uint8_t moduleIdx) +{ + switch (moduleIdx) { + case 4: + return STR_MO_BALANCES; + case 6: + return STR_MO_STAKING; + case 8: + return STR_MO_SESSION; + case 24: + return STR_MO_UTILITY; +#ifdef SUBSTRATE_PARSER_FULL + case 0: + return STR_MO_SYSTEM; + case 2: + return STR_MO_TIMESTAMP; + case 3: + return STR_MO_INDICES; + case 10: + return STR_MO_GRANDPA; + case 13: + return STR_MO_DEMOCRACY; + case 14: + return STR_MO_COUNCIL; + case 15: + return STR_MO_TECHNICALCOMMITTEE; + case 16: + return STR_MO_PHRAGMENELECTION; + case 17: + return STR_MO_TECHNICALMEMBERSHIP; + case 18: + return STR_MO_TREASURY; + case 19: + return STR_MO_CLAIMS; + case 25: + return STR_MO_IDENTITY; + case 26: + return STR_MO_SOCIETY; + case 27: + return STR_MO_RECOVERY; + case 28: + return STR_MO_VESTING; + case 30: + return STR_MO_PROXY; + case 31: + return STR_MO_MULTISIG; + case 32: + return STR_MO_PREIMAGE; + case 35: + return STR_MO_BOUNTIES; + case 36: + return STR_MO_TIPS; + case 37: + return STR_MO_ELECTIONPROVIDERMULTIPHASE; + case 38: + return STR_MO_GILT; + case 39: + return STR_MO_BAGSLIST; + case 51: + return STR_MO_CONFIGURATION; + case 57: + return STR_MO_INITIALIZER; + case 60: + return STR_MO_HRMP; + case 62: + return STR_MO_PARASDISPUTES; + case 70: + return STR_MO_REGISTRAR; + case 72: + return STR_MO_AUCTIONS; +#endif + default: + return NULL; + } + + return NULL; +} + +const char* _getMethod_Name_V10(uint8_t moduleIdx, uint8_t callIdx) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 1024: /* module 4 call 0 */ + return STR_ME_TRANSFER; + case 1026: /* module 4 call 2 */ + return STR_ME_FORCE_TRANSFER; + case 1027: /* module 4 call 3 */ + return STR_ME_TRANSFER_KEEP_ALIVE; + case 1028: /* module 4 call 4 */ + return STR_ME_TRANSFER_ALL; + case 1536: /* module 6 call 0 */ + return STR_ME_BOND; + case 1537: /* module 6 call 1 */ + return STR_ME_BOND_EXTRA; + case 1538: /* module 6 call 2 */ + return STR_ME_UNBOND; + case 1539: /* module 6 call 3 */ + return STR_ME_WITHDRAW_UNBONDED; + case 1540: /* module 6 call 4 */ + return STR_ME_VALIDATE; + case 1541: /* module 6 call 5 */ + return STR_ME_NOMINATE; + case 1542: /* module 6 call 6 */ + return STR_ME_CHILL; + case 1543: /* module 6 call 7 */ + return STR_ME_SET_PAYEE; + case 1544: /* module 6 call 8 */ + return STR_ME_SET_CONTROLLER; + case 1554: /* module 6 call 18 */ + return STR_ME_PAYOUT_STAKERS; + case 1555: /* module 6 call 19 */ + return STR_ME_REBOND; + case 2048: /* module 8 call 0 */ + return STR_ME_SET_KEYS; + case 2049: /* module 8 call 1 */ + return STR_ME_PURGE_KEYS; + case 6144: /* module 24 call 0 */ + return STR_ME_BATCH; + case 6146: /* module 24 call 2 */ + return STR_ME_BATCH_ALL; +#ifdef SUBSTRATE_PARSER_FULL + case 0: /* module 0 call 0 */ + return STR_ME_FILL_BLOCK; + case 1: /* module 0 call 1 */ + return STR_ME_REMARK; + case 2: /* module 0 call 2 */ + return STR_ME_SET_HEAP_PAGES; + case 3: /* module 0 call 3 */ + return STR_ME_SET_CODE; + case 4: /* module 0 call 4 */ + return STR_ME_SET_CODE_WITHOUT_CHECKS; + case 5: /* module 0 call 5 */ + return STR_ME_SET_STORAGE; + case 6: /* module 0 call 6 */ + return STR_ME_KILL_STORAGE; + case 7: /* module 0 call 7 */ + return STR_ME_KILL_PREFIX; + case 8: /* module 0 call 8 */ + return STR_ME_REMARK_WITH_EVENT; + case 256: /* module 1 call 0 */ + return STR_ME_REPORT_EQUIVOCATION; + case 257: /* module 1 call 1 */ + return STR_ME_REPORT_EQUIVOCATION_UNSIGNED; + case 258: /* module 1 call 2 */ + return STR_ME_PLAN_CONFIG_CHANGE; + case 512: /* module 2 call 0 */ + return STR_ME_SET; + case 768: /* module 3 call 0 */ + return STR_ME_CLAIM; + case 769: /* module 3 call 1 */ + return STR_ME_TRANSFER; + case 770: /* module 3 call 2 */ + return STR_ME_FREE; + case 771: /* module 3 call 3 */ + return STR_ME_FORCE_TRANSFER; + case 772: /* module 3 call 4 */ + return STR_ME_FREEZE; + case 1025: /* module 4 call 1 */ + return STR_ME_SET_BALANCE; + case 1029: /* module 4 call 5 */ + return STR_ME_FORCE_UNRESERVE; + case 1280: /* module 5 call 0 */ + return STR_ME_SET_UNCLES; + case 1545: /* module 6 call 9 */ + return STR_ME_SET_VALIDATOR_COUNT; + case 1546: /* module 6 call 10 */ + return STR_ME_INCREASE_VALIDATOR_COUNT; + case 1547: /* module 6 call 11 */ + return STR_ME_SCALE_VALIDATOR_COUNT; + case 1548: /* module 6 call 12 */ + return STR_ME_FORCE_NO_ERAS; + case 1549: /* module 6 call 13 */ + return STR_ME_FORCE_NEW_ERA; + case 1550: /* module 6 call 14 */ + return STR_ME_SET_INVULNERABLES; + case 1551: /* module 6 call 15 */ + return STR_ME_FORCE_UNSTAKE; + case 1552: /* module 6 call 16 */ + return STR_ME_FORCE_NEW_ERA_ALWAYS; + case 1553: /* module 6 call 17 */ + return STR_ME_CANCEL_DEFERRED_SLASH; + case 1556: /* module 6 call 20 */ + return STR_ME_SET_HISTORY_DEPTH; + case 1557: /* module 6 call 21 */ + return STR_ME_REAP_STASH; + case 1558: /* module 6 call 22 */ + return STR_ME_KICK; + case 1559: /* module 6 call 23 */ + return STR_ME_SET_STAKING_CONFIGS; + case 1560: /* module 6 call 24 */ + return STR_ME_CHILL_OTHER; + case 1561: /* module 6 call 25 */ + return STR_ME_FORCE_APPLY_MIN_COMMISSION; + case 2560: /* module 10 call 0 */ + return STR_ME_REPORT_EQUIVOCATION; + case 2561: /* module 10 call 1 */ + return STR_ME_REPORT_EQUIVOCATION_UNSIGNED; + case 2562: /* module 10 call 2 */ + return STR_ME_NOTE_STALLED; + case 2816: /* module 11 call 0 */ + return STR_ME_HEARTBEAT; + case 3328: /* module 13 call 0 */ + return STR_ME_PROPOSE; + case 3329: /* module 13 call 1 */ + return STR_ME_SECOND; + case 3330: /* module 13 call 2 */ + return STR_ME_VOTE; + case 3331: /* module 13 call 3 */ + return STR_ME_EMERGENCY_CANCEL; + case 3332: /* module 13 call 4 */ + return STR_ME_EXTERNAL_PROPOSE; + case 3333: /* module 13 call 5 */ + return STR_ME_EXTERNAL_PROPOSE_MAJORITY; + case 3334: /* module 13 call 6 */ + return STR_ME_EXTERNAL_PROPOSE_DEFAULT; + case 3335: /* module 13 call 7 */ + return STR_ME_FAST_TRACK; + case 3336: /* module 13 call 8 */ + return STR_ME_VETO_EXTERNAL; + case 3337: /* module 13 call 9 */ + return STR_ME_CANCEL_REFERENDUM; + case 3338: /* module 13 call 10 */ + return STR_ME_CANCEL_QUEUED; + case 3339: /* module 13 call 11 */ + return STR_ME_DELEGATE; + case 3340: /* module 13 call 12 */ + return STR_ME_UNDELEGATE; + case 3341: /* module 13 call 13 */ + return STR_ME_CLEAR_PUBLIC_PROPOSALS; + case 3342: /* module 13 call 14 */ + return STR_ME_NOTE_PREIMAGE; + case 3343: /* module 13 call 15 */ + return STR_ME_NOTE_PREIMAGE_OPERATIONAL; + case 3344: /* module 13 call 16 */ + return STR_ME_NOTE_IMMINENT_PREIMAGE; + case 3345: /* module 13 call 17 */ + return STR_ME_NOTE_IMMINENT_PREIMAGE_OPERATIONAL; + case 3346: /* module 13 call 18 */ + return STR_ME_REAP_PREIMAGE; + case 3347: /* module 13 call 19 */ + return STR_ME_UNLOCK; + case 3348: /* module 13 call 20 */ + return STR_ME_REMOVE_VOTE; + case 3349: /* module 13 call 21 */ + return STR_ME_REMOVE_OTHER_VOTE; + case 3350: /* module 13 call 22 */ + return STR_ME_ENACT_PROPOSAL; + case 3351: /* module 13 call 23 */ + return STR_ME_BLACKLIST; + case 3352: /* module 13 call 24 */ + return STR_ME_CANCEL_PROPOSAL; + case 3584: /* module 14 call 0 */ + return STR_ME_SET_MEMBERS; + case 3585: /* module 14 call 1 */ + return STR_ME_EXECUTE; + case 3586: /* module 14 call 2 */ + return STR_ME_PROPOSE; + case 3587: /* module 14 call 3 */ + return STR_ME_VOTE; + case 3588: /* module 14 call 4 */ + return STR_ME_CLOSE; + case 3589: /* module 14 call 5 */ + return STR_ME_DISAPPROVE_PROPOSAL; + case 3840: /* module 15 call 0 */ + return STR_ME_SET_MEMBERS; + case 3841: /* module 15 call 1 */ + return STR_ME_EXECUTE; + case 3842: /* module 15 call 2 */ + return STR_ME_PROPOSE; + case 3843: /* module 15 call 3 */ + return STR_ME_VOTE; + case 3844: /* module 15 call 4 */ + return STR_ME_CLOSE; + case 3845: /* module 15 call 5 */ + return STR_ME_DISAPPROVE_PROPOSAL; + case 4096: /* module 16 call 0 */ + return STR_ME_VOTE; + case 4097: /* module 16 call 1 */ + return STR_ME_REMOVE_VOTER; + case 4098: /* module 16 call 2 */ + return STR_ME_SUBMIT_CANDIDACY; + case 4099: /* module 16 call 3 */ + return STR_ME_RENOUNCE_CANDIDACY; + case 4100: /* module 16 call 4 */ + return STR_ME_REMOVE_MEMBER; + case 4101: /* module 16 call 5 */ + return STR_ME_CLEAN_DEFUNCT_VOTERS; + case 4352: /* module 17 call 0 */ + return STR_ME_ADD_MEMBER; + case 4353: /* module 17 call 1 */ + return STR_ME_REMOVE_MEMBER; + case 4354: /* module 17 call 2 */ + return STR_ME_SWAP_MEMBER; + case 4355: /* module 17 call 3 */ + return STR_ME_RESET_MEMBERS; + case 4356: /* module 17 call 4 */ + return STR_ME_CHANGE_KEY; + case 4357: /* module 17 call 5 */ + return STR_ME_SET_PRIME; + case 4358: /* module 17 call 6 */ + return STR_ME_CLEAR_PRIME; + case 4608: /* module 18 call 0 */ + return STR_ME_PROPOSE_SPEND; + case 4609: /* module 18 call 1 */ + return STR_ME_REJECT_PROPOSAL; + case 4610: /* module 18 call 2 */ + return STR_ME_APPROVE_PROPOSAL; + case 4864: /* module 19 call 0 */ + return STR_ME_CLAIM; + case 4865: /* module 19 call 1 */ + return STR_ME_MINT_CLAIM; + case 4866: /* module 19 call 2 */ + return STR_ME_CLAIM_ATTEST; + case 4867: /* module 19 call 3 */ + return STR_ME_ATTEST; + case 4868: /* module 19 call 4 */ + return STR_ME_MOVE_CLAIM; + case 6145: /* module 24 call 1 */ + return STR_ME_AS_DERIVATIVE; + case 6147: /* module 24 call 3 */ + return STR_ME_DISPATCH_AS; + case 6400: /* module 25 call 0 */ + return STR_ME_ADD_REGISTRAR; + case 6401: /* module 25 call 1 */ + return STR_ME_SET_IDENTITY; + case 6402: /* module 25 call 2 */ + return STR_ME_SET_SUBS; + case 6403: /* module 25 call 3 */ + return STR_ME_CLEAR_IDENTITY; + case 6404: /* module 25 call 4 */ + return STR_ME_REQUEST_JUDGEMENT; + case 6405: /* module 25 call 5 */ + return STR_ME_CANCEL_REQUEST; + case 6406: /* module 25 call 6 */ + return STR_ME_SET_FEE; + case 6407: /* module 25 call 7 */ + return STR_ME_SET_ACCOUNT_ID; + case 6408: /* module 25 call 8 */ + return STR_ME_SET_FIELDS; + case 6409: /* module 25 call 9 */ + return STR_ME_PROVIDE_JUDGEMENT; + case 6410: /* module 25 call 10 */ + return STR_ME_KILL_IDENTITY; + case 6411: /* module 25 call 11 */ + return STR_ME_ADD_SUB; + case 6412: /* module 25 call 12 */ + return STR_ME_RENAME_SUB; + case 6413: /* module 25 call 13 */ + return STR_ME_REMOVE_SUB; + case 6414: /* module 25 call 14 */ + return STR_ME_QUIT_SUB; + case 6656: /* module 26 call 0 */ + return STR_ME_BID; + case 6657: /* module 26 call 1 */ + return STR_ME_UNBID; + case 6658: /* module 26 call 2 */ + return STR_ME_VOUCH; + case 6659: /* module 26 call 3 */ + return STR_ME_UNVOUCH; + case 6660: /* module 26 call 4 */ + return STR_ME_VOTE; + case 6661: /* module 26 call 5 */ + return STR_ME_DEFENDER_VOTE; + case 6662: /* module 26 call 6 */ + return STR_ME_PAYOUT; + case 6663: /* module 26 call 7 */ + return STR_ME_FOUND; + case 6664: /* module 26 call 8 */ + return STR_ME_UNFOUND; + case 6665: /* module 26 call 9 */ + return STR_ME_JUDGE_SUSPENDED_MEMBER; + case 6666: /* module 26 call 10 */ + return STR_ME_JUDGE_SUSPENDED_CANDIDATE; + case 6667: /* module 26 call 11 */ + return STR_ME_SET_MAX_MEMBERS; + case 6912: /* module 27 call 0 */ + return STR_ME_AS_RECOVERED; + case 6913: /* module 27 call 1 */ + return STR_ME_SET_RECOVERED; + case 6914: /* module 27 call 2 */ + return STR_ME_CREATE_RECOVERY; + case 6915: /* module 27 call 3 */ + return STR_ME_INITIATE_RECOVERY; + case 6916: /* module 27 call 4 */ + return STR_ME_VOUCH_RECOVERY; + case 6917: /* module 27 call 5 */ + return STR_ME_CLAIM_RECOVERY; + case 6918: /* module 27 call 6 */ + return STR_ME_CLOSE_RECOVERY; + case 6919: /* module 27 call 7 */ + return STR_ME_REMOVE_RECOVERY; + case 6920: /* module 27 call 8 */ + return STR_ME_CANCEL_RECOVERED; + case 7168: /* module 28 call 0 */ + return STR_ME_VEST; + case 7169: /* module 28 call 1 */ + return STR_ME_VEST_OTHER; + case 7170: /* module 28 call 2 */ + return STR_ME_VESTED_TRANSFER; + case 7171: /* module 28 call 3 */ + return STR_ME_FORCE_VESTED_TRANSFER; + case 7172: /* module 28 call 4 */ + return STR_ME_MERGE_SCHEDULES; + case 7424: /* module 29 call 0 */ + return STR_ME_SCHEDULE; + case 7425: /* module 29 call 1 */ + return STR_ME_CANCEL; + case 7426: /* module 29 call 2 */ + return STR_ME_SCHEDULE_NAMED; + case 7427: /* module 29 call 3 */ + return STR_ME_CANCEL_NAMED; + case 7428: /* module 29 call 4 */ + return STR_ME_SCHEDULE_AFTER; + case 7429: /* module 29 call 5 */ + return STR_ME_SCHEDULE_NAMED_AFTER; + case 7680: /* module 30 call 0 */ + return STR_ME_PROXY; + case 7681: /* module 30 call 1 */ + return STR_ME_ADD_PROXY; + case 7682: /* module 30 call 2 */ + return STR_ME_REMOVE_PROXY; + case 7683: /* module 30 call 3 */ + return STR_ME_REMOVE_PROXIES; + case 7684: /* module 30 call 4 */ + return STR_ME_ANONYMOUS; + case 7685: /* module 30 call 5 */ + return STR_ME_KILL_ANONYMOUS; + case 7686: /* module 30 call 6 */ + return STR_ME_ANNOUNCE; + case 7687: /* module 30 call 7 */ + return STR_ME_REMOVE_ANNOUNCEMENT; + case 7688: /* module 30 call 8 */ + return STR_ME_REJECT_ANNOUNCEMENT; + case 7689: /* module 30 call 9 */ + return STR_ME_PROXY_ANNOUNCED; + case 7936: /* module 31 call 0 */ + return STR_ME_AS_MULTI_THRESHOLD_1; + case 7937: /* module 31 call 1 */ + return STR_ME_AS_MULTI; + case 7938: /* module 31 call 2 */ + return STR_ME_APPROVE_AS_MULTI; + case 7939: /* module 31 call 3 */ + return STR_ME_CANCEL_AS_MULTI; + case 8192: /* module 32 call 0 */ + return STR_ME_NOTE_PREIMAGE; + case 8193: /* module 32 call 1 */ + return STR_ME_UNNOTE_PREIMAGE; + case 8194: /* module 32 call 2 */ + return STR_ME_REQUEST_PREIMAGE; + case 8195: /* module 32 call 3 */ + return STR_ME_UNREQUEST_PREIMAGE; + case 8960: /* module 35 call 0 */ + return STR_ME_PROPOSE_BOUNTY; + case 8961: /* module 35 call 1 */ + return STR_ME_APPROVE_BOUNTY; + case 8962: /* module 35 call 2 */ + return STR_ME_PROPOSE_CURATOR; + case 8963: /* module 35 call 3 */ + return STR_ME_UNASSIGN_CURATOR; + case 8964: /* module 35 call 4 */ + return STR_ME_ACCEPT_CURATOR; + case 8965: /* module 35 call 5 */ + return STR_ME_AWARD_BOUNTY; + case 8966: /* module 35 call 6 */ + return STR_ME_CLAIM_BOUNTY; + case 8967: /* module 35 call 7 */ + return STR_ME_CLOSE_BOUNTY; + case 8968: /* module 35 call 8 */ + return STR_ME_EXTEND_BOUNTY_EXPIRY; + case 9216: /* module 36 call 0 */ + return STR_ME_REPORT_AWESOME; + case 9217: /* module 36 call 1 */ + return STR_ME_RETRACT_TIP; + case 9218: /* module 36 call 2 */ + return STR_ME_TIP_NEW; + case 9219: /* module 36 call 3 */ + return STR_ME_TIP; + case 9220: /* module 36 call 4 */ + return STR_ME_CLOSE_TIP; + case 9221: /* module 36 call 5 */ + return STR_ME_SLASH_TIP; + case 9472: /* module 37 call 0 */ + return STR_ME_SUBMIT_UNSIGNED; + case 9473: /* module 37 call 1 */ + return STR_ME_SET_MINIMUM_UNTRUSTED_SCORE; + case 9474: /* module 37 call 2 */ + return STR_ME_SET_EMERGENCY_ELECTION_RESULT; + case 9475: /* module 37 call 3 */ + return STR_ME_SUBMIT; + case 9476: /* module 37 call 4 */ + return STR_ME_GOVERNANCE_FALLBACK; + case 9728: /* module 38 call 0 */ + return STR_ME_PLACE_BID; + case 9729: /* module 38 call 1 */ + return STR_ME_RETRACT_BID; + case 9730: /* module 38 call 2 */ + return STR_ME_SET_TARGET; + case 9731: /* module 38 call 3 */ + return STR_ME_THAW; + case 9984: /* module 39 call 0 */ + return STR_ME_REBAG; + case 9985: /* module 39 call 1 */ + return STR_ME_PUT_IN_FRONT_OF; + case 13056: /* module 51 call 0 */ + return STR_ME_SET_VALIDATION_UPGRADE_COOLDOWN; + case 13057: /* module 51 call 1 */ + return STR_ME_SET_VALIDATION_UPGRADE_DELAY; + case 13058: /* module 51 call 2 */ + return STR_ME_SET_CODE_RETENTION_PERIOD; + case 13059: /* module 51 call 3 */ + return STR_ME_SET_MAX_CODE_SIZE; + case 13060: /* module 51 call 4 */ + return STR_ME_SET_MAX_POV_SIZE; + case 13061: /* module 51 call 5 */ + return STR_ME_SET_MAX_HEAD_DATA_SIZE; + case 13062: /* module 51 call 6 */ + return STR_ME_SET_PARATHREAD_CORES; + case 13063: /* module 51 call 7 */ + return STR_ME_SET_PARATHREAD_RETRIES; + case 13064: /* module 51 call 8 */ + return STR_ME_SET_GROUP_ROTATION_FREQUENCY; + case 13065: /* module 51 call 9 */ + return STR_ME_SET_CHAIN_AVAILABILITY_PERIOD; + case 13066: /* module 51 call 10 */ + return STR_ME_SET_THREAD_AVAILABILITY_PERIOD; + case 13067: /* module 51 call 11 */ + return STR_ME_SET_SCHEDULING_LOOKAHEAD; + case 13068: /* module 51 call 12 */ + return STR_ME_SET_MAX_VALIDATORS_PER_CORE; + case 13069: /* module 51 call 13 */ + return STR_ME_SET_MAX_VALIDATORS; + case 13070: /* module 51 call 14 */ + return STR_ME_SET_DISPUTE_PERIOD; + case 13071: /* module 51 call 15 */ + return STR_ME_SET_DISPUTE_POST_CONCLUSION_ACCEPTANCE_PERIOD; + case 13072: /* module 51 call 16 */ + return STR_ME_SET_DISPUTE_MAX_SPAM_SLOTS; + case 13073: /* module 51 call 17 */ + return STR_ME_SET_DISPUTE_CONCLUSION_BY_TIME_OUT_PERIOD; + case 13074: /* module 51 call 18 */ + return STR_ME_SET_NO_SHOW_SLOTS; + case 13075: /* module 51 call 19 */ + return STR_ME_SET_N_DELAY_TRANCHES; + case 13076: /* module 51 call 20 */ + return STR_ME_SET_ZEROTH_DELAY_TRANCHE_WIDTH; + case 13077: /* module 51 call 21 */ + return STR_ME_SET_NEEDED_APPROVALS; + case 13078: /* module 51 call 22 */ + return STR_ME_SET_RELAY_VRF_MODULO_SAMPLES; + case 13079: /* module 51 call 23 */ + return STR_ME_SET_MAX_UPWARD_QUEUE_COUNT; + case 13080: /* module 51 call 24 */ + return STR_ME_SET_MAX_UPWARD_QUEUE_SIZE; + case 13081: /* module 51 call 25 */ + return STR_ME_SET_MAX_DOWNWARD_MESSAGE_SIZE; + case 13082: /* module 51 call 26 */ + return STR_ME_SET_UMP_SERVICE_TOTAL_WEIGHT; + case 13083: /* module 51 call 27 */ + return STR_ME_SET_MAX_UPWARD_MESSAGE_SIZE; + case 13084: /* module 51 call 28 */ + return STR_ME_SET_MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE; + case 13085: /* module 51 call 29 */ + return STR_ME_SET_HRMP_OPEN_REQUEST_TTL; + case 13086: /* module 51 call 30 */ + return STR_ME_SET_HRMP_SENDER_DEPOSIT; + case 13087: /* module 51 call 31 */ + return STR_ME_SET_HRMP_RECIPIENT_DEPOSIT; + case 13088: /* module 51 call 32 */ + return STR_ME_SET_HRMP_CHANNEL_MAX_CAPACITY; + case 13089: /* module 51 call 33 */ + return STR_ME_SET_HRMP_CHANNEL_MAX_TOTAL_SIZE; + case 13090: /* module 51 call 34 */ + return STR_ME_SET_HRMP_MAX_PARACHAIN_INBOUND_CHANNELS; + case 13091: /* module 51 call 35 */ + return STR_ME_SET_HRMP_MAX_PARATHREAD_INBOUND_CHANNELS; + case 13092: /* module 51 call 36 */ + return STR_ME_SET_HRMP_CHANNEL_MAX_MESSAGE_SIZE; + case 13093: /* module 51 call 37 */ + return STR_ME_SET_HRMP_MAX_PARACHAIN_OUTBOUND_CHANNELS; + case 13094: /* module 51 call 38 */ + return STR_ME_SET_HRMP_MAX_PARATHREAD_OUTBOUND_CHANNELS; + case 13095: /* module 51 call 39 */ + return STR_ME_SET_HRMP_MAX_MESSAGE_NUM_PER_CANDIDATE; + case 13096: /* module 51 call 40 */ + return STR_ME_SET_UMP_MAX_INDIVIDUAL_WEIGHT; + case 13097: /* module 51 call 41 */ + return STR_ME_SET_PVF_CHECKING_ENABLED; + case 13098: /* module 51 call 42 */ + return STR_ME_SET_PVF_VOTING_TTL; + case 13099: /* module 51 call 43 */ + return STR_ME_SET_MINIMUM_VALIDATION_UPGRADE_DELAY; + case 13100: /* module 51 call 44 */ + return STR_ME_SET_BYPASS_CONSISTENCY_CHECK; + case 13824: /* module 54 call 0 */ + return STR_ME_ENTER; + case 14336: /* module 56 call 0 */ + return STR_ME_FORCE_SET_CURRENT_CODE; + case 14337: /* module 56 call 1 */ + return STR_ME_FORCE_SET_CURRENT_HEAD; + case 14338: /* module 56 call 2 */ + return STR_ME_FORCE_SCHEDULE_CODE_UPGRADE; + case 14339: /* module 56 call 3 */ + return STR_ME_FORCE_NOTE_NEW_HEAD; + case 14340: /* module 56 call 4 */ + return STR_ME_FORCE_QUEUE_ACTION; + case 14341: /* module 56 call 5 */ + return STR_ME_ADD_TRUSTED_VALIDATION_CODE; + case 14342: /* module 56 call 6 */ + return STR_ME_POKE_UNUSED_VALIDATION_CODE; + case 14343: /* module 56 call 7 */ + return STR_ME_INCLUDE_PVF_CHECK_STATEMENT; + case 14592: /* module 57 call 0 */ + return STR_ME_FORCE_APPROVE; + case 15104: /* module 59 call 0 */ + return STR_ME_SERVICE_OVERWEIGHT; + case 15360: /* module 60 call 0 */ + return STR_ME_HRMP_INIT_OPEN_CHANNEL; + case 15361: /* module 60 call 1 */ + return STR_ME_HRMP_ACCEPT_OPEN_CHANNEL; + case 15362: /* module 60 call 2 */ + return STR_ME_HRMP_CLOSE_CHANNEL; + case 15363: /* module 60 call 3 */ + return STR_ME_FORCE_CLEAN_HRMP; + case 15364: /* module 60 call 4 */ + return STR_ME_FORCE_PROCESS_HRMP_OPEN; + case 15365: /* module 60 call 5 */ + return STR_ME_FORCE_PROCESS_HRMP_CLOSE; + case 15366: /* module 60 call 6 */ + return STR_ME_HRMP_CANCEL_OPEN_REQUEST; + case 15872: /* module 62 call 0 */ + return STR_ME_FORCE_UNFREEZE; + case 17920: /* module 70 call 0 */ + return STR_ME_REGISTER; + case 17921: /* module 70 call 1 */ + return STR_ME_FORCE_REGISTER; + case 17922: /* module 70 call 2 */ + return STR_ME_DEREGISTER; + case 17923: /* module 70 call 3 */ + return STR_ME_SWAP; + case 17924: /* module 70 call 4 */ + return STR_ME_FORCE_REMOVE_LOCK; + case 17925: /* module 70 call 5 */ + return STR_ME_RESERVE; + case 18176: /* module 71 call 0 */ + return STR_ME_FORCE_LEASE; + case 18177: /* module 71 call 1 */ + return STR_ME_CLEAR_ALL_LEASES; + case 18178: /* module 71 call 2 */ + return STR_ME_TRIGGER_ONBOARD; + case 18432: /* module 72 call 0 */ + return STR_ME_NEW_AUCTION; + case 18433: /* module 72 call 1 */ + return STR_ME_BID; + case 18434: /* module 72 call 2 */ + return STR_ME_CANCEL_AUCTION; + case 18688: /* module 73 call 0 */ + return STR_ME_CREATE; + case 18689: /* module 73 call 1 */ + return STR_ME_CONTRIBUTE; + case 18690: /* module 73 call 2 */ + return STR_ME_WITHDRAW; + case 18691: /* module 73 call 3 */ + return STR_ME_REFUND; + case 18692: /* module 73 call 4 */ + return STR_ME_DISSOLVE; + case 18693: /* module 73 call 5 */ + return STR_ME_EDIT; + case 18694: /* module 73 call 6 */ + return STR_ME_ADD_MEMO; + case 18695: /* module 73 call 7 */ + return STR_ME_POKE; + case 18696: /* module 73 call 8 */ + return STR_ME_CONTRIBUTE_ALL; + case 25344: /* module 99 call 0 */ + return STR_ME_SEND; + case 25345: /* module 99 call 1 */ + return STR_ME_TELEPORT_ASSETS; + case 25346: /* module 99 call 2 */ + return STR_ME_RESERVE_TRANSFER_ASSETS; + case 25347: /* module 99 call 3 */ + return STR_ME_EXECUTE; + case 25348: /* module 99 call 4 */ + return STR_ME_FORCE_XCM_VERSION; + case 25349: /* module 99 call 5 */ + return STR_ME_FORCE_DEFAULT_XCM_VERSION; + case 25350: /* module 99 call 6 */ + return STR_ME_FORCE_SUBSCRIBE_VERSION_NOTIFY; + case 25351: /* module 99 call 7 */ + return STR_ME_FORCE_UNSUBSCRIBE_VERSION_NOTIFY; + case 25352: /* module 99 call 8 */ + return STR_ME_LIMITED_RESERVE_TRANSFER_ASSETS; + case 25353: /* module 99 call 9 */ + return STR_ME_LIMITED_TELEPORT_ASSETS; +#endif + default: + return NULL; + } + + return NULL; +} + +uint8_t _getMethod_NumItems_V10(uint8_t moduleIdx, uint8_t callIdx) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 1024: /* module 4 call 0 */ + return 2; + case 1026: /* module 4 call 2 */ + return 3; + case 1027: /* module 4 call 3 */ + return 2; + case 1028: /* module 4 call 4 */ + return 2; + case 1536: /* module 6 call 0 */ + return 3; + case 1537: /* module 6 call 1 */ + return 1; + case 1538: /* module 6 call 2 */ + return 1; + case 1539: /* module 6 call 3 */ + return 1; + case 1540: /* module 6 call 4 */ + return 1; + case 1541: /* module 6 call 5 */ + return 1; + case 1542: /* module 6 call 6 */ + return 0; + case 1543: /* module 6 call 7 */ + return 1; + case 1544: /* module 6 call 8 */ + return 1; + case 1554: /* module 6 call 18 */ + return 2; + case 1555: /* module 6 call 19 */ + return 1; + case 2048: /* module 8 call 0 */ + return 2; + case 2049: /* module 8 call 1 */ + return 0; + case 6144: /* module 24 call 0 */ + return 1; + case 6146: /* module 24 call 2 */ + return 1; +#ifdef SUBSTRATE_PARSER_FULL + case 0: /* module 0 call 0 */ + return 1; + case 1: /* module 0 call 1 */ + return 1; + case 2: /* module 0 call 2 */ + return 1; + case 3: /* module 0 call 3 */ + return 1; + case 4: /* module 0 call 4 */ + return 1; + case 8: /* module 0 call 8 */ + return 1; + case 512: /* module 2 call 0 */ + return 1; + case 768: /* module 3 call 0 */ + return 1; + case 769: /* module 3 call 1 */ + return 2; + case 770: /* module 3 call 2 */ + return 1; + case 771: /* module 3 call 3 */ + return 3; + case 772: /* module 3 call 4 */ + return 1; + case 1025: /* module 4 call 1 */ + return 3; + case 1029: /* module 4 call 5 */ + return 2; + case 1545: /* module 6 call 9 */ + return 1; + case 1546: /* module 6 call 10 */ + return 1; + case 1548: /* module 6 call 12 */ + return 0; + case 1549: /* module 6 call 13 */ + return 0; + case 1551: /* module 6 call 15 */ + return 2; + case 1552: /* module 6 call 16 */ + return 0; + case 1556: /* module 6 call 20 */ + return 2; + case 1557: /* module 6 call 21 */ + return 2; + case 1558: /* module 6 call 22 */ + return 1; + case 1560: /* module 6 call 24 */ + return 1; + case 1561: /* module 6 call 25 */ + return 1; + case 2562: /* module 10 call 2 */ + return 2; + case 3329: /* module 13 call 1 */ + return 2; + case 3331: /* module 13 call 3 */ + return 1; + case 3337: /* module 13 call 9 */ + return 1; + case 3338: /* module 13 call 10 */ + return 1; + case 3340: /* module 13 call 12 */ + return 0; + case 3341: /* module 13 call 13 */ + return 0; + case 3342: /* module 13 call 14 */ + return 1; + case 3343: /* module 13 call 15 */ + return 1; + case 3344: /* module 13 call 16 */ + return 1; + case 3345: /* module 13 call 17 */ + return 1; + case 3348: /* module 13 call 20 */ + return 1; + case 3352: /* module 13 call 24 */ + return 1; + case 3587: /* module 14 call 3 */ + return 3; + case 3588: /* module 14 call 4 */ + return 4; + case 3589: /* module 14 call 5 */ + return 1; + case 3845: /* module 15 call 5 */ + return 1; + case 4097: /* module 16 call 1 */ + return 0; + case 4098: /* module 16 call 2 */ + return 1; + case 4100: /* module 16 call 4 */ + return 2; + case 4101: /* module 16 call 5 */ + return 2; + case 4352: /* module 17 call 0 */ + return 1; + case 4353: /* module 17 call 1 */ + return 1; + case 4354: /* module 17 call 2 */ + return 2; + case 4355: /* module 17 call 3 */ + return 1; + case 4356: /* module 17 call 4 */ + return 1; + case 4357: /* module 17 call 5 */ + return 1; + case 4358: /* module 17 call 6 */ + return 0; + case 4608: /* module 18 call 0 */ + return 2; + case 4609: /* module 18 call 1 */ + return 1; + case 4610: /* module 18 call 2 */ + return 1; + case 4864: /* module 19 call 0 */ + return 2; + case 4866: /* module 19 call 2 */ + return 3; + case 4867: /* module 19 call 3 */ + return 1; + case 4868: /* module 19 call 4 */ + return 3; + case 6400: /* module 25 call 0 */ + return 1; + case 6403: /* module 25 call 3 */ + return 0; + case 6404: /* module 25 call 4 */ + return 2; + case 6405: /* module 25 call 5 */ + return 1; + case 6406: /* module 25 call 6 */ + return 2; + case 6407: /* module 25 call 7 */ + return 2; + case 6410: /* module 25 call 10 */ + return 1; + case 6413: /* module 25 call 13 */ + return 1; + case 6414: /* module 25 call 14 */ + return 0; + case 6656: /* module 26 call 0 */ + return 1; + case 6657: /* module 26 call 1 */ + return 1; + case 6658: /* module 26 call 2 */ + return 3; + case 6659: /* module 26 call 3 */ + return 1; + case 6660: /* module 26 call 4 */ + return 2; + case 6661: /* module 26 call 5 */ + return 1; + case 6662: /* module 26 call 6 */ + return 0; + case 6663: /* module 26 call 7 */ + return 3; + case 6664: /* module 26 call 8 */ + return 0; + case 6665: /* module 26 call 9 */ + return 2; + case 6667: /* module 26 call 11 */ + return 1; + case 6913: /* module 27 call 1 */ + return 2; + case 6915: /* module 27 call 3 */ + return 1; + case 6916: /* module 27 call 4 */ + return 2; + case 6917: /* module 27 call 5 */ + return 1; + case 6918: /* module 27 call 6 */ + return 1; + case 6919: /* module 27 call 7 */ + return 0; + case 6920: /* module 27 call 8 */ + return 1; + case 7168: /* module 28 call 0 */ + return 0; + case 7169: /* module 28 call 1 */ + return 1; + case 7172: /* module 28 call 4 */ + return 2; + case 7680: /* module 30 call 0 */ + return 3; + case 7681: /* module 30 call 1 */ + return 3; + case 7682: /* module 30 call 2 */ + return 3; + case 7683: /* module 30 call 3 */ + return 0; + case 7684: /* module 30 call 4 */ + return 3; + case 7685: /* module 30 call 5 */ + return 5; + case 7689: /* module 30 call 9 */ + return 4; + case 7936: /* module 31 call 0 */ + return 2; + case 7937: /* module 31 call 1 */ + return 6; + case 7938: /* module 31 call 2 */ + return 5; + case 7939: /* module 31 call 3 */ + return 4; + case 8192: /* module 32 call 0 */ + return 1; + case 8193: /* module 32 call 1 */ + return 1; + case 8194: /* module 32 call 2 */ + return 1; + case 8195: /* module 32 call 3 */ + return 1; + case 8960: /* module 35 call 0 */ + return 2; + case 8961: /* module 35 call 1 */ + return 1; + case 8962: /* module 35 call 2 */ + return 3; + case 8963: /* module 35 call 3 */ + return 1; + case 8964: /* module 35 call 4 */ + return 1; + case 8965: /* module 35 call 5 */ + return 2; + case 8966: /* module 35 call 6 */ + return 1; + case 8967: /* module 35 call 7 */ + return 1; + case 8968: /* module 35 call 8 */ + return 2; + case 9216: /* module 36 call 0 */ + return 2; + case 9217: /* module 36 call 1 */ + return 1; + case 9218: /* module 36 call 2 */ + return 3; + case 9219: /* module 36 call 3 */ + return 2; + case 9220: /* module 36 call 4 */ + return 1; + case 9221: /* module 36 call 5 */ + return 1; + case 9476: /* module 37 call 4 */ + return 2; + case 9728: /* module 38 call 0 */ + return 2; + case 9729: /* module 38 call 1 */ + return 2; + case 9984: /* module 39 call 0 */ + return 1; + case 9985: /* module 39 call 1 */ + return 1; + case 13056: /* module 51 call 0 */ + return 1; + case 13057: /* module 51 call 1 */ + return 1; + case 13058: /* module 51 call 2 */ + return 1; + case 13059: /* module 51 call 3 */ + return 1; + case 13060: /* module 51 call 4 */ + return 1; + case 13061: /* module 51 call 5 */ + return 1; + case 13062: /* module 51 call 6 */ + return 1; + case 13063: /* module 51 call 7 */ + return 1; + case 13064: /* module 51 call 8 */ + return 1; + case 13065: /* module 51 call 9 */ + return 1; + case 13066: /* module 51 call 10 */ + return 1; + case 13067: /* module 51 call 11 */ + return 1; + case 13068: /* module 51 call 12 */ + return 1; + case 13069: /* module 51 call 13 */ + return 1; + case 13070: /* module 51 call 14 */ + return 1; + case 13071: /* module 51 call 15 */ + return 1; + case 13072: /* module 51 call 16 */ + return 1; + case 13073: /* module 51 call 17 */ + return 1; + case 13074: /* module 51 call 18 */ + return 1; + case 13075: /* module 51 call 19 */ + return 1; + case 13076: /* module 51 call 20 */ + return 1; + case 13077: /* module 51 call 21 */ + return 1; + case 13078: /* module 51 call 22 */ + return 1; + case 13079: /* module 51 call 23 */ + return 1; + case 13080: /* module 51 call 24 */ + return 1; + case 13081: /* module 51 call 25 */ + return 1; + case 13082: /* module 51 call 26 */ + return 1; + case 13083: /* module 51 call 27 */ + return 1; + case 13084: /* module 51 call 28 */ + return 1; + case 13085: /* module 51 call 29 */ + return 1; + case 13086: /* module 51 call 30 */ + return 1; + case 13087: /* module 51 call 31 */ + return 1; + case 13088: /* module 51 call 32 */ + return 1; + case 13089: /* module 51 call 33 */ + return 1; + case 13090: /* module 51 call 34 */ + return 1; + case 13091: /* module 51 call 35 */ + return 1; + case 13092: /* module 51 call 36 */ + return 1; + case 13093: /* module 51 call 37 */ + return 1; + case 13094: /* module 51 call 38 */ + return 1; + case 13095: /* module 51 call 39 */ + return 1; + case 13096: /* module 51 call 40 */ + return 1; + case 13097: /* module 51 call 41 */ + return 1; + case 13098: /* module 51 call 42 */ + return 1; + case 13099: /* module 51 call 43 */ + return 1; + case 13100: /* module 51 call 44 */ + return 1; + case 14592: /* module 57 call 0 */ + return 1; + case 15364: /* module 60 call 4 */ + return 1; + case 15365: /* module 60 call 5 */ + return 1; + case 15872: /* module 62 call 0 */ + return 0; + case 17925: /* module 70 call 5 */ + return 0; + case 18432: /* module 72 call 0 */ + return 2; + case 18433: /* module 72 call 1 */ + return 5; + case 18434: /* module 72 call 2 */ + return 0; +#endif + default: + return 0; + } + + return 0; +} + +const char* _getMethod_ItemName_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 1024: /* module 4 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_dest; + case 1: + return STR_IT_amount; + default: + return NULL; + } + case 1026: /* module 4 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_source; + case 1: + return STR_IT_dest; + case 2: + return STR_IT_amount; + default: + return NULL; + } + case 1027: /* module 4 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_dest; + case 1: + return STR_IT_amount; + default: + return NULL; + } + case 1028: /* module 4 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_dest; + case 1: + return STR_IT_keep_alive; + default: + return NULL; + } + case 1536: /* module 6 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_controller; + case 1: + return STR_IT_amount; + case 2: + return STR_IT_payee; + default: + return NULL; + } + case 1537: /* module 6 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + default: + return NULL; + } + case 1538: /* module 6 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + default: + return NULL; + } + case 1539: /* module 6 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_num_slashing_spans; + default: + return NULL; + } + case 1540: /* module 6 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_prefs; + default: + return NULL; + } + case 1541: /* module 6 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_targets; + default: + return NULL; + } + case 1542: /* module 6 call 6 */ + switch (itemIdx) { + default: + return NULL; + } + case 1543: /* module 6 call 7 */ + switch (itemIdx) { + case 0: + return STR_IT_payee; + default: + return NULL; + } + case 1544: /* module 6 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_controller; + default: + return NULL; + } + case 1554: /* module 6 call 18 */ + switch (itemIdx) { + case 0: + return STR_IT_validator_stash; + case 1: + return STR_IT_era; + default: + return NULL; + } + case 1555: /* module 6 call 19 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + default: + return NULL; + } + case 2048: /* module 8 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_keys; + case 1: + return STR_IT_proof; + default: + return NULL; + } + case 2049: /* module 8 call 1 */ + switch (itemIdx) { + default: + return NULL; + } + case 6144: /* module 24 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_calls; + default: + return NULL; + } + case 6146: /* module 24 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_calls; + default: + return NULL; + } +#ifdef SUBSTRATE_PARSER_FULL + case 0: /* module 0 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_ratio; + default: + return NULL; + } + case 1: /* module 0 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_remark; + default: + return NULL; + } + case 2: /* module 0 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_pages; + default: + return NULL; + } + case 3: /* module 0 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_code; + default: + return NULL; + } + case 4: /* module 0 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_code; + default: + return NULL; + } + case 8: /* module 0 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_remark; + default: + return NULL; + } + case 512: /* module 2 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_now; + default: + return NULL; + } + case 768: /* module 3 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + default: + return NULL; + } + case 769: /* module 3 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + case 1: + return STR_IT_index; + default: + return NULL; + } + case 770: /* module 3 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + default: + return NULL; + } + case 771: /* module 3 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + case 1: + return STR_IT_index; + case 2: + return STR_IT_freeze; + default: + return NULL; + } + case 772: /* module 3 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + default: + return NULL; + } + case 1025: /* module 4 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_new_free; + case 2: + return STR_IT_new_reserved; + default: + return NULL; + } + case 1029: /* module 4 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_amount; + default: + return NULL; + } + case 1545: /* module 6 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 1546: /* module 6 call 10 */ + switch (itemIdx) { + case 0: + return STR_IT_additional; + default: + return NULL; + } + case 1548: /* module 6 call 12 */ + switch (itemIdx) { + default: + return NULL; + } + case 1549: /* module 6 call 13 */ + switch (itemIdx) { + default: + return NULL; + } + case 1551: /* module 6 call 15 */ + switch (itemIdx) { + case 0: + return STR_IT_stash; + case 1: + return STR_IT_num_slashing_spans; + default: + return NULL; + } + case 1552: /* module 6 call 16 */ + switch (itemIdx) { + default: + return NULL; + } + case 1556: /* module 6 call 20 */ + switch (itemIdx) { + case 0: + return STR_IT_new_history_depth; + case 1: + return STR_IT_era_items_deleted; + default: + return NULL; + } + case 1557: /* module 6 call 21 */ + switch (itemIdx) { + case 0: + return STR_IT_stash; + case 1: + return STR_IT_num_slashing_spans; + default: + return NULL; + } + case 1558: /* module 6 call 22 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + default: + return NULL; + } + case 1560: /* module 6 call 24 */ + switch (itemIdx) { + case 0: + return STR_IT_controller; + default: + return NULL; + } + case 1561: /* module 6 call 25 */ + switch (itemIdx) { + case 0: + return STR_IT_validator_stash; + default: + return NULL; + } + case 2562: /* module 10 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_delay; + case 1: + return STR_IT_best_finalized_block_number; + default: + return NULL; + } + case 3329: /* module 13 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal; + case 1: + return STR_IT_seconds_upper_bound; + default: + return NULL; + } + case 3331: /* module 13 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_ref_index; + default: + return NULL; + } + case 3337: /* module 13 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_ref_index; + default: + return NULL; + } + case 3338: /* module 13 call 10 */ + switch (itemIdx) { + case 0: + return STR_IT_which; + default: + return NULL; + } + case 3340: /* module 13 call 12 */ + switch (itemIdx) { + default: + return NULL; + } + case 3341: /* module 13 call 13 */ + switch (itemIdx) { + default: + return NULL; + } + case 3342: /* module 13 call 14 */ + switch (itemIdx) { + case 0: + return STR_IT_encoded_proposal; + default: + return NULL; + } + case 3343: /* module 13 call 15 */ + switch (itemIdx) { + case 0: + return STR_IT_encoded_proposal; + default: + return NULL; + } + case 3344: /* module 13 call 16 */ + switch (itemIdx) { + case 0: + return STR_IT_encoded_proposal; + default: + return NULL; + } + case 3345: /* module 13 call 17 */ + switch (itemIdx) { + case 0: + return STR_IT_encoded_proposal; + default: + return NULL; + } + case 3348: /* module 13 call 20 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + default: + return NULL; + } + case 3352: /* module 13 call 24 */ + switch (itemIdx) { + case 0: + return STR_IT_prop_index; + default: + return NULL; + } + case 3587: /* module 14 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal; + case 1: + return STR_IT_index; + case 2: + return STR_IT_approve; + default: + return NULL; + } + case 3588: /* module 14 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal_hash; + case 1: + return STR_IT_index; + case 2: + return STR_IT_proposal_weight_bound; + case 3: + return STR_IT_length_bound; + default: + return NULL; + } + case 3589: /* module 14 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal_hash; + default: + return NULL; + } + case 3845: /* module 15 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal_hash; + default: + return NULL; + } + case 4097: /* module 16 call 1 */ + switch (itemIdx) { + default: + return NULL; + } + case 4098: /* module 16 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_candidate_count; + default: + return NULL; + } + case 4100: /* module 16 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_has_replacement; + default: + return NULL; + } + case 4101: /* module 16 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_num_voters; + case 1: + return STR_IT_num_defunct; + default: + return NULL; + } + case 4352: /* module 17 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + default: + return NULL; + } + case 4353: /* module 17 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + default: + return NULL; + } + case 4354: /* module 17 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_remove; + case 1: + return STR_IT_add; + default: + return NULL; + } + case 4355: /* module 17 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_members; + default: + return NULL; + } + case 4356: /* module 17 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 4357: /* module 17 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + default: + return NULL; + } + case 4358: /* module 17 call 6 */ + switch (itemIdx) { + default: + return NULL; + } + case 4608: /* module 18 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + case 1: + return STR_IT_beneficiary; + default: + return NULL; + } + case 4609: /* module 18 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal_id; + default: + return NULL; + } + case 4610: /* module 18 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_proposal_id; + default: + return NULL; + } + case 4864: /* module 19 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_dest; + case 1: + return STR_IT_ethereum_signature; + default: + return NULL; + } + case 4866: /* module 19 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_dest; + case 1: + return STR_IT_ethereum_signature; + case 2: + return STR_IT_statement; + default: + return NULL; + } + case 4867: /* module 19 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_statement; + default: + return NULL; + } + case 4868: /* module 19 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_old; + case 1: + return STR_IT_new_; + case 2: + return STR_IT_maybe_preclaim; + default: + return NULL; + } + case 6400: /* module 25 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_account; + default: + return NULL; + } + case 6403: /* module 25 call 3 */ + switch (itemIdx) { + default: + return NULL; + } + case 6404: /* module 25 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_reg_index; + case 1: + return STR_IT_max_fee; + default: + return NULL; + } + case 6405: /* module 25 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_reg_index; + default: + return NULL; + } + case 6406: /* module 25 call 6 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + case 1: + return STR_IT_fee; + default: + return NULL; + } + case 6407: /* module 25 call 7 */ + switch (itemIdx) { + case 0: + return STR_IT_index; + case 1: + return STR_IT_new_; + default: + return NULL; + } + case 6410: /* module 25 call 10 */ + switch (itemIdx) { + case 0: + return STR_IT_target; + default: + return NULL; + } + case 6413: /* module 25 call 13 */ + switch (itemIdx) { + case 0: + return STR_IT_sub; + default: + return NULL; + } + case 6414: /* module 25 call 14 */ + switch (itemIdx) { + default: + return NULL; + } + case 6656: /* module 26 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + default: + return NULL; + } + case 6657: /* module 26 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_pos; + default: + return NULL; + } + case 6658: /* module 26 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_amount; + case 2: + return STR_IT_tip; + default: + return NULL; + } + case 6659: /* module 26 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_pos; + default: + return NULL; + } + case 6660: /* module 26 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_candidate; + case 1: + return STR_IT_approve; + default: + return NULL; + } + case 6661: /* module 26 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_approve; + default: + return NULL; + } + case 6662: /* module 26 call 6 */ + switch (itemIdx) { + default: + return NULL; + } + case 6663: /* module 26 call 7 */ + switch (itemIdx) { + case 0: + return STR_IT_founder; + case 1: + return STR_IT_max_members; + case 2: + return STR_IT_rules; + default: + return NULL; + } + case 6664: /* module 26 call 8 */ + switch (itemIdx) { + default: + return NULL; + } + case 6665: /* module 26 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_forgive; + default: + return NULL; + } + case 6667: /* module 26 call 11 */ + switch (itemIdx) { + case 0: + return STR_IT_max; + default: + return NULL; + } + case 6913: /* module 27 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_lost; + case 1: + return STR_IT_rescuer; + default: + return NULL; + } + case 6915: /* module 27 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_account; + default: + return NULL; + } + case 6916: /* module 27 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_lost; + case 1: + return STR_IT_rescuer; + default: + return NULL; + } + case 6917: /* module 27 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_account; + default: + return NULL; + } + case 6918: /* module 27 call 6 */ + switch (itemIdx) { + case 0: + return STR_IT_rescuer; + default: + return NULL; + } + case 6919: /* module 27 call 7 */ + switch (itemIdx) { + default: + return NULL; + } + case 6920: /* module 27 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_account; + default: + return NULL; + } + case 7168: /* module 28 call 0 */ + switch (itemIdx) { + default: + return NULL; + } + case 7169: /* module 28 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_target; + default: + return NULL; + } + case 7172: /* module 28 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_schedule1_index; + case 1: + return STR_IT_schedule2_index; + default: + return NULL; + } + case 7680: /* module 30 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_real; + case 1: + return STR_IT_force_proxy_type; + case 2: + return STR_IT_call; + default: + return NULL; + } + case 7681: /* module 30 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_delegate; + case 1: + return STR_IT_proxy_type; + case 2: + return STR_IT_delay; + default: + return NULL; + } + case 7682: /* module 30 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_delegate; + case 1: + return STR_IT_proxy_type; + case 2: + return STR_IT_delay; + default: + return NULL; + } + case 7683: /* module 30 call 3 */ + switch (itemIdx) { + default: + return NULL; + } + case 7684: /* module 30 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_proxy_type; + case 1: + return STR_IT_delay; + case 2: + return STR_IT_index; + default: + return NULL; + } + case 7685: /* module 30 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_spawner; + case 1: + return STR_IT_proxy_type; + case 2: + return STR_IT_index; + case 3: + return STR_IT_height; + case 4: + return STR_IT_ext_index; + default: + return NULL; + } + case 7689: /* module 30 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_delegate; + case 1: + return STR_IT_real; + case 2: + return STR_IT_force_proxy_type; + case 3: + return STR_IT_call; + default: + return NULL; + } + case 7936: /* module 31 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_other_signatories; + case 1: + return STR_IT_call; + default: + return NULL; + } + case 7937: /* module 31 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_threshold; + case 1: + return STR_IT_other_signatories; + case 2: + return STR_IT_maybe_timepoint; + case 3: + return STR_IT_call; + case 4: + return STR_IT_store_call; + case 5: + return STR_IT_max_weight; + default: + return NULL; + } + case 7938: /* module 31 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_threshold; + case 1: + return STR_IT_other_signatories; + case 2: + return STR_IT_maybe_timepoint; + case 3: + return STR_IT_call_hash; + case 4: + return STR_IT_max_weight; + default: + return NULL; + } + case 7939: /* module 31 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_threshold; + case 1: + return STR_IT_other_signatories; + case 2: + return STR_IT_timepoint; + case 3: + return STR_IT_call_hash; + default: + return NULL; + } + case 8192: /* module 32 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_bytes; + default: + return NULL; + } + case 8193: /* module 32 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 8194: /* module 32 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 8195: /* module 32 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 8960: /* module 35 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + case 1: + return STR_IT_description; + default: + return NULL; + } + case 8961: /* module 35 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + default: + return NULL; + } + case 8962: /* module 35 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + case 1: + return STR_IT_curator; + case 2: + return STR_IT_fee; + default: + return NULL; + } + case 8963: /* module 35 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + default: + return NULL; + } + case 8964: /* module 35 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + default: + return NULL; + } + case 8965: /* module 35 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + case 1: + return STR_IT_beneficiary; + default: + return NULL; + } + case 8966: /* module 35 call 6 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + default: + return NULL; + } + case 8967: /* module 35 call 7 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + default: + return NULL; + } + case 8968: /* module 35 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_bounty_id; + case 1: + return STR_IT_remark; + default: + return NULL; + } + case 9216: /* module 36 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_reason; + case 1: + return STR_IT_who; + default: + return NULL; + } + case 9217: /* module 36 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 9218: /* module 36 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_reason; + case 1: + return STR_IT_who; + case 2: + return STR_IT_tip_value; + default: + return NULL; + } + case 9219: /* module 36 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + case 1: + return STR_IT_tip_value; + default: + return NULL; + } + case 9220: /* module 36 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 9221: /* module 36 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_hash; + default: + return NULL; + } + case 9476: /* module 37 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_maybe_max_voters; + case 1: + return STR_IT_maybe_max_targets; + default: + return NULL; + } + case 9728: /* module 38 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + case 1: + return STR_IT_duration; + default: + return NULL; + } + case 9729: /* module 38 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_amount; + case 1: + return STR_IT_duration; + default: + return NULL; + } + case 9984: /* module 39 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_dislocated; + default: + return NULL; + } + case 9985: /* module 39 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_lighter; + default: + return NULL; + } + case 13056: /* module 51 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13057: /* module 51 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13058: /* module 51 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13059: /* module 51 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13060: /* module 51 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13061: /* module 51 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13062: /* module 51 call 6 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13063: /* module 51 call 7 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13064: /* module 51 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13065: /* module 51 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13066: /* module 51 call 10 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13067: /* module 51 call 11 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13068: /* module 51 call 12 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13069: /* module 51 call 13 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13070: /* module 51 call 14 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13071: /* module 51 call 15 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13072: /* module 51 call 16 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13073: /* module 51 call 17 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13074: /* module 51 call 18 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13075: /* module 51 call 19 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13076: /* module 51 call 20 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13077: /* module 51 call 21 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13078: /* module 51 call 22 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13079: /* module 51 call 23 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13080: /* module 51 call 24 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13081: /* module 51 call 25 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13082: /* module 51 call 26 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13083: /* module 51 call 27 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13084: /* module 51 call 28 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13085: /* module 51 call 29 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13086: /* module 51 call 30 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13087: /* module 51 call 31 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13088: /* module 51 call 32 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13089: /* module 51 call 33 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13090: /* module 51 call 34 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13091: /* module 51 call 35 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13092: /* module 51 call 36 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13093: /* module 51 call 37 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13094: /* module 51 call 38 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13095: /* module 51 call 39 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13096: /* module 51 call 40 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13097: /* module 51 call 41 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13098: /* module 51 call 42 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13099: /* module 51 call 43 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 13100: /* module 51 call 44 */ + switch (itemIdx) { + case 0: + return STR_IT_new_; + default: + return NULL; + } + case 14592: /* module 57 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_up_to; + default: + return NULL; + } + case 15364: /* module 60 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_channels; + default: + return NULL; + } + case 15365: /* module 60 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_channels; + default: + return NULL; + } + case 15872: /* module 62 call 0 */ + switch (itemIdx) { + default: + return NULL; + } + case 17925: /* module 70 call 5 */ + switch (itemIdx) { + default: + return NULL; + } + case 18432: /* module 72 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_duration; + case 1: + return STR_IT_lease_period_index; + default: + return NULL; + } + case 18433: /* module 72 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_para; + case 1: + return STR_IT_auction_index; + case 2: + return STR_IT_first_slot; + case 3: + return STR_IT_last_slot; + case 4: + return STR_IT_amount; + default: + return NULL; + } + case 18434: /* module 72 call 2 */ + switch (itemIdx) { + default: + return NULL; + } +#endif + default: + return NULL; + } + + return NULL; +} + +parser_error_t _getMethod_ItemValue_V10( + pd_Method_V10_t* m, + uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx, + char* outValue, uint16_t outValueLen, + uint8_t pageIdx, uint8_t* pageCount) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 1024: /* module 4 call 0 */ + switch (itemIdx) { + case 0: /* balances_transfer_V10 - dest */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_transfer_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_transfer_V10 - amount */; + return _toStringCompactBalance( + &m->nested.balances_transfer_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1026: /* module 4 call 2 */ + switch (itemIdx) { + case 0: /* balances_force_transfer_V10 - source */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_force_transfer_V10.source, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_force_transfer_V10 - dest */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_force_transfer_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* balances_force_transfer_V10 - amount */; + return _toStringCompactBalance( + &m->nested.balances_force_transfer_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1027: /* module 4 call 3 */ + switch (itemIdx) { + case 0: /* balances_transfer_keep_alive_V10 - dest */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_transfer_keep_alive_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_transfer_keep_alive_V10 - amount */; + return _toStringCompactBalance( + &m->nested.balances_transfer_keep_alive_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1028: /* module 4 call 4 */ + switch (itemIdx) { + case 0: /* balances_transfer_all_V10 - dest */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.balances_transfer_all_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_transfer_all_V10 - keep_alive */; + return _toStringbool( + &m->basic.balances_transfer_all_V10.keep_alive, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1536: /* module 6 call 0 */ + switch (itemIdx) { + case 0: /* staking_bond_V10 - controller */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.staking_bond_V10.controller, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_bond_V10 - amount */; + return _toStringCompactBalance( + &m->basic.staking_bond_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* staking_bond_V10 - payee */; + return _toStringRewardDestination_V10( + &m->basic.staking_bond_V10.payee, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1537: /* module 6 call 1 */ + switch (itemIdx) { + case 0: /* staking_bond_extra_V10 - amount */; + return _toStringCompactBalance( + &m->basic.staking_bond_extra_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1538: /* module 6 call 2 */ + switch (itemIdx) { + case 0: /* staking_unbond_V10 - amount */; + return _toStringCompactBalance( + &m->basic.staking_unbond_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1539: /* module 6 call 3 */ + switch (itemIdx) { + case 0: /* staking_withdraw_unbonded_V10 - num_slashing_spans */; + return _toStringu32( + &m->basic.staking_withdraw_unbonded_V10.num_slashing_spans, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1540: /* module 6 call 4 */ + switch (itemIdx) { + case 0: /* staking_validate_V10 - prefs */; + return _toStringValidatorPrefs_V10( + &m->basic.staking_validate_V10.prefs, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1541: /* module 6 call 5 */ + switch (itemIdx) { + case 0: /* staking_nominate_V10 - targets */; + return _toStringVecLookupasStaticLookupSource_V10( + &m->basic.staking_nominate_V10.targets, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1542: /* module 6 call 6 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 1543: /* module 6 call 7 */ + switch (itemIdx) { + case 0: /* staking_set_payee_V10 - payee */; + return _toStringRewardDestination_V10( + &m->basic.staking_set_payee_V10.payee, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1544: /* module 6 call 8 */ + switch (itemIdx) { + case 0: /* staking_set_controller_V10 - controller */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.staking_set_controller_V10.controller, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1554: /* module 6 call 18 */ + switch (itemIdx) { + case 0: /* staking_payout_stakers_V10 - validator_stash */; + return _toStringAccountId_V10( + &m->basic.staking_payout_stakers_V10.validator_stash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_payout_stakers_V10 - era */; + return _toStringEraIndex_V10( + &m->basic.staking_payout_stakers_V10.era, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1555: /* module 6 call 19 */ + switch (itemIdx) { + case 0: /* staking_rebond_V10 - amount */; + return _toStringCompactBalance( + &m->basic.staking_rebond_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 2048: /* module 8 call 0 */ + switch (itemIdx) { + case 0: /* session_set_keys_V10 - keys */; + return _toStringKeys_V10( + &m->basic.session_set_keys_V10.keys, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* session_set_keys_V10 - proof */; + return _toStringBytes( + &m->basic.session_set_keys_V10.proof, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 2049: /* module 8 call 1 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6144: /* module 24 call 0 */ + switch (itemIdx) { + case 0: /* utility_batch_V10 - calls */; + return _toStringVecCall( + &m->basic.utility_batch_V10.calls, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6146: /* module 24 call 2 */ + switch (itemIdx) { + case 0: /* utility_batch_all_V10 - calls */; + return _toStringVecCall( + &m->basic.utility_batch_all_V10.calls, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } +#ifdef SUBSTRATE_PARSER_FULL + case 0: /* module 0 call 0 */ + switch (itemIdx) { + case 0: /* system_fill_block_V10 - ratio */; + return _toStringPerbill_V10( + &m->nested.system_fill_block_V10.ratio, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1: /* module 0 call 1 */ + switch (itemIdx) { + case 0: /* system_remark_V10 - remark */; + return _toStringVecu8( + &m->nested.system_remark_V10.remark, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 2: /* module 0 call 2 */ + switch (itemIdx) { + case 0: /* system_set_heap_pages_V10 - pages */; + return _toStringu64( + &m->nested.system_set_heap_pages_V10.pages, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3: /* module 0 call 3 */ + switch (itemIdx) { + case 0: /* system_set_code_V10 - code */; + return _toStringVecu8( + &m->nested.system_set_code_V10.code, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4: /* module 0 call 4 */ + switch (itemIdx) { + case 0: /* system_set_code_without_checks_V10 - code */; + return _toStringVecu8( + &m->nested.system_set_code_without_checks_V10.code, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8: /* module 0 call 8 */ + switch (itemIdx) { + case 0: /* system_remark_with_event_V10 - remark */; + return _toStringVecu8( + &m->nested.system_remark_with_event_V10.remark, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 512: /* module 2 call 0 */ + switch (itemIdx) { + case 0: /* timestamp_set_V10 - now */; + return _toStringCompactu64( + &m->basic.timestamp_set_V10.now, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 768: /* module 3 call 0 */ + switch (itemIdx) { + case 0: /* indices_claim_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_claim_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 769: /* module 3 call 1 */ + switch (itemIdx) { + case 0: /* indices_transfer_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.indices_transfer_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* indices_transfer_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_transfer_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 770: /* module 3 call 2 */ + switch (itemIdx) { + case 0: /* indices_free_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_free_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 771: /* module 3 call 3 */ + switch (itemIdx) { + case 0: /* indices_force_transfer_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.indices_force_transfer_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* indices_force_transfer_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_force_transfer_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* indices_force_transfer_V10 - freeze */; + return _toStringbool( + &m->basic.indices_force_transfer_V10.freeze, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 772: /* module 3 call 4 */ + switch (itemIdx) { + case 0: /* indices_freeze_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_freeze_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1025: /* module 4 call 1 */ + switch (itemIdx) { + case 0: /* balances_set_balance_V10 - who */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_set_balance_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_set_balance_V10 - new_free */; + return _toStringCompactBalance( + &m->nested.balances_set_balance_V10.new_free, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* balances_set_balance_V10 - new_reserved */; + return _toStringCompactBalance( + &m->nested.balances_set_balance_V10.new_reserved, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1029: /* module 4 call 5 */ + switch (itemIdx) { + case 0: /* balances_force_unreserve_V10 - who */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.balances_force_unreserve_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* balances_force_unreserve_V10 - amount */; + return _toStringBalance( + &m->basic.balances_force_unreserve_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1545: /* module 6 call 9 */ + switch (itemIdx) { + case 0: /* staking_set_validator_count_V10 - new_ */; + return _toStringCompactu32( + &m->basic.staking_set_validator_count_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1546: /* module 6 call 10 */ + switch (itemIdx) { + case 0: /* staking_increase_validator_count_V10 - additional */; + return _toStringCompactu32( + &m->basic.staking_increase_validator_count_V10.additional, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1548: /* module 6 call 12 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 1549: /* module 6 call 13 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 1551: /* module 6 call 15 */ + switch (itemIdx) { + case 0: /* staking_force_unstake_V10 - stash */; + return _toStringAccountId_V10( + &m->basic.staking_force_unstake_V10.stash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_force_unstake_V10 - num_slashing_spans */; + return _toStringu32( + &m->basic.staking_force_unstake_V10.num_slashing_spans, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1552: /* module 6 call 16 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 1556: /* module 6 call 20 */ + switch (itemIdx) { + case 0: /* staking_set_history_depth_V10 - new_history_depth */; + return _toStringCompactu32( + &m->basic.staking_set_history_depth_V10.new_history_depth, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_set_history_depth_V10 - era_items_deleted */; + return _toStringCompactu32( + &m->basic.staking_set_history_depth_V10.era_items_deleted, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1557: /* module 6 call 21 */ + switch (itemIdx) { + case 0: /* staking_reap_stash_V10 - stash */; + return _toStringAccountId_V10( + &m->basic.staking_reap_stash_V10.stash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_reap_stash_V10 - num_slashing_spans */; + return _toStringu32( + &m->basic.staking_reap_stash_V10.num_slashing_spans, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1558: /* module 6 call 22 */ + switch (itemIdx) { + case 0: /* staking_kick_V10 - who */; + return _toStringVecLookupasStaticLookupSource_V10( + &m->basic.staking_kick_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1560: /* module 6 call 24 */ + switch (itemIdx) { + case 0: /* staking_chill_other_V10 - controller */; + return _toStringAccountId_V10( + &m->basic.staking_chill_other_V10.controller, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 1561: /* module 6 call 25 */ + switch (itemIdx) { + case 0: /* staking_force_apply_min_commission_V10 - validator_stash */; + return _toStringAccountId_V10( + &m->basic.staking_force_apply_min_commission_V10.validator_stash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 2562: /* module 10 call 2 */ + switch (itemIdx) { + case 0: /* grandpa_note_stalled_V10 - delay */; + return _toStringBlockNumber( + &m->basic.grandpa_note_stalled_V10.delay, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* grandpa_note_stalled_V10 - best_finalized_block_number */; + return _toStringBlockNumber( + &m->basic.grandpa_note_stalled_V10.best_finalized_block_number, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3329: /* module 13 call 1 */ + switch (itemIdx) { + case 0: /* democracy_second_V10 - proposal */; + return _toStringCompactu32( + &m->basic.democracy_second_V10.proposal, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* democracy_second_V10 - seconds_upper_bound */; + return _toStringCompactu32( + &m->basic.democracy_second_V10.seconds_upper_bound, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3331: /* module 13 call 3 */ + switch (itemIdx) { + case 0: /* democracy_emergency_cancel_V10 - ref_index */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_emergency_cancel_V10.ref_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3337: /* module 13 call 9 */ + switch (itemIdx) { + case 0: /* democracy_cancel_referendum_V10 - ref_index */; + return _toStringCompactu32( + &m->basic.democracy_cancel_referendum_V10.ref_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3338: /* module 13 call 10 */ + switch (itemIdx) { + case 0: /* democracy_cancel_queued_V10 - which */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_cancel_queued_V10.which, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3340: /* module 13 call 12 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 3341: /* module 13 call 13 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 3342: /* module 13 call 14 */ + switch (itemIdx) { + case 0: /* democracy_note_preimage_V10 - encoded_proposal */; + return _toStringBytes( + &m->basic.democracy_note_preimage_V10.encoded_proposal, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3343: /* module 13 call 15 */ + switch (itemIdx) { + case 0: /* democracy_note_preimage_operational_V10 - encoded_proposal */; + return _toStringBytes( + &m->basic.democracy_note_preimage_operational_V10.encoded_proposal, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3344: /* module 13 call 16 */ + switch (itemIdx) { + case 0: /* democracy_note_imminent_preimage_V10 - encoded_proposal */; + return _toStringBytes( + &m->basic.democracy_note_imminent_preimage_V10.encoded_proposal, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3345: /* module 13 call 17 */ + switch (itemIdx) { + case 0: /* democracy_note_imminent_preimage_operational_V10 - encoded_proposal */; + return _toStringBytes( + &m->basic.democracy_note_imminent_preimage_operational_V10.encoded_proposal, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3348: /* module 13 call 20 */ + switch (itemIdx) { + case 0: /* democracy_remove_vote_V10 - index */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_remove_vote_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3352: /* module 13 call 24 */ + switch (itemIdx) { + case 0: /* democracy_cancel_proposal_V10 - prop_index */; + return _toStringCompactu32( + &m->basic.democracy_cancel_proposal_V10.prop_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3587: /* module 14 call 3 */ + switch (itemIdx) { + case 0: /* council_vote_V10 - proposal */; + return _toStringHash( + &m->basic.council_vote_V10.proposal, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* council_vote_V10 - index */; + return _toStringCompactu32( + &m->basic.council_vote_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* council_vote_V10 - approve */; + return _toStringbool( + &m->basic.council_vote_V10.approve, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3588: /* module 14 call 4 */ + switch (itemIdx) { + case 0: /* council_close_V10 - proposal_hash */; + return _toStringHash( + &m->basic.council_close_V10.proposal_hash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* council_close_V10 - index */; + return _toStringCompactu32( + &m->basic.council_close_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* council_close_V10 - proposal_weight_bound */; + return _toStringCompactu64( + &m->basic.council_close_V10.proposal_weight_bound, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* council_close_V10 - length_bound */; + return _toStringCompactu32( + &m->basic.council_close_V10.length_bound, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3589: /* module 14 call 5 */ + switch (itemIdx) { + case 0: /* council_disapprove_proposal_V10 - proposal_hash */; + return _toStringHash( + &m->basic.council_disapprove_proposal_V10.proposal_hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 3845: /* module 15 call 5 */ + switch (itemIdx) { + case 0: /* technicalcommittee_disapprove_proposal_V10 - proposal_hash */; + return _toStringHash( + &m->basic.technicalcommittee_disapprove_proposal_V10.proposal_hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4097: /* module 16 call 1 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 4098: /* module 16 call 2 */ + switch (itemIdx) { + case 0: /* phragmenelection_submit_candidacy_V10 - candidate_count */; + return _toStringCompactu32( + &m->basic.phragmenelection_submit_candidacy_V10.candidate_count, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4100: /* module 16 call 4 */ + switch (itemIdx) { + case 0: /* phragmenelection_remove_member_V10 - who */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.phragmenelection_remove_member_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* phragmenelection_remove_member_V10 - has_replacement */; + return _toStringbool( + &m->basic.phragmenelection_remove_member_V10.has_replacement, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4101: /* module 16 call 5 */ + switch (itemIdx) { + case 0: /* phragmenelection_clean_defunct_voters_V10 - num_voters */; + return _toStringu32( + &m->basic.phragmenelection_clean_defunct_voters_V10.num_voters, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* phragmenelection_clean_defunct_voters_V10 - num_defunct */; + return _toStringu32( + &m->basic.phragmenelection_clean_defunct_voters_V10.num_defunct, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4352: /* module 17 call 0 */ + switch (itemIdx) { + case 0: /* technicalmembership_add_member_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_add_member_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4353: /* module 17 call 1 */ + switch (itemIdx) { + case 0: /* technicalmembership_remove_member_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_remove_member_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4354: /* module 17 call 2 */ + switch (itemIdx) { + case 0: /* technicalmembership_swap_member_V10 - remove */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_swap_member_V10.remove, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* technicalmembership_swap_member_V10 - add */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_swap_member_V10.add, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4355: /* module 17 call 3 */ + switch (itemIdx) { + case 0: /* technicalmembership_reset_members_V10 - members */; + return _toStringVecAccountId_V10( + &m->basic.technicalmembership_reset_members_V10.members, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4356: /* module 17 call 4 */ + switch (itemIdx) { + case 0: /* technicalmembership_change_key_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_change_key_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4357: /* module 17 call 5 */ + switch (itemIdx) { + case 0: /* technicalmembership_set_prime_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_set_prime_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4358: /* module 17 call 6 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 4608: /* module 18 call 0 */ + switch (itemIdx) { + case 0: /* treasury_propose_spend_V10 - amount */; + return _toStringCompactBalance( + &m->basic.treasury_propose_spend_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* treasury_propose_spend_V10 - beneficiary */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.treasury_propose_spend_V10.beneficiary, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4609: /* module 18 call 1 */ + switch (itemIdx) { + case 0: /* treasury_reject_proposal_V10 - proposal_id */; + return _toStringCompactu32( + &m->basic.treasury_reject_proposal_V10.proposal_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4610: /* module 18 call 2 */ + switch (itemIdx) { + case 0: /* treasury_approve_proposal_V10 - proposal_id */; + return _toStringCompactu32( + &m->basic.treasury_approve_proposal_V10.proposal_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4864: /* module 19 call 0 */ + switch (itemIdx) { + case 0: /* claims_claim_V10 - dest */; + return _toStringAccountId_V10( + &m->basic.claims_claim_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* claims_claim_V10 - ethereum_signature */; + return _toStringEcdsaSignature_V10( + &m->basic.claims_claim_V10.ethereum_signature, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4866: /* module 19 call 2 */ + switch (itemIdx) { + case 0: /* claims_claim_attest_V10 - dest */; + return _toStringAccountId_V10( + &m->basic.claims_claim_attest_V10.dest, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* claims_claim_attest_V10 - ethereum_signature */; + return _toStringEcdsaSignature_V10( + &m->basic.claims_claim_attest_V10.ethereum_signature, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* claims_claim_attest_V10 - statement */; + return _toStringBytes( + &m->basic.claims_claim_attest_V10.statement, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4867: /* module 19 call 3 */ + switch (itemIdx) { + case 0: /* claims_attest_V10 - statement */; + return _toStringBytes( + &m->basic.claims_attest_V10.statement, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4868: /* module 19 call 4 */ + switch (itemIdx) { + case 0: /* claims_move_claim_V10 - old */; + return _toStringEthereumAddress_V10( + &m->basic.claims_move_claim_V10.old, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* claims_move_claim_V10 - new_ */; + return _toStringEthereumAddress_V10( + &m->basic.claims_move_claim_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* claims_move_claim_V10 - maybe_preclaim */; + return _toStringOptionAccountId_V10( + &m->basic.claims_move_claim_V10.maybe_preclaim, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6400: /* module 25 call 0 */ + switch (itemIdx) { + case 0: /* identity_add_registrar_V10 - account */; + return _toStringAccountId_V10( + &m->basic.identity_add_registrar_V10.account, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6403: /* module 25 call 3 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6404: /* module 25 call 4 */ + switch (itemIdx) { + case 0: /* identity_request_judgement_V10 - reg_index */; + return _toStringCompactu32( + &m->basic.identity_request_judgement_V10.reg_index, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* identity_request_judgement_V10 - max_fee */; + return _toStringCompactu128( + &m->basic.identity_request_judgement_V10.max_fee, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6405: /* module 25 call 5 */ + switch (itemIdx) { + case 0: /* identity_cancel_request_V10 - reg_index */; + return _toStringRegistrarIndex_V10( + &m->basic.identity_cancel_request_V10.reg_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6406: /* module 25 call 6 */ + switch (itemIdx) { + case 0: /* identity_set_fee_V10 - index */; + return _toStringCompactu32( + &m->basic.identity_set_fee_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* identity_set_fee_V10 - fee */; + return _toStringCompactu128( + &m->basic.identity_set_fee_V10.fee, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6407: /* module 25 call 7 */ + switch (itemIdx) { + case 0: /* identity_set_account_id_V10 - index */; + return _toStringCompactu32( + &m->basic.identity_set_account_id_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* identity_set_account_id_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.identity_set_account_id_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6410: /* module 25 call 10 */ + switch (itemIdx) { + case 0: /* identity_kill_identity_V10 - target */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.identity_kill_identity_V10.target, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6413: /* module 25 call 13 */ + switch (itemIdx) { + case 0: /* identity_remove_sub_V10 - sub */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.identity_remove_sub_V10.sub, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6414: /* module 25 call 14 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6656: /* module 26 call 0 */ + switch (itemIdx) { + case 0: /* society_bid_V10 - amount */; + return _toStringBalance( + &m->basic.society_bid_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6657: /* module 26 call 1 */ + switch (itemIdx) { + case 0: /* society_unbid_V10 - pos */; + return _toStringu32( + &m->basic.society_unbid_V10.pos, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6658: /* module 26 call 2 */ + switch (itemIdx) { + case 0: /* society_vouch_V10 - who */; + return _toStringAccountId_V10( + &m->basic.society_vouch_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* society_vouch_V10 - amount */; + return _toStringBalance( + &m->basic.society_vouch_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* society_vouch_V10 - tip */; + return _toStringBalance( + &m->basic.society_vouch_V10.tip, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6659: /* module 26 call 3 */ + switch (itemIdx) { + case 0: /* society_unvouch_V10 - pos */; + return _toStringu32( + &m->basic.society_unvouch_V10.pos, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6660: /* module 26 call 4 */ + switch (itemIdx) { + case 0: /* society_vote_V10 - candidate */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.society_vote_V10.candidate, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* society_vote_V10 - approve */; + return _toStringbool( + &m->basic.society_vote_V10.approve, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6661: /* module 26 call 5 */ + switch (itemIdx) { + case 0: /* society_defender_vote_V10 - approve */; + return _toStringbool( + &m->basic.society_defender_vote_V10.approve, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6662: /* module 26 call 6 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6663: /* module 26 call 7 */ + switch (itemIdx) { + case 0: /* society_found_V10 - founder */; + return _toStringAccountId_V10( + &m->basic.society_found_V10.founder, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* society_found_V10 - max_members */; + return _toStringu32( + &m->basic.society_found_V10.max_members, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* society_found_V10 - rules */; + return _toStringBytes( + &m->basic.society_found_V10.rules, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6664: /* module 26 call 8 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6665: /* module 26 call 9 */ + switch (itemIdx) { + case 0: /* society_judge_suspended_member_V10 - who */; + return _toStringAccountId_V10( + &m->basic.society_judge_suspended_member_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* society_judge_suspended_member_V10 - forgive */; + return _toStringbool( + &m->basic.society_judge_suspended_member_V10.forgive, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6667: /* module 26 call 11 */ + switch (itemIdx) { + case 0: /* society_set_max_members_V10 - max */; + return _toStringu32( + &m->basic.society_set_max_members_V10.max, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6913: /* module 27 call 1 */ + switch (itemIdx) { + case 0: /* recovery_set_recovered_V10 - lost */; + return _toStringAccountId_V10( + &m->basic.recovery_set_recovered_V10.lost, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* recovery_set_recovered_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_set_recovered_V10.rescuer, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6915: /* module 27 call 3 */ + switch (itemIdx) { + case 0: /* recovery_initiate_recovery_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_initiate_recovery_V10.account, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6916: /* module 27 call 4 */ + switch (itemIdx) { + case 0: /* recovery_vouch_recovery_V10 - lost */; + return _toStringAccountId_V10( + &m->basic.recovery_vouch_recovery_V10.lost, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* recovery_vouch_recovery_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_vouch_recovery_V10.rescuer, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6917: /* module 27 call 5 */ + switch (itemIdx) { + case 0: /* recovery_claim_recovery_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_claim_recovery_V10.account, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6918: /* module 27 call 6 */ + switch (itemIdx) { + case 0: /* recovery_close_recovery_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_close_recovery_V10.rescuer, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6919: /* module 27 call 7 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 6920: /* module 27 call 8 */ + switch (itemIdx) { + case 0: /* recovery_cancel_recovered_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_cancel_recovered_V10.account, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7168: /* module 28 call 0 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 7169: /* module 28 call 1 */ + switch (itemIdx) { + case 0: /* vesting_vest_other_V10 - target */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.vesting_vest_other_V10.target, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7172: /* module 28 call 4 */ + switch (itemIdx) { + case 0: /* vesting_merge_schedules_V10 - schedule1_index */; + return _toStringu32( + &m->basic.vesting_merge_schedules_V10.schedule1_index, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* vesting_merge_schedules_V10 - schedule2_index */; + return _toStringu32( + &m->basic.vesting_merge_schedules_V10.schedule2_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7680: /* module 30 call 0 */ + switch (itemIdx) { + case 0: /* proxy_proxy_V10 - real */; + return _toStringAccountId_V10( + &m->nested.proxy_proxy_V10.real, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_proxy_V10 - force_proxy_type */; + return _toStringOptionProxyType_V10( + &m->nested.proxy_proxy_V10.force_proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_proxy_V10 - call */; + return _toStringCall( + &m->nested.proxy_proxy_V10.call, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7681: /* module 30 call 1 */ + switch (itemIdx) { + case 0: /* proxy_add_proxy_V10 - delegate */; + return _toStringAccountId_V10( + &m->basic.proxy_add_proxy_V10.delegate, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_add_proxy_V10 - proxy_type */; + return _toStringProxyType_V10( + &m->basic.proxy_add_proxy_V10.proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_add_proxy_V10 - delay */; + return _toStringBlockNumber( + &m->basic.proxy_add_proxy_V10.delay, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7682: /* module 30 call 2 */ + switch (itemIdx) { + case 0: /* proxy_remove_proxy_V10 - delegate */; + return _toStringAccountId_V10( + &m->basic.proxy_remove_proxy_V10.delegate, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_remove_proxy_V10 - proxy_type */; + return _toStringProxyType_V10( + &m->basic.proxy_remove_proxy_V10.proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_remove_proxy_V10 - delay */; + return _toStringBlockNumber( + &m->basic.proxy_remove_proxy_V10.delay, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7683: /* module 30 call 3 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 7684: /* module 30 call 4 */ + switch (itemIdx) { + case 0: /* proxy_anonymous_V10 - proxy_type */; + return _toStringProxyType_V10( + &m->basic.proxy_anonymous_V10.proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_anonymous_V10 - delay */; + return _toStringBlockNumber( + &m->basic.proxy_anonymous_V10.delay, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_anonymous_V10 - index */; + return _toStringu16( + &m->basic.proxy_anonymous_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7685: /* module 30 call 5 */ + switch (itemIdx) { + case 0: /* proxy_kill_anonymous_V10 - spawner */; + return _toStringAccountId_V10( + &m->basic.proxy_kill_anonymous_V10.spawner, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_kill_anonymous_V10 - proxy_type */; + return _toStringProxyType_V10( + &m->basic.proxy_kill_anonymous_V10.proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_kill_anonymous_V10 - index */; + return _toStringu16( + &m->basic.proxy_kill_anonymous_V10.index, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* proxy_kill_anonymous_V10 - height */; + return _toStringCompactu32( + &m->basic.proxy_kill_anonymous_V10.height, + outValue, outValueLen, + pageIdx, pageCount); + case 4: /* proxy_kill_anonymous_V10 - ext_index */; + return _toStringCompactu32( + &m->basic.proxy_kill_anonymous_V10.ext_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7689: /* module 30 call 9 */ + switch (itemIdx) { + case 0: /* proxy_proxy_announced_V10 - delegate */; + return _toStringAccountId_V10( + &m->basic.proxy_proxy_announced_V10.delegate, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* proxy_proxy_announced_V10 - real */; + return _toStringAccountId_V10( + &m->basic.proxy_proxy_announced_V10.real, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* proxy_proxy_announced_V10 - force_proxy_type */; + return _toStringOptionProxyType_V10( + &m->basic.proxy_proxy_announced_V10.force_proxy_type, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* proxy_proxy_announced_V10 - call */; + return _toStringCall( + &m->basic.proxy_proxy_announced_V10.call, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7936: /* module 31 call 0 */ + switch (itemIdx) { + case 0: /* multisig_as_multi_threshold_1_V10 - other_signatories */; + return _toStringVecAccountId_V10( + &m->nested.multisig_as_multi_threshold_1_V10.other_signatories, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* multisig_as_multi_threshold_1_V10 - call */; + return _toStringCall( + &m->nested.multisig_as_multi_threshold_1_V10.call, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7937: /* module 31 call 1 */ + switch (itemIdx) { + case 0: /* multisig_as_multi_V10 - threshold */; + return _toStringu16( + &m->nested.multisig_as_multi_V10.threshold, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* multisig_as_multi_V10 - other_signatories */; + return _toStringVecAccountId_V10( + &m->nested.multisig_as_multi_V10.other_signatories, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* multisig_as_multi_V10 - maybe_timepoint */; + return _toStringOptionTimepoint_V10( + &m->nested.multisig_as_multi_V10.maybe_timepoint, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* multisig_as_multi_V10 - call */; + return _toStringOpaqueCall_V10( + &m->nested.multisig_as_multi_V10.call, + outValue, outValueLen, + pageIdx, pageCount); + case 4: /* multisig_as_multi_V10 - store_call */; + return _toStringbool( + &m->nested.multisig_as_multi_V10.store_call, + outValue, outValueLen, + pageIdx, pageCount); + case 5: /* multisig_as_multi_V10 - max_weight */; + return _toStringWeight_V10( + &m->nested.multisig_as_multi_V10.max_weight, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7938: /* module 31 call 2 */ + switch (itemIdx) { + case 0: /* multisig_approve_as_multi_V10 - threshold */; + return _toStringu16( + &m->nested.multisig_approve_as_multi_V10.threshold, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* multisig_approve_as_multi_V10 - other_signatories */; + return _toStringVecAccountId_V10( + &m->nested.multisig_approve_as_multi_V10.other_signatories, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* multisig_approve_as_multi_V10 - maybe_timepoint */; + return _toStringOptionTimepoint_V10( + &m->nested.multisig_approve_as_multi_V10.maybe_timepoint, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* multisig_approve_as_multi_V10 - call_hash */; + return _toStringH256( + &m->nested.multisig_approve_as_multi_V10.call_hash, + outValue, outValueLen, + pageIdx, pageCount); + case 4: /* multisig_approve_as_multi_V10 - max_weight */; + return _toStringWeight_V10( + &m->nested.multisig_approve_as_multi_V10.max_weight, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 7939: /* module 31 call 3 */ + switch (itemIdx) { + case 0: /* multisig_cancel_as_multi_V10 - threshold */; + return _toStringu16( + &m->nested.multisig_cancel_as_multi_V10.threshold, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* multisig_cancel_as_multi_V10 - other_signatories */; + return _toStringVecAccountId_V10( + &m->nested.multisig_cancel_as_multi_V10.other_signatories, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* multisig_cancel_as_multi_V10 - timepoint */; + return _toStringTimepoint_V10( + &m->nested.multisig_cancel_as_multi_V10.timepoint, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* multisig_cancel_as_multi_V10 - call_hash */; + return _toStringH256( + &m->nested.multisig_cancel_as_multi_V10.call_hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8192: /* module 32 call 0 */ + switch (itemIdx) { + case 0: /* preimage_note_preimage_V10 - bytes */; + return _toStringVecu8( + &m->basic.preimage_note_preimage_V10.bytes, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8193: /* module 32 call 1 */ + switch (itemIdx) { + case 0: /* preimage_unnote_preimage_V10 - hash */; + return _toStringHash( + &m->basic.preimage_unnote_preimage_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8194: /* module 32 call 2 */ + switch (itemIdx) { + case 0: /* preimage_request_preimage_V10 - hash */; + return _toStringHash( + &m->basic.preimage_request_preimage_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8195: /* module 32 call 3 */ + switch (itemIdx) { + case 0: /* preimage_unrequest_preimage_V10 - hash */; + return _toStringHash( + &m->basic.preimage_unrequest_preimage_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8960: /* module 35 call 0 */ + switch (itemIdx) { + case 0: /* bounties_propose_bounty_V10 - amount */; + return _toStringCompactBalance( + &m->basic.bounties_propose_bounty_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* bounties_propose_bounty_V10 - description */; + return _toStringBytes( + &m->basic.bounties_propose_bounty_V10.description, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8961: /* module 35 call 1 */ + switch (itemIdx) { + case 0: /* bounties_approve_bounty_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_approve_bounty_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8962: /* module 35 call 2 */ + switch (itemIdx) { + case 0: /* bounties_propose_curator_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_propose_curator_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* bounties_propose_curator_V10 - curator */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.bounties_propose_curator_V10.curator, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* bounties_propose_curator_V10 - fee */; + return _toStringCompactBalance( + &m->basic.bounties_propose_curator_V10.fee, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8963: /* module 35 call 3 */ + switch (itemIdx) { + case 0: /* bounties_unassign_curator_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_unassign_curator_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8964: /* module 35 call 4 */ + switch (itemIdx) { + case 0: /* bounties_accept_curator_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_accept_curator_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8965: /* module 35 call 5 */ + switch (itemIdx) { + case 0: /* bounties_award_bounty_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_award_bounty_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* bounties_award_bounty_V10 - beneficiary */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.bounties_award_bounty_V10.beneficiary, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8966: /* module 35 call 6 */ + switch (itemIdx) { + case 0: /* bounties_claim_bounty_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_claim_bounty_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8967: /* module 35 call 7 */ + switch (itemIdx) { + case 0: /* bounties_close_bounty_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_close_bounty_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8968: /* module 35 call 8 */ + switch (itemIdx) { + case 0: /* bounties_extend_bounty_expiry_V10 - bounty_id */; + return _toStringCompactu32( + &m->basic.bounties_extend_bounty_expiry_V10.bounty_id, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* bounties_extend_bounty_expiry_V10 - remark */; + return _toStringBytes( + &m->basic.bounties_extend_bounty_expiry_V10.remark, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9216: /* module 36 call 0 */ + switch (itemIdx) { + case 0: /* tips_report_awesome_V10 - reason */; + return _toStringBytes( + &m->basic.tips_report_awesome_V10.reason, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* tips_report_awesome_V10 - who */; + return _toStringAccountId_V10( + &m->basic.tips_report_awesome_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9217: /* module 36 call 1 */ + switch (itemIdx) { + case 0: /* tips_retract_tip_V10 - hash */; + return _toStringHash( + &m->basic.tips_retract_tip_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9218: /* module 36 call 2 */ + switch (itemIdx) { + case 0: /* tips_tip_new_V10 - reason */; + return _toStringBytes( + &m->basic.tips_tip_new_V10.reason, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* tips_tip_new_V10 - who */; + return _toStringAccountId_V10( + &m->basic.tips_tip_new_V10.who, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* tips_tip_new_V10 - tip_value */; + return _toStringCompactu128( + &m->basic.tips_tip_new_V10.tip_value, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9219: /* module 36 call 3 */ + switch (itemIdx) { + case 0: /* tips_tip_V10 - hash */; + return _toStringHash( + &m->basic.tips_tip_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* tips_tip_V10 - tip_value */; + return _toStringCompactu128( + &m->basic.tips_tip_V10.tip_value, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9220: /* module 36 call 4 */ + switch (itemIdx) { + case 0: /* tips_close_tip_V10 - hash */; + return _toStringHash( + &m->basic.tips_close_tip_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9221: /* module 36 call 5 */ + switch (itemIdx) { + case 0: /* tips_slash_tip_V10 - hash */; + return _toStringHash( + &m->basic.tips_slash_tip_V10.hash, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9476: /* module 37 call 4 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_governance_fallback_V10 - maybe_max_voters */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V10.maybe_max_voters, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* electionprovidermultiphase_governance_fallback_V10 - maybe_max_targets */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V10.maybe_max_targets, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9728: /* module 38 call 0 */ + switch (itemIdx) { + case 0: /* gilt_place_bid_V10 - amount */; + return _toStringCompactBalance( + &m->basic.gilt_place_bid_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* gilt_place_bid_V10 - duration */; + return _toStringu32( + &m->basic.gilt_place_bid_V10.duration, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9729: /* module 38 call 1 */ + switch (itemIdx) { + case 0: /* gilt_retract_bid_V10 - amount */; + return _toStringCompactBalance( + &m->basic.gilt_retract_bid_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* gilt_retract_bid_V10 - duration */; + return _toStringu32( + &m->basic.gilt_retract_bid_V10.duration, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9984: /* module 39 call 0 */ + switch (itemIdx) { + case 0: /* bagslist_rebag_V10 - dislocated */; + return _toStringAccountId_V10( + &m->basic.bagslist_rebag_V10.dislocated, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 9985: /* module 39 call 1 */ + switch (itemIdx) { + case 0: /* bagslist_put_in_front_of_V10 - lighter */; + return _toStringAccountId_V10( + &m->basic.bagslist_put_in_front_of_V10.lighter, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13056: /* module 51 call 0 */ + switch (itemIdx) { + case 0: /* configuration_set_validation_upgrade_cooldown_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_validation_upgrade_cooldown_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13057: /* module 51 call 1 */ + switch (itemIdx) { + case 0: /* configuration_set_validation_upgrade_delay_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_validation_upgrade_delay_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13058: /* module 51 call 2 */ + switch (itemIdx) { + case 0: /* configuration_set_code_retention_period_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_code_retention_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13059: /* module 51 call 3 */ + switch (itemIdx) { + case 0: /* configuration_set_max_code_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_code_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13060: /* module 51 call 4 */ + switch (itemIdx) { + case 0: /* configuration_set_max_pov_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_pov_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13061: /* module 51 call 5 */ + switch (itemIdx) { + case 0: /* configuration_set_max_head_data_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_head_data_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13062: /* module 51 call 6 */ + switch (itemIdx) { + case 0: /* configuration_set_parathread_cores_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_parathread_cores_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13063: /* module 51 call 7 */ + switch (itemIdx) { + case 0: /* configuration_set_parathread_retries_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_parathread_retries_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13064: /* module 51 call 8 */ + switch (itemIdx) { + case 0: /* configuration_set_group_rotation_frequency_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_group_rotation_frequency_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13065: /* module 51 call 9 */ + switch (itemIdx) { + case 0: /* configuration_set_chain_availability_period_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_chain_availability_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13066: /* module 51 call 10 */ + switch (itemIdx) { + case 0: /* configuration_set_thread_availability_period_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_thread_availability_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13067: /* module 51 call 11 */ + switch (itemIdx) { + case 0: /* configuration_set_scheduling_lookahead_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_scheduling_lookahead_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13068: /* module 51 call 12 */ + switch (itemIdx) { + case 0: /* configuration_set_max_validators_per_core_V10 - new_ */; + return _toStringOptionu32( + &m->basic.configuration_set_max_validators_per_core_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13069: /* module 51 call 13 */ + switch (itemIdx) { + case 0: /* configuration_set_max_validators_V10 - new_ */; + return _toStringOptionu32( + &m->basic.configuration_set_max_validators_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13070: /* module 51 call 14 */ + switch (itemIdx) { + case 0: /* configuration_set_dispute_period_V10 - new_ */; + return _toStringSessionIndex_V10( + &m->basic.configuration_set_dispute_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13071: /* module 51 call 15 */ + switch (itemIdx) { + case 0: /* configuration_set_dispute_post_conclusion_acceptance_period_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_dispute_post_conclusion_acceptance_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13072: /* module 51 call 16 */ + switch (itemIdx) { + case 0: /* configuration_set_dispute_max_spam_slots_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_dispute_max_spam_slots_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13073: /* module 51 call 17 */ + switch (itemIdx) { + case 0: /* configuration_set_dispute_conclusion_by_time_out_period_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_dispute_conclusion_by_time_out_period_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13074: /* module 51 call 18 */ + switch (itemIdx) { + case 0: /* configuration_set_no_show_slots_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_no_show_slots_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13075: /* module 51 call 19 */ + switch (itemIdx) { + case 0: /* configuration_set_n_delay_tranches_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_n_delay_tranches_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13076: /* module 51 call 20 */ + switch (itemIdx) { + case 0: /* configuration_set_zeroth_delay_tranche_width_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_zeroth_delay_tranche_width_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13077: /* module 51 call 21 */ + switch (itemIdx) { + case 0: /* configuration_set_needed_approvals_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_needed_approvals_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13078: /* module 51 call 22 */ + switch (itemIdx) { + case 0: /* configuration_set_relay_vrf_modulo_samples_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_relay_vrf_modulo_samples_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13079: /* module 51 call 23 */ + switch (itemIdx) { + case 0: /* configuration_set_max_upward_queue_count_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_upward_queue_count_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13080: /* module 51 call 24 */ + switch (itemIdx) { + case 0: /* configuration_set_max_upward_queue_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_upward_queue_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13081: /* module 51 call 25 */ + switch (itemIdx) { + case 0: /* configuration_set_max_downward_message_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_downward_message_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13082: /* module 51 call 26 */ + switch (itemIdx) { + case 0: /* configuration_set_ump_service_total_weight_V10 - new_ */; + return _toStringWeight_V10( + &m->basic.configuration_set_ump_service_total_weight_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13083: /* module 51 call 27 */ + switch (itemIdx) { + case 0: /* configuration_set_max_upward_message_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_upward_message_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13084: /* module 51 call 28 */ + switch (itemIdx) { + case 0: /* configuration_set_max_upward_message_num_per_candidate_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_max_upward_message_num_per_candidate_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13085: /* module 51 call 29 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_open_request_ttl_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_open_request_ttl_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13086: /* module 51 call 30 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_sender_deposit_V10 - new_ */; + return _toStringBalance( + &m->basic.configuration_set_hrmp_sender_deposit_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13087: /* module 51 call 31 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_recipient_deposit_V10 - new_ */; + return _toStringBalance( + &m->basic.configuration_set_hrmp_recipient_deposit_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13088: /* module 51 call 32 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_channel_max_capacity_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_channel_max_capacity_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13089: /* module 51 call 33 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_channel_max_total_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_channel_max_total_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13090: /* module 51 call 34 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_max_parachain_inbound_channels_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_max_parachain_inbound_channels_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13091: /* module 51 call 35 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_max_parathread_inbound_channels_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_max_parathread_inbound_channels_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13092: /* module 51 call 36 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_channel_max_message_size_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_channel_max_message_size_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13093: /* module 51 call 37 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_max_parachain_outbound_channels_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_max_parachain_outbound_channels_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13094: /* module 51 call 38 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_max_parathread_outbound_channels_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_max_parathread_outbound_channels_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13095: /* module 51 call 39 */ + switch (itemIdx) { + case 0: /* configuration_set_hrmp_max_message_num_per_candidate_V10 - new_ */; + return _toStringu32( + &m->basic.configuration_set_hrmp_max_message_num_per_candidate_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13096: /* module 51 call 40 */ + switch (itemIdx) { + case 0: /* configuration_set_ump_max_individual_weight_V10 - new_ */; + return _toStringWeight_V10( + &m->basic.configuration_set_ump_max_individual_weight_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13097: /* module 51 call 41 */ + switch (itemIdx) { + case 0: /* configuration_set_pvf_checking_enabled_V10 - new_ */; + return _toStringbool( + &m->basic.configuration_set_pvf_checking_enabled_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13098: /* module 51 call 42 */ + switch (itemIdx) { + case 0: /* configuration_set_pvf_voting_ttl_V10 - new_ */; + return _toStringSessionIndex_V10( + &m->basic.configuration_set_pvf_voting_ttl_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13099: /* module 51 call 43 */ + switch (itemIdx) { + case 0: /* configuration_set_minimum_validation_upgrade_delay_V10 - new_ */; + return _toStringBlockNumber( + &m->basic.configuration_set_minimum_validation_upgrade_delay_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 13100: /* module 51 call 44 */ + switch (itemIdx) { + case 0: /* configuration_set_bypass_consistency_check_V10 - new_ */; + return _toStringbool( + &m->basic.configuration_set_bypass_consistency_check_V10.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 14592: /* module 57 call 0 */ + switch (itemIdx) { + case 0: /* initializer_force_approve_V10 - up_to */; + return _toStringBlockNumber( + &m->basic.initializer_force_approve_V10.up_to, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 15364: /* module 60 call 4 */ + switch (itemIdx) { + case 0: /* hrmp_force_process_hrmp_open_V10 - channels */; + return _toStringu32( + &m->basic.hrmp_force_process_hrmp_open_V10.channels, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 15365: /* module 60 call 5 */ + switch (itemIdx) { + case 0: /* hrmp_force_process_hrmp_close_V10 - channels */; + return _toStringu32( + &m->basic.hrmp_force_process_hrmp_close_V10.channels, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 15872: /* module 62 call 0 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 17925: /* module 70 call 5 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 18432: /* module 72 call 0 */ + switch (itemIdx) { + case 0: /* auctions_new_auction_V10 - duration */; + return _toStringCompactu32( + &m->basic.auctions_new_auction_V10.duration, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* auctions_new_auction_V10 - lease_period_index */; + return _toStringCompactu32( + &m->basic.auctions_new_auction_V10.lease_period_index, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 18433: /* module 72 call 1 */ + switch (itemIdx) { + case 0: /* auctions_bid_V10 - para */; + return _toStringCompactu32( + &m->basic.auctions_bid_V10.para, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* auctions_bid_V10 - auction_index */; + return _toStringCompactu32( + &m->basic.auctions_bid_V10.auction_index, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* auctions_bid_V10 - first_slot */; + return _toStringCompactu32( + &m->basic.auctions_bid_V10.first_slot, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* auctions_bid_V10 - last_slot */; + return _toStringCompactu32( + &m->basic.auctions_bid_V10.last_slot, + outValue, outValueLen, + pageIdx, pageCount); + case 4: /* auctions_bid_V10 - amount */; + return _toStringCompactBalance( + &m->basic.auctions_bid_V10.amount, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 18434: /* module 72 call 2 */ + switch (itemIdx) { + default: + return parser_no_data; + } +#endif + default: + return parser_ok; + } + + return parser_ok; +} + +bool _getMethod_ItemIsExpert_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 1539: // Staking:Withdraw Unbonded + switch (itemIdx) { + case 0: // Num slashing spans + return true; + default: + return false; + } + case 1551: // Staking:Force unstake + switch (itemIdx) { + case 1: // Num slashing spans + return true; + default: + return false; + } + case 1557: // Staking:Reap stash + switch (itemIdx) { + case 1: // Num slashing spans + return true; + default: + return false; + } + + default: + return false; + } +} + +bool _getMethod_IsNestingSupported_V10(uint8_t moduleIdx, uint8_t callIdx) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { + case 512: // Timestamp:Set + case 768: // Indices:Claim + case 769: // Indices:Transfer + case 770: // Indices:Free + case 771: // Indices:Force transfer + case 772: // Indices:Freeze + case 1028: // Balances:Transfer all + case 1029: // Balances:Force unreserve + case 1536: // Staking:Bond + case 1537: // Staking:Bond extra + case 1538: // Staking:Unbond + case 1539: // Staking:Withdraw Unbonded + case 1540: // Staking:Validate + case 1541: // Staking:Nominate + case 1542: // Staking:Chill + case 1543: // Staking:Set payee + case 1544: // Staking:Set controller + case 1545: // Staking:Set validator count + case 1546: // Staking:Increase validator count + case 1548: // Staking:Force no eras + case 1549: // Staking:Force new era + case 1551: // Staking:Force unstake + case 1552: // Staking:Force new era always + case 1554: // Staking:Payout stakers + case 1555: // Staking:Rebond + case 1556: // Staking:Set history depth + case 1557: // Staking:Reap stash + case 1558: // Staking:Kick + case 1560: // Staking:Chill other + case 1561: // Staking:Force apply min commission + case 2048: // Session:Set keys + case 2049: // Session:Purge keys + case 2562: // Grandpa:Note stalled + case 3329: // Democracy:Second + case 3331: // Democracy:Emergency cancel + case 3337: // Democracy:Cancel referendum + case 3338: // Democracy:Cancel queued + case 3340: // Democracy:Undelegate + case 3341: // Democracy:Clear public proposals + case 3342: // Democracy:Note preimage + case 3343: // Democracy:Note preimage operational + case 3344: // Democracy:Note imminent preimage + case 3345: // Democracy:Note imminent preimage operational + case 3348: // Democracy:Remove vote + case 3352: // Democracy:Cancel proposal + case 3587: // Council:Vote + case 3588: // Council:Close + case 3589: // Council:Disapprove proposal + case 3845: // TechnicalCommittee:Disapprove proposal + case 4097: // PhragmenElection:Remove voter + case 4098: // PhragmenElection:Submit candidacy + case 4100: // PhragmenElection:Remove member + case 4101: // PhragmenElection:Clean defunct voters + case 4352: // TechnicalMembership:Add member + case 4353: // TechnicalMembership:Remove member + case 4354: // TechnicalMembership:Swap member + case 4355: // TechnicalMembership:Reset members + case 4356: // TechnicalMembership:Change key + case 4357: // TechnicalMembership:Set prime + case 4358: // TechnicalMembership:Clear prime + case 4608: // Treasury:Propose spend + case 4609: // Treasury:Reject proposal + case 4610: // Treasury:Approve proposal + case 4864: // Claims:Claim + case 4866: // Claims:Claim attest + case 4867: // Claims:Attest + case 4868: // Claims:Move claim + case 6144: // Utility:Batch + case 6146: // Utility:Batch all + case 6400: // Identity:Add registrar + case 6403: // Identity:Clear identity + case 6404: // Identity:Request judgement + case 6405: // Identity:Cancel request + case 6406: // Identity:Set fee + case 6407: // Identity:Set account id + case 6410: // Identity:Kill identity + case 6413: // Identity:Remove sub + case 6414: // Identity:Quit sub + case 6656: // Society:Bid + case 6657: // Society:Unbid + case 6658: // Society:Vouch + case 6659: // Society:Unvouch + case 6660: // Society:Vote + case 6661: // Society:Defender vote + case 6662: // Society:Payout + case 6663: // Society:Found + case 6664: // Society:Unfound + case 6665: // Society:Judge suspended member + case 6667: // Society:Set max members + case 6913: // Recovery:Set recovered + case 6915: // Recovery:Initiate recovery + case 6916: // Recovery:Vouch recovery + case 6917: // Recovery:Claim recovery + case 6918: // Recovery:Close recovery + case 6919: // Recovery:Remove recovery + case 6920: // Recovery:Cancel recovered + case 7168: // Vesting:Vest + case 7169: // Vesting:Vest other + case 7172: // Vesting:Merge schedules + case 7681: // Proxy:Add proxy + case 7682: // Proxy:Remove proxy + case 7683: // Proxy:Remove proxies + case 7684: // Proxy:Anonymous + case 7685: // Proxy:Kill anonymous + case 7689: // Proxy:Proxy announced + case 8192: // Preimage:Note preimage + case 8193: // Preimage:Unnote preimage + case 8194: // Preimage:Request preimage + case 8195: // Preimage:Unrequest preimage + case 8960: // Bounties:Propose bounty + case 8961: // Bounties:Approve bounty + case 8962: // Bounties:Propose curator + case 8963: // Bounties:Unassign curator + case 8964: // Bounties:Accept curator + case 8965: // Bounties:Award bounty + case 8966: // Bounties:Claim bounty + case 8967: // Bounties:Close bounty + case 8968: // Bounties:Extend bounty expiry + case 9216: // Tips:Report awesome + case 9217: // Tips:Retract tip + case 9218: // Tips:Tip new + case 9219: // Tips:Tip + case 9220: // Tips:Close tip + case 9221: // Tips:Slash tip + case 9476: // ElectionProviderMultiPhase:Governance fallback + case 9728: // Gilt:Place bid + case 9729: // Gilt:Retract bid + case 9984: // BagsList:Rebag + case 9985: // BagsList:Put in front of + case 13056: // Configuration:Set validation upgrade cooldown + case 13057: // Configuration:Set validation upgrade delay + case 13058: // Configuration:Set code retention period + case 13059: // Configuration:Set max code size + case 13060: // Configuration:Set max pov size + case 13061: // Configuration:Set max head data size + case 13062: // Configuration:Set parathread cores + case 13063: // Configuration:Set parathread retries + case 13064: // Configuration:Set group rotation frequency + case 13065: // Configuration:Set chain availability period + case 13066: // Configuration:Set thread availability period + case 13067: // Configuration:Set scheduling lookahead + case 13068: // Configuration:Set max validators per core + case 13069: // Configuration:Set max validators + case 13070: // Configuration:Set dispute period + case 13071: // Configuration:Set dispute post conclusion acceptance period + case 13072: // Configuration:Set dispute max spam slots + case 13073: // Configuration:Set dispute conclusion by time out period + case 13074: // Configuration:Set no show slots + case 13075: // Configuration:Set n delay tranches + case 13076: // Configuration:Set zeroth delay tranche width + case 13077: // Configuration:Set needed approvals + case 13078: // Configuration:Set relay vrf modulo samples + case 13079: // Configuration:Set max upward queue count + case 13080: // Configuration:Set max upward queue size + case 13081: // Configuration:Set max downward message size + case 13082: // Configuration:Set ump service total weight + case 13083: // Configuration:Set max upward message size + case 13084: // Configuration:Set max upward message num per candidate + case 13085: // Configuration:Set hrmp open request ttl + case 13086: // Configuration:Set hrmp sender deposit + case 13087: // Configuration:Set hrmp recipient deposit + case 13088: // Configuration:Set hrmp channel max capacity + case 13089: // Configuration:Set hrmp channel max total size + case 13090: // Configuration:Set hrmp max parachain inbound channels + case 13091: // Configuration:Set hrmp max parathread inbound channels + case 13092: // Configuration:Set hrmp channel max message size + case 13093: // Configuration:Set hrmp max parachain outbound channels + case 13094: // Configuration:Set hrmp max parathread outbound channels + case 13095: // Configuration:Set hrmp max message num per candidate + case 13096: // Configuration:Set ump max individual weight + case 13097: // Configuration:Set pvf checking enabled + case 13098: // Configuration:Set pvf voting ttl + case 13099: // Configuration:Set minimum validation upgrade delay + case 13100: // Configuration:Set bypass consistency check + case 14592: // Initializer:Force approve + case 15364: // Hrmp:Force process hrmp open + case 15365: // Hrmp:Force process hrmp close + case 15872: // ParasDisputes:Force unfreeze + case 17925: // Registrar:Reserve + case 18432: // Auctions:New auction + case 18433: // Auctions:Bid + case 18434: // Auctions:Cancel auction + return false; + default: + return true; + } +} diff --git a/app/src/substrate/substrate_dispatch_V10.h b/app/src/substrate/substrate_dispatch_V10.h new file mode 100644 index 00000000..11d32215 --- /dev/null +++ b/app/src/substrate/substrate_dispatch_V10.h @@ -0,0 +1,49 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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 +extern "C" { +#endif + +#include "parser_impl.h" +#include "stdbool.h" +#include "substrate_functions.h" +#include "substrate_functions_V10.h" +#include +#include + +parser_error_t _readMethod_V10(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V10_t* method); + +const char* _getMethod_ModuleName_V10(uint8_t moduleIdx); + +const char* _getMethod_Name_V10(uint8_t moduleIdx, uint8_t callIdx); + +const char* _getMethod_ItemName_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); + +uint8_t _getMethod_NumItems_V10(uint8_t moduleIdx, uint8_t callIdx); + +parser_error_t _getMethod_ItemValue_V10( + pd_Method_V10_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_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); +bool _getMethod_IsNestingSupported_V10(uint8_t moduleIdx, uint8_t callIdx); + +#ifdef __cplusplus +} +#endif diff --git a/app/src/substrate/substrate_functions_V10.h b/app/src/substrate/substrate_functions_V10.h new file mode 100644 index 00000000..fe6c5f3f --- /dev/null +++ b/app/src/substrate/substrate_functions_V10.h @@ -0,0 +1,721 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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 +extern "C" { +#endif + +#include "parser_common.h" +#include "substrate_methods_V10.h" +#include "substrate_types_V10.h" +#include +#include + +// Read functions +parser_error_t _readAccountId_V10(parser_context_t* c, pd_AccountId_V10_t* v); +parser_error_t _readAccountIndex_V10(parser_context_t* c, pd_AccountIndex_V10_t* v); +parser_error_t _readAccountVoteBalanceOf_V10(parser_context_t* c, pd_AccountVoteBalanceOf_V10_t* v); +parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V10(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V10_t* v); +parser_error_t _readBoxCallOrHashOfT_V10(parser_context_t* c, pd_BoxCallOrHashOfT_V10_t* v); +parser_error_t _readBoxEquivocationProofHashBlockNumber_V10(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V10_t* v); +parser_error_t _readBoxEquivocationProofHeader_V10(parser_context_t* c, pd_BoxEquivocationProofHeader_V10_t* v); +parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V10(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v); +parser_error_t _readBoxMultiLocation_V10(parser_context_t* c, pd_BoxMultiLocation_V10_t* v); +parser_error_t _readBoxPalletsOrigin_V10(parser_context_t* c, pd_BoxPalletsOrigin_V10_t* v); +parser_error_t _readBoxRawSolutionSolutionOfT_V10(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V10_t* v); +parser_error_t _readBoxTasConfigIProposal_V10(parser_context_t* c, pd_BoxTasConfigIProposal_V10_t* v); +parser_error_t _readBoxVersionedMultiAssets_V10(parser_context_t* c, pd_BoxVersionedMultiAssets_V10_t* v); +parser_error_t _readBoxVersionedMultiLocation_V10(parser_context_t* c, pd_BoxVersionedMultiLocation_V10_t* v); +parser_error_t _readBoxVersionedXcmTasSysConfigCall_V10(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V10_t* v); +parser_error_t _readBoxVersionedXcmTuple_V10(parser_context_t* c, pd_BoxVersionedXcmTuple_V10_t* v); +parser_error_t _readCallHashOf_V10(parser_context_t* c, pd_CallHashOf_V10_t* v); +parser_error_t _readCompactAccountIndex_V10(parser_context_t* c, pd_CompactAccountIndex_V10_t* v); +parser_error_t _readCompactPerBill_V10(parser_context_t* c, pd_CompactPerBill_V10_t* v); +parser_error_t _readConviction_V10(parser_context_t* c, pd_Conviction_V10_t* v); +parser_error_t _readEcdsaSignature_V10(parser_context_t* c, pd_EcdsaSignature_V10_t* v); +parser_error_t _readElectionScore_V10(parser_context_t* c, pd_ElectionScore_V10_t* v); +parser_error_t _readEraIndex_V10(parser_context_t* c, pd_EraIndex_V10_t* v); +parser_error_t _readEthereumAddress_V10(parser_context_t* c, pd_EthereumAddress_V10_t* v); +parser_error_t _readHeadData_V10(parser_context_t* c, pd_HeadData_V10_t* v); +parser_error_t _readHeartbeatBlockNumber_V10(parser_context_t* c, pd_HeartbeatBlockNumber_V10_t* v); +parser_error_t _readHrmpChannelId_V10(parser_context_t* c, pd_HrmpChannelId_V10_t* v); +parser_error_t _readIdentityFields_V10(parser_context_t* c, pd_IdentityFields_V10_t* v); +parser_error_t _readJudgementBalanceOfT_V10(parser_context_t* c, pd_JudgementBalanceOfT_V10_t* v); +parser_error_t _readJudgement_V10(parser_context_t* c, pd_Judgement_V10_t* v); +parser_error_t _readKeyOwnerProof_V10(parser_context_t* c, pd_KeyOwnerProof_V10_t* v); +parser_error_t _readKeyValue_V10(parser_context_t* c, pd_KeyValue_V10_t* v); +parser_error_t _readKey_V10(parser_context_t* c, pd_Key_V10_t* v); +parser_error_t _readKeys_V10(parser_context_t* c, pd_Keys_V10_t* v); +parser_error_t _readLeasePeriodOfT_V10(parser_context_t* c, pd_LeasePeriodOfT_V10_t* v); +parser_error_t _readLookupasStaticLookupSource_V10(parser_context_t* c, pd_LookupasStaticLookupSource_V10_t* v); +parser_error_t _readMemberCount_V10(parser_context_t* c, pd_MemberCount_V10_t* v); +parser_error_t _readMultiSignature_V10(parser_context_t* c, pd_MultiSignature_V10_t* v); +parser_error_t _readMultiSigner_V10(parser_context_t* c, pd_MultiSigner_V10_t* v); +parser_error_t _readNextConfigDescriptor_V10(parser_context_t* c, pd_NextConfigDescriptor_V10_t* v); +parser_error_t _readOpaqueCall_V10(parser_context_t* c, pd_OpaqueCall_V10_t* v); +parser_error_t _readOptionAccountId_V10(parser_context_t* c, pd_OptionAccountId_V10_t* v); +parser_error_t _readOptionElectionScore_V10(parser_context_t* c, pd_OptionElectionScore_V10_t* v); +parser_error_t _readOptionMultiSignature_V10(parser_context_t* c, pd_OptionMultiSignature_V10_t* v); +parser_error_t _readOptionMultiSigner_V10(parser_context_t* c, pd_OptionMultiSigner_V10_t* v); +parser_error_t _readOptionPercent_V10(parser_context_t* c, pd_OptionPercent_V10_t* v); +parser_error_t _readOptionProxyType_V10(parser_context_t* c, pd_OptionProxyType_V10_t* v); +parser_error_t _readOptionReferendumIndex_V10(parser_context_t* c, pd_OptionReferendumIndex_V10_t* v); +parser_error_t _readOptionStatementKind_V10(parser_context_t* c, pd_OptionStatementKind_V10_t* v); +parser_error_t _readOptionTimepoint_V10(parser_context_t* c, pd_OptionTimepoint_V10_t* v); +parser_error_t _readOptionTupleBalanceOfTBalanceOfTBlockNumber_V10(parser_context_t* c, pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t* v); +parser_error_t _readOptionXcmVersion_V10(parser_context_t* c, pd_OptionXcmVersion_V10_t* v); +parser_error_t _readOptionschedulePeriodBlockNumber_V10(parser_context_t* c, pd_OptionschedulePeriodBlockNumber_V10_t* v); +parser_error_t _readOverweightIndex_V10(parser_context_t* c, pd_OverweightIndex_V10_t* v); +parser_error_t _readParaId_V10(parser_context_t* c, pd_ParaId_V10_t* v); +parser_error_t _readParachainsInherentDataHeader_V10(parser_context_t* c, pd_ParachainsInherentDataHeader_V10_t* v); +parser_error_t _readPerbill_V10(parser_context_t* c, pd_Perbill_V10_t* v); +parser_error_t _readPercent_V10(parser_context_t* c, pd_Percent_V10_t* v); +parser_error_t _readProxyType_V10(parser_context_t* c, pd_ProxyType_V10_t* v); +parser_error_t _readPvfCheckStatement_V10(parser_context_t* c, pd_PvfCheckStatement_V10_t* v); +parser_error_t _readReferendumIndex_V10(parser_context_t* c, pd_ReferendumIndex_V10_t* v); +parser_error_t _readRegistrarIndex_V10(parser_context_t* c, pd_RegistrarIndex_V10_t* v); +parser_error_t _readRenouncing_V10(parser_context_t* c, pd_Renouncing_V10_t* v); +parser_error_t _readRewardDestination_V10(parser_context_t* c, pd_RewardDestination_V10_t* v); +parser_error_t _readSessionIndex_V10(parser_context_t* c, pd_SessionIndex_V10_t* v); +parser_error_t _readSolutionOrSnapshotSize_V10(parser_context_t* c, pd_SolutionOrSnapshotSize_V10_t* v); +parser_error_t _readStatementKind_V10(parser_context_t* c, pd_StatementKind_V10_t* v); +parser_error_t _readSupportsAccountId_V10(parser_context_t* c, pd_SupportsAccountId_V10_t* v); +parser_error_t _readTimepoint_V10(parser_context_t* c, pd_Timepoint_V10_t* v); +parser_error_t _readTupleAccountIdData_V10(parser_context_t* c, pd_TupleAccountIdData_V10_t* v); +parser_error_t _readTupleBalanceOfTBalanceOfTBlockNumber_V10(parser_context_t* c, pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t* v); +parser_error_t _readValidationCodeHash_V10(parser_context_t* c, pd_ValidationCodeHash_V10_t* v); +parser_error_t _readValidationCode_V10(parser_context_t* c, pd_ValidationCode_V10_t* v); +parser_error_t _readValidatorPrefs_V10(parser_context_t* c, pd_ValidatorPrefs_V10_t* v); +parser_error_t _readValidatorSignature_V10(parser_context_t* c, pd_ValidatorSignature_V10_t* v); +parser_error_t _readVecAccountId_V10(parser_context_t* c, pd_VecAccountId_V10_t* v); +parser_error_t _readVecKeyValue_V10(parser_context_t* c, pd_VecKeyValue_V10_t* v); +parser_error_t _readVecKey_V10(parser_context_t* c, pd_VecKey_V10_t* v); +parser_error_t _readVecLookupasStaticLookupSource_V10(parser_context_t* c, pd_VecLookupasStaticLookupSource_V10_t* v); +parser_error_t _readVecTupleAccountIdData_V10(parser_context_t* c, pd_VecTupleAccountIdData_V10_t* v); +parser_error_t _readVestingInfoBalanceOfTBlockNumber_V10(parser_context_t* c, pd_VestingInfoBalanceOfTBlockNumber_V10_t* v); +parser_error_t _readWeightLimit_V10(parser_context_t* c, pd_WeightLimit_V10_t* v); +parser_error_t _readWeight_V10(parser_context_t* c, pd_Weight_V10_t* v); +parser_error_t _readXcmVersion_V10(parser_context_t* c, pd_XcmVersion_V10_t* v); +parser_error_t _readschedulePeriodBlockNumber_V10(parser_context_t* c, pd_schedulePeriodBlockNumber_V10_t* v); +parser_error_t _readschedulePriority_V10(parser_context_t* c, pd_schedulePriority_V10_t* v); + +// toString functions +parser_error_t _toStringAccountId_V10( + const pd_AccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringAccountIndex_V10( + const pd_AccountIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringAccountVoteBalanceOf_V10( + const pd_AccountVoteBalanceOf_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V10( + const pd_AuthorityIdasRuntimeAppPublicSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxCallOrHashOfT_V10( + const pd_BoxCallOrHashOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V10( + const pd_BoxEquivocationProofHashBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxEquivocationProofHeader_V10( + const pd_BoxEquivocationProofHeader_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V10( + const pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxMultiLocation_V10( + const pd_BoxMultiLocation_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxPalletsOrigin_V10( + const pd_BoxPalletsOrigin_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxRawSolutionSolutionOfT_V10( + const pd_BoxRawSolutionSolutionOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxTasConfigIProposal_V10( + const pd_BoxTasConfigIProposal_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxVersionedMultiAssets_V10( + const pd_BoxVersionedMultiAssets_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxVersionedMultiLocation_V10( + const pd_BoxVersionedMultiLocation_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V10( + const pd_BoxVersionedXcmTasSysConfigCall_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxVersionedXcmTuple_V10( + const pd_BoxVersionedXcmTuple_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringCallHashOf_V10( + const pd_CallHashOf_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringCompactAccountIndex_V10( + const pd_CompactAccountIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringCompactPerBill_V10( + const pd_CompactPerBill_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringConviction_V10( + const pd_Conviction_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringEcdsaSignature_V10( + const pd_EcdsaSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringElectionScore_V10( + const pd_ElectionScore_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringEraIndex_V10( + const pd_EraIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringEthereumAddress_V10( + const pd_EthereumAddress_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringHeadData_V10( + const pd_HeadData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringHeartbeatBlockNumber_V10( + const pd_HeartbeatBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringHrmpChannelId_V10( + const pd_HrmpChannelId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringIdentityFields_V10( + const pd_IdentityFields_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringJudgementBalanceOfT_V10( + const pd_JudgementBalanceOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringJudgement_V10( + const pd_Judgement_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringKeyOwnerProof_V10( + const pd_KeyOwnerProof_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringKeyValue_V10( + const pd_KeyValue_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringKey_V10( + const pd_Key_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringKeys_V10( + const pd_Keys_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringLeasePeriodOfT_V10( + const pd_LeasePeriodOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringLookupasStaticLookupSource_V10( + const pd_LookupasStaticLookupSource_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringMemberCount_V10( + const pd_MemberCount_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringMultiSignature_V10( + const pd_MultiSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringMultiSigner_V10( + const pd_MultiSigner_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringNextConfigDescriptor_V10( + const pd_NextConfigDescriptor_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOpaqueCall_V10( + const pd_OpaqueCall_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionAccountId_V10( + const pd_OptionAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionElectionScore_V10( + const pd_OptionElectionScore_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionMultiSignature_V10( + const pd_OptionMultiSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionMultiSigner_V10( + const pd_OptionMultiSigner_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionPercent_V10( + const pd_OptionPercent_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionProxyType_V10( + const pd_OptionProxyType_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionReferendumIndex_V10( + const pd_OptionReferendumIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionStatementKind_V10( + const pd_OptionStatementKind_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionTimepoint_V10( + const pd_OptionTimepoint_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionXcmVersion_V10( + const pd_OptionXcmVersion_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionschedulePeriodBlockNumber_V10( + const pd_OptionschedulePeriodBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOverweightIndex_V10( + const pd_OverweightIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringParaId_V10( + const pd_ParaId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringParachainsInherentDataHeader_V10( + const pd_ParachainsInherentDataHeader_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringPerbill_V10( + const pd_Perbill_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringPercent_V10( + const pd_Percent_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringProxyType_V10( + const pd_ProxyType_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringPvfCheckStatement_V10( + const pd_PvfCheckStatement_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringReferendumIndex_V10( + const pd_ReferendumIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringRegistrarIndex_V10( + const pd_RegistrarIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringRenouncing_V10( + const pd_Renouncing_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringRewardDestination_V10( + const pd_RewardDestination_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringSessionIndex_V10( + const pd_SessionIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringSolutionOrSnapshotSize_V10( + const pd_SolutionOrSnapshotSize_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringStatementKind_V10( + const pd_StatementKind_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringSupportsAccountId_V10( + const pd_SupportsAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringTimepoint_V10( + const pd_Timepoint_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringTupleAccountIdData_V10( + const pd_TupleAccountIdData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringValidationCodeHash_V10( + const pd_ValidationCodeHash_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringValidationCode_V10( + const pd_ValidationCode_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringValidatorPrefs_V10( + const pd_ValidatorPrefs_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringValidatorSignature_V10( + const pd_ValidatorSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVecAccountId_V10( + const pd_VecAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVecKeyValue_V10( + const pd_VecKeyValue_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVecKey_V10( + const pd_VecKey_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVecLookupasStaticLookupSource_V10( + const pd_VecLookupasStaticLookupSource_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVecTupleAccountIdData_V10( + const pd_VecTupleAccountIdData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V10( + const pd_VestingInfoBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringWeightLimit_V10( + const pd_WeightLimit_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringWeight_V10( + const pd_Weight_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringXcmVersion_V10( + const pd_XcmVersion_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringschedulePeriodBlockNumber_V10( + const pd_schedulePeriodBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringschedulePriority_V10( + const pd_schedulePriority_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +#ifdef __cplusplus +} +#endif diff --git a/app/src/substrate/substrate_methods_V10.h b/app/src/substrate/substrate_methods_V10.h new file mode 100644 index 00000000..6bc52285 --- /dev/null +++ b/app/src/substrate/substrate_methods_V10.h @@ -0,0 +1,1343 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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 clang diagnostic push +#pragma clang diagnostic ignored "-Wextern-c-compat" +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +#include "substrate_types.h" +#include "substrate_types_V10.h" +#include +#include + +#define PD_CALL_SYSTEM_V10 0 +#define PD_CALL_TIMESTAMP_V10 2 +#define PD_CALL_INDICES_V10 3 +#define PD_CALL_BALANCES_V10 4 +#define PD_CALL_STAKING_V10 6 +#define PD_CALL_SESSION_V10 8 +#define PD_CALL_GRANDPA_V10 10 +#define PD_CALL_DEMOCRACY_V10 13 +#define PD_CALL_COUNCIL_V10 14 +#define PD_CALL_TECHNICALCOMMITTEE_V10 15 +#define PD_CALL_PHRAGMENELECTION_V10 16 +#define PD_CALL_TECHNICALMEMBERSHIP_V10 17 +#define PD_CALL_TREASURY_V10 18 +#define PD_CALL_CLAIMS_V10 19 +#define PD_CALL_UTILITY_V10 24 +#define PD_CALL_IDENTITY_V10 25 +#define PD_CALL_SOCIETY_V10 26 +#define PD_CALL_RECOVERY_V10 27 +#define PD_CALL_VESTING_V10 28 +#define PD_CALL_PROXY_V10 30 +#define PD_CALL_MULTISIG_V10 31 +#define PD_CALL_PREIMAGE_V10 32 +#define PD_CALL_BOUNTIES_V10 35 +#define PD_CALL_TIPS_V10 36 +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_V10 37 +#define PD_CALL_GILT_V10 38 +#define PD_CALL_BAGSLIST_V10 39 +#define PD_CALL_CONFIGURATION_V10 51 +#define PD_CALL_INITIALIZER_V10 57 +#define PD_CALL_HRMP_V10 60 +#define PD_CALL_PARASDISPUTES_V10 62 +#define PD_CALL_REGISTRAR_V10 70 +#define PD_CALL_AUCTIONS_V10 72 + +#define PD_CALL_BALANCES_TRANSFER_ALL_V10 4 +typedef struct { + pd_LookupasStaticLookupSource_V10_t dest; + pd_bool_t keep_alive; +} pd_balances_transfer_all_V10_t; + +#define PD_CALL_STAKING_BOND_V10 0 +typedef struct { + pd_LookupasStaticLookupSource_V10_t controller; + pd_CompactBalance_t amount; + pd_RewardDestination_V10_t payee; +} pd_staking_bond_V10_t; + +#define PD_CALL_STAKING_BOND_EXTRA_V10 1 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_bond_extra_V10_t; + +#define PD_CALL_STAKING_UNBOND_V10 2 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_unbond_V10_t; + +#define PD_CALL_STAKING_WITHDRAW_UNBONDED_V10 3 +typedef struct { + pd_u32_t num_slashing_spans; +} pd_staking_withdraw_unbonded_V10_t; + +#define PD_CALL_STAKING_VALIDATE_V10 4 +typedef struct { + pd_ValidatorPrefs_V10_t prefs; +} pd_staking_validate_V10_t; + +#define PD_CALL_STAKING_NOMINATE_V10 5 +typedef struct { + pd_VecLookupasStaticLookupSource_V10_t targets; +} pd_staking_nominate_V10_t; + +#define PD_CALL_STAKING_CHILL_V10 6 +typedef struct { +} pd_staking_chill_V10_t; + +#define PD_CALL_STAKING_SET_PAYEE_V10 7 +typedef struct { + pd_RewardDestination_V10_t payee; +} pd_staking_set_payee_V10_t; + +#define PD_CALL_STAKING_SET_CONTROLLER_V10 8 +typedef struct { + pd_LookupasStaticLookupSource_V10_t controller; +} pd_staking_set_controller_V10_t; + +#define PD_CALL_STAKING_PAYOUT_STAKERS_V10 18 +typedef struct { + pd_AccountId_V10_t validator_stash; + pd_EraIndex_V10_t era; +} pd_staking_payout_stakers_V10_t; + +#define PD_CALL_STAKING_REBOND_V10 19 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_rebond_V10_t; + +#define PD_CALL_SESSION_SET_KEYS_V10 0 +typedef struct { + pd_Keys_V10_t keys; + pd_Bytes_t proof; +} pd_session_set_keys_V10_t; + +#define PD_CALL_SESSION_PURGE_KEYS_V10 1 +typedef struct { +} pd_session_purge_keys_V10_t; + +#define PD_CALL_UTILITY_BATCH_V10 0 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_V10_t; + +#define PD_CALL_UTILITY_BATCH_ALL_V10 2 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_all_V10_t; + +#ifdef SUBSTRATE_PARSER_FULL + +#define PD_CALL_TIMESTAMP_SET_V10 0 +typedef struct { + pd_Compactu64_t now; +} pd_timestamp_set_V10_t; + +#define PD_CALL_INDICES_CLAIM_V10 0 +typedef struct { + pd_AccountIndex_V10_t index; +} pd_indices_claim_V10_t; + +#define PD_CALL_INDICES_TRANSFER_V10 1 +typedef struct { + pd_AccountId_V10_t new_; + pd_AccountIndex_V10_t index; +} pd_indices_transfer_V10_t; + +#define PD_CALL_INDICES_FREE_V10 2 +typedef struct { + pd_AccountIndex_V10_t index; +} pd_indices_free_V10_t; + +#define PD_CALL_INDICES_FORCE_TRANSFER_V10 3 +typedef struct { + pd_AccountId_V10_t new_; + pd_AccountIndex_V10_t index; + pd_bool_t freeze; +} pd_indices_force_transfer_V10_t; + +#define PD_CALL_INDICES_FREEZE_V10 4 +typedef struct { + pd_AccountIndex_V10_t index; +} pd_indices_freeze_V10_t; + +#define PD_CALL_BALANCES_FORCE_UNRESERVE_V10 5 +typedef struct { + pd_LookupasStaticLookupSource_V10_t who; + pd_Balance_t amount; +} pd_balances_force_unreserve_V10_t; + +#define PD_CALL_STAKING_SET_VALIDATOR_COUNT_V10 9 +typedef struct { + pd_Compactu32_t new_; +} pd_staking_set_validator_count_V10_t; + +#define PD_CALL_STAKING_INCREASE_VALIDATOR_COUNT_V10 10 +typedef struct { + pd_Compactu32_t additional; +} pd_staking_increase_validator_count_V10_t; + +#define PD_CALL_STAKING_FORCE_NO_ERAS_V10 12 +typedef struct { +} pd_staking_force_no_eras_V10_t; + +#define PD_CALL_STAKING_FORCE_NEW_ERA_V10 13 +typedef struct { +} pd_staking_force_new_era_V10_t; + +#define PD_CALL_STAKING_FORCE_UNSTAKE_V10 15 +typedef struct { + pd_AccountId_V10_t stash; + pd_u32_t num_slashing_spans; +} pd_staking_force_unstake_V10_t; + +#define PD_CALL_STAKING_FORCE_NEW_ERA_ALWAYS_V10 16 +typedef struct { +} pd_staking_force_new_era_always_V10_t; + +#define PD_CALL_STAKING_SET_HISTORY_DEPTH_V10 20 +typedef struct { + pd_Compactu32_t new_history_depth; + pd_Compactu32_t era_items_deleted; +} pd_staking_set_history_depth_V10_t; + +#define PD_CALL_STAKING_REAP_STASH_V10 21 +typedef struct { + pd_AccountId_V10_t stash; + pd_u32_t num_slashing_spans; +} pd_staking_reap_stash_V10_t; + +#define PD_CALL_STAKING_KICK_V10 22 +typedef struct { + pd_VecLookupasStaticLookupSource_V10_t who; +} pd_staking_kick_V10_t; + +#define PD_CALL_STAKING_CHILL_OTHER_V10 24 +typedef struct { + pd_AccountId_V10_t controller; +} pd_staking_chill_other_V10_t; + +#define PD_CALL_STAKING_FORCE_APPLY_MIN_COMMISSION_V10 25 +typedef struct { + pd_AccountId_V10_t validator_stash; +} pd_staking_force_apply_min_commission_V10_t; + +#define PD_CALL_GRANDPA_NOTE_STALLED_V10 2 +typedef struct { + pd_BlockNumber_t delay; + pd_BlockNumber_t best_finalized_block_number; +} pd_grandpa_note_stalled_V10_t; + +#define PD_CALL_DEMOCRACY_SECOND_V10 1 +typedef struct { + pd_Compactu32_t proposal; + pd_Compactu32_t seconds_upper_bound; +} pd_democracy_second_V10_t; + +#define PD_CALL_DEMOCRACY_EMERGENCY_CANCEL_V10 3 +typedef struct { + pd_ReferendumIndex_V10_t ref_index; +} pd_democracy_emergency_cancel_V10_t; + +#define PD_CALL_DEMOCRACY_CANCEL_REFERENDUM_V10 9 +typedef struct { + pd_Compactu32_t ref_index; +} pd_democracy_cancel_referendum_V10_t; + +#define PD_CALL_DEMOCRACY_CANCEL_QUEUED_V10 10 +typedef struct { + pd_ReferendumIndex_V10_t which; +} pd_democracy_cancel_queued_V10_t; + +#define PD_CALL_DEMOCRACY_UNDELEGATE_V10 12 +typedef struct { +} pd_democracy_undelegate_V10_t; + +#define PD_CALL_DEMOCRACY_CLEAR_PUBLIC_PROPOSALS_V10 13 +typedef struct { +} pd_democracy_clear_public_proposals_V10_t; + +#define PD_CALL_DEMOCRACY_NOTE_PREIMAGE_V10 14 +typedef struct { + pd_Bytes_t encoded_proposal; +} pd_democracy_note_preimage_V10_t; + +#define PD_CALL_DEMOCRACY_NOTE_PREIMAGE_OPERATIONAL_V10 15 +typedef struct { + pd_Bytes_t encoded_proposal; +} pd_democracy_note_preimage_operational_V10_t; + +#define PD_CALL_DEMOCRACY_NOTE_IMMINENT_PREIMAGE_V10 16 +typedef struct { + pd_Bytes_t encoded_proposal; +} pd_democracy_note_imminent_preimage_V10_t; + +#define PD_CALL_DEMOCRACY_NOTE_IMMINENT_PREIMAGE_OPERATIONAL_V10 17 +typedef struct { + pd_Bytes_t encoded_proposal; +} pd_democracy_note_imminent_preimage_operational_V10_t; + +#define PD_CALL_DEMOCRACY_REMOVE_VOTE_V10 20 +typedef struct { + pd_ReferendumIndex_V10_t index; +} pd_democracy_remove_vote_V10_t; + +#define PD_CALL_DEMOCRACY_CANCEL_PROPOSAL_V10 24 +typedef struct { + pd_Compactu32_t prop_index; +} pd_democracy_cancel_proposal_V10_t; + +#define PD_CALL_COUNCIL_VOTE_V10 3 +typedef struct { + pd_Hash_t proposal; + pd_Compactu32_t index; + pd_bool_t approve; +} pd_council_vote_V10_t; + +#define PD_CALL_COUNCIL_CLOSE_V10 4 +typedef struct { + pd_Hash_t proposal_hash; + pd_Compactu32_t index; + pd_Compactu64_t proposal_weight_bound; + pd_Compactu32_t length_bound; +} pd_council_close_V10_t; + +#define PD_CALL_COUNCIL_DISAPPROVE_PROPOSAL_V10 5 +typedef struct { + pd_Hash_t proposal_hash; +} pd_council_disapprove_proposal_V10_t; + +#define PD_CALL_TECHNICALCOMMITTEE_DISAPPROVE_PROPOSAL_V10 5 +typedef struct { + pd_Hash_t proposal_hash; +} pd_technicalcommittee_disapprove_proposal_V10_t; + +#define PD_CALL_PHRAGMENELECTION_REMOVE_VOTER_V10 1 +typedef struct { +} pd_phragmenelection_remove_voter_V10_t; + +#define PD_CALL_PHRAGMENELECTION_SUBMIT_CANDIDACY_V10 2 +typedef struct { + pd_Compactu32_t candidate_count; +} pd_phragmenelection_submit_candidacy_V10_t; + +#define PD_CALL_PHRAGMENELECTION_REMOVE_MEMBER_V10 4 +typedef struct { + pd_LookupasStaticLookupSource_V10_t who; + pd_bool_t has_replacement; +} pd_phragmenelection_remove_member_V10_t; + +#define PD_CALL_PHRAGMENELECTION_CLEAN_DEFUNCT_VOTERS_V10 5 +typedef struct { + pd_u32_t num_voters; + pd_u32_t num_defunct; +} pd_phragmenelection_clean_defunct_voters_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_ADD_MEMBER_V10 0 +typedef struct { + pd_AccountId_V10_t who; +} pd_technicalmembership_add_member_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_REMOVE_MEMBER_V10 1 +typedef struct { + pd_AccountId_V10_t who; +} pd_technicalmembership_remove_member_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_SWAP_MEMBER_V10 2 +typedef struct { + pd_AccountId_V10_t remove; + pd_AccountId_V10_t add; +} pd_technicalmembership_swap_member_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_RESET_MEMBERS_V10 3 +typedef struct { + pd_VecAccountId_V10_t members; +} pd_technicalmembership_reset_members_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_CHANGE_KEY_V10 4 +typedef struct { + pd_AccountId_V10_t new_; +} pd_technicalmembership_change_key_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_SET_PRIME_V10 5 +typedef struct { + pd_AccountId_V10_t who; +} pd_technicalmembership_set_prime_V10_t; + +#define PD_CALL_TECHNICALMEMBERSHIP_CLEAR_PRIME_V10 6 +typedef struct { +} pd_technicalmembership_clear_prime_V10_t; + +#define PD_CALL_TREASURY_PROPOSE_SPEND_V10 0 +typedef struct { + pd_CompactBalance_t amount; + pd_LookupasStaticLookupSource_V10_t beneficiary; +} pd_treasury_propose_spend_V10_t; + +#define PD_CALL_TREASURY_REJECT_PROPOSAL_V10 1 +typedef struct { + pd_Compactu32_t proposal_id; +} pd_treasury_reject_proposal_V10_t; + +#define PD_CALL_TREASURY_APPROVE_PROPOSAL_V10 2 +typedef struct { + pd_Compactu32_t proposal_id; +} pd_treasury_approve_proposal_V10_t; + +#define PD_CALL_CLAIMS_CLAIM_V10 0 +typedef struct { + pd_AccountId_V10_t dest; + pd_EcdsaSignature_V10_t ethereum_signature; +} pd_claims_claim_V10_t; + +#define PD_CALL_CLAIMS_CLAIM_ATTEST_V10 2 +typedef struct { + pd_AccountId_V10_t dest; + pd_EcdsaSignature_V10_t ethereum_signature; + pd_Bytes_t statement; +} pd_claims_claim_attest_V10_t; + +#define PD_CALL_CLAIMS_ATTEST_V10 3 +typedef struct { + pd_Bytes_t statement; +} pd_claims_attest_V10_t; + +#define PD_CALL_CLAIMS_MOVE_CLAIM_V10 4 +typedef struct { + pd_EthereumAddress_V10_t old; + pd_EthereumAddress_V10_t new_; + pd_OptionAccountId_V10_t maybe_preclaim; +} pd_claims_move_claim_V10_t; + +#define PD_CALL_IDENTITY_ADD_REGISTRAR_V10 0 +typedef struct { + pd_AccountId_V10_t account; +} pd_identity_add_registrar_V10_t; + +#define PD_CALL_IDENTITY_CLEAR_IDENTITY_V10 3 +typedef struct { +} pd_identity_clear_identity_V10_t; + +#define PD_CALL_IDENTITY_REQUEST_JUDGEMENT_V10 4 +typedef struct { + pd_Compactu32_t reg_index; + pd_Compactu128_t max_fee; +} pd_identity_request_judgement_V10_t; + +#define PD_CALL_IDENTITY_CANCEL_REQUEST_V10 5 +typedef struct { + pd_RegistrarIndex_V10_t reg_index; +} pd_identity_cancel_request_V10_t; + +#define PD_CALL_IDENTITY_SET_FEE_V10 6 +typedef struct { + pd_Compactu32_t index; + pd_Compactu128_t fee; +} pd_identity_set_fee_V10_t; + +#define PD_CALL_IDENTITY_SET_ACCOUNT_ID_V10 7 +typedef struct { + pd_Compactu32_t index; + pd_AccountId_V10_t new_; +} pd_identity_set_account_id_V10_t; + +#define PD_CALL_IDENTITY_KILL_IDENTITY_V10 10 +typedef struct { + pd_LookupasStaticLookupSource_V10_t target; +} pd_identity_kill_identity_V10_t; + +#define PD_CALL_IDENTITY_REMOVE_SUB_V10 13 +typedef struct { + pd_LookupasStaticLookupSource_V10_t sub; +} pd_identity_remove_sub_V10_t; + +#define PD_CALL_IDENTITY_QUIT_SUB_V10 14 +typedef struct { +} pd_identity_quit_sub_V10_t; + +#define PD_CALL_SOCIETY_BID_V10 0 +typedef struct { + pd_Balance_t amount; +} pd_society_bid_V10_t; + +#define PD_CALL_SOCIETY_UNBID_V10 1 +typedef struct { + pd_u32_t pos; +} pd_society_unbid_V10_t; + +#define PD_CALL_SOCIETY_VOUCH_V10 2 +typedef struct { + pd_AccountId_V10_t who; + pd_Balance_t amount; + pd_Balance_t tip; +} pd_society_vouch_V10_t; + +#define PD_CALL_SOCIETY_UNVOUCH_V10 3 +typedef struct { + pd_u32_t pos; +} pd_society_unvouch_V10_t; + +#define PD_CALL_SOCIETY_VOTE_V10 4 +typedef struct { + pd_LookupasStaticLookupSource_V10_t candidate; + pd_bool_t approve; +} pd_society_vote_V10_t; + +#define PD_CALL_SOCIETY_DEFENDER_VOTE_V10 5 +typedef struct { + pd_bool_t approve; +} pd_society_defender_vote_V10_t; + +#define PD_CALL_SOCIETY_PAYOUT_V10 6 +typedef struct { +} pd_society_payout_V10_t; + +#define PD_CALL_SOCIETY_FOUND_V10 7 +typedef struct { + pd_AccountId_V10_t founder; + pd_u32_t max_members; + pd_Bytes_t rules; +} pd_society_found_V10_t; + +#define PD_CALL_SOCIETY_UNFOUND_V10 8 +typedef struct { +} pd_society_unfound_V10_t; + +#define PD_CALL_SOCIETY_JUDGE_SUSPENDED_MEMBER_V10 9 +typedef struct { + pd_AccountId_V10_t who; + pd_bool_t forgive; +} pd_society_judge_suspended_member_V10_t; + +#define PD_CALL_SOCIETY_SET_MAX_MEMBERS_V10 11 +typedef struct { + pd_u32_t max; +} pd_society_set_max_members_V10_t; + +#define PD_CALL_RECOVERY_SET_RECOVERED_V10 1 +typedef struct { + pd_AccountId_V10_t lost; + pd_AccountId_V10_t rescuer; +} pd_recovery_set_recovered_V10_t; + +#define PD_CALL_RECOVERY_INITIATE_RECOVERY_V10 3 +typedef struct { + pd_AccountId_V10_t account; +} pd_recovery_initiate_recovery_V10_t; + +#define PD_CALL_RECOVERY_VOUCH_RECOVERY_V10 4 +typedef struct { + pd_AccountId_V10_t lost; + pd_AccountId_V10_t rescuer; +} pd_recovery_vouch_recovery_V10_t; + +#define PD_CALL_RECOVERY_CLAIM_RECOVERY_V10 5 +typedef struct { + pd_AccountId_V10_t account; +} pd_recovery_claim_recovery_V10_t; + +#define PD_CALL_RECOVERY_CLOSE_RECOVERY_V10 6 +typedef struct { + pd_AccountId_V10_t rescuer; +} pd_recovery_close_recovery_V10_t; + +#define PD_CALL_RECOVERY_REMOVE_RECOVERY_V10 7 +typedef struct { +} pd_recovery_remove_recovery_V10_t; + +#define PD_CALL_RECOVERY_CANCEL_RECOVERED_V10 8 +typedef struct { + pd_AccountId_V10_t account; +} pd_recovery_cancel_recovered_V10_t; + +#define PD_CALL_VESTING_VEST_V10 0 +typedef struct { +} pd_vesting_vest_V10_t; + +#define PD_CALL_VESTING_VEST_OTHER_V10 1 +typedef struct { + pd_LookupasStaticLookupSource_V10_t target; +} pd_vesting_vest_other_V10_t; + +#define PD_CALL_VESTING_MERGE_SCHEDULES_V10 4 +typedef struct { + pd_u32_t schedule1_index; + pd_u32_t schedule2_index; +} pd_vesting_merge_schedules_V10_t; + +#define PD_CALL_PROXY_ADD_PROXY_V10 1 +typedef struct { + pd_AccountId_V10_t delegate; + pd_ProxyType_V10_t proxy_type; + pd_BlockNumber_t delay; +} pd_proxy_add_proxy_V10_t; + +#define PD_CALL_PROXY_REMOVE_PROXY_V10 2 +typedef struct { + pd_AccountId_V10_t delegate; + pd_ProxyType_V10_t proxy_type; + pd_BlockNumber_t delay; +} pd_proxy_remove_proxy_V10_t; + +#define PD_CALL_PROXY_REMOVE_PROXIES_V10 3 +typedef struct { +} pd_proxy_remove_proxies_V10_t; + +#define PD_CALL_PROXY_ANONYMOUS_V10 4 +typedef struct { + pd_ProxyType_V10_t proxy_type; + pd_BlockNumber_t delay; + pd_u16_t index; +} pd_proxy_anonymous_V10_t; + +#define PD_CALL_PROXY_KILL_ANONYMOUS_V10 5 +typedef struct { + pd_AccountId_V10_t spawner; + pd_ProxyType_V10_t proxy_type; + pd_u16_t index; + pd_Compactu32_t height; + pd_Compactu32_t ext_index; +} pd_proxy_kill_anonymous_V10_t; + +#define PD_CALL_PROXY_PROXY_ANNOUNCED_V10 9 +typedef struct { + pd_AccountId_V10_t delegate; + pd_AccountId_V10_t real; + pd_OptionProxyType_V10_t force_proxy_type; + pd_Call_t call; +} pd_proxy_proxy_announced_V10_t; + +#define PD_CALL_PREIMAGE_NOTE_PREIMAGE_V10 0 +typedef struct { + pd_Vecu8_t bytes; +} pd_preimage_note_preimage_V10_t; + +#define PD_CALL_PREIMAGE_UNNOTE_PREIMAGE_V10 1 +typedef struct { + pd_Hash_t hash; +} pd_preimage_unnote_preimage_V10_t; + +#define PD_CALL_PREIMAGE_REQUEST_PREIMAGE_V10 2 +typedef struct { + pd_Hash_t hash; +} pd_preimage_request_preimage_V10_t; + +#define PD_CALL_PREIMAGE_UNREQUEST_PREIMAGE_V10 3 +typedef struct { + pd_Hash_t hash; +} pd_preimage_unrequest_preimage_V10_t; + +#define PD_CALL_BOUNTIES_PROPOSE_BOUNTY_V10 0 +typedef struct { + pd_CompactBalance_t amount; + pd_Bytes_t description; +} pd_bounties_propose_bounty_V10_t; + +#define PD_CALL_BOUNTIES_APPROVE_BOUNTY_V10 1 +typedef struct { + pd_Compactu32_t bounty_id; +} pd_bounties_approve_bounty_V10_t; + +#define PD_CALL_BOUNTIES_PROPOSE_CURATOR_V10 2 +typedef struct { + pd_Compactu32_t bounty_id; + pd_LookupasStaticLookupSource_V10_t curator; + pd_CompactBalance_t fee; +} pd_bounties_propose_curator_V10_t; + +#define PD_CALL_BOUNTIES_UNASSIGN_CURATOR_V10 3 +typedef struct { + pd_Compactu32_t bounty_id; +} pd_bounties_unassign_curator_V10_t; + +#define PD_CALL_BOUNTIES_ACCEPT_CURATOR_V10 4 +typedef struct { + pd_Compactu32_t bounty_id; +} pd_bounties_accept_curator_V10_t; + +#define PD_CALL_BOUNTIES_AWARD_BOUNTY_V10 5 +typedef struct { + pd_Compactu32_t bounty_id; + pd_LookupasStaticLookupSource_V10_t beneficiary; +} pd_bounties_award_bounty_V10_t; + +#define PD_CALL_BOUNTIES_CLAIM_BOUNTY_V10 6 +typedef struct { + pd_Compactu32_t bounty_id; +} pd_bounties_claim_bounty_V10_t; + +#define PD_CALL_BOUNTIES_CLOSE_BOUNTY_V10 7 +typedef struct { + pd_Compactu32_t bounty_id; +} pd_bounties_close_bounty_V10_t; + +#define PD_CALL_BOUNTIES_EXTEND_BOUNTY_EXPIRY_V10 8 +typedef struct { + pd_Compactu32_t bounty_id; + pd_Bytes_t remark; +} pd_bounties_extend_bounty_expiry_V10_t; + +#define PD_CALL_TIPS_REPORT_AWESOME_V10 0 +typedef struct { + pd_Bytes_t reason; + pd_AccountId_V10_t who; +} pd_tips_report_awesome_V10_t; + +#define PD_CALL_TIPS_RETRACT_TIP_V10 1 +typedef struct { + pd_Hash_t hash; +} pd_tips_retract_tip_V10_t; + +#define PD_CALL_TIPS_TIP_NEW_V10 2 +typedef struct { + pd_Bytes_t reason; + pd_AccountId_V10_t who; + pd_Compactu128_t tip_value; +} pd_tips_tip_new_V10_t; + +#define PD_CALL_TIPS_TIP_V10 3 +typedef struct { + pd_Hash_t hash; + pd_Compactu128_t tip_value; +} pd_tips_tip_V10_t; + +#define PD_CALL_TIPS_CLOSE_TIP_V10 4 +typedef struct { + pd_Hash_t hash; +} pd_tips_close_tip_V10_t; + +#define PD_CALL_TIPS_SLASH_TIP_V10 5 +typedef struct { + pd_Hash_t hash; +} pd_tips_slash_tip_V10_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_GOVERNANCE_FALLBACK_V10 4 +typedef struct { + pd_Optionu32_t maybe_max_voters; + pd_Optionu32_t maybe_max_targets; +} pd_electionprovidermultiphase_governance_fallback_V10_t; + +#define PD_CALL_GILT_PLACE_BID_V10 0 +typedef struct { + pd_CompactBalance_t amount; + pd_u32_t duration; +} pd_gilt_place_bid_V10_t; + +#define PD_CALL_GILT_RETRACT_BID_V10 1 +typedef struct { + pd_CompactBalance_t amount; + pd_u32_t duration; +} pd_gilt_retract_bid_V10_t; + +#define PD_CALL_BAGSLIST_REBAG_V10 0 +typedef struct { + pd_AccountId_V10_t dislocated; +} pd_bagslist_rebag_V10_t; + +#define PD_CALL_BAGSLIST_PUT_IN_FRONT_OF_V10 1 +typedef struct { + pd_AccountId_V10_t lighter; +} pd_bagslist_put_in_front_of_V10_t; + +#define PD_CALL_CONFIGURATION_SET_VALIDATION_UPGRADE_COOLDOWN_V10 0 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_validation_upgrade_cooldown_V10_t; + +#define PD_CALL_CONFIGURATION_SET_VALIDATION_UPGRADE_DELAY_V10 1 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_validation_upgrade_delay_V10_t; + +#define PD_CALL_CONFIGURATION_SET_CODE_RETENTION_PERIOD_V10 2 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_code_retention_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_CODE_SIZE_V10 3 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_code_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_POV_SIZE_V10 4 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_pov_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_HEAD_DATA_SIZE_V10 5 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_head_data_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_PARATHREAD_CORES_V10 6 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_parathread_cores_V10_t; + +#define PD_CALL_CONFIGURATION_SET_PARATHREAD_RETRIES_V10 7 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_parathread_retries_V10_t; + +#define PD_CALL_CONFIGURATION_SET_GROUP_ROTATION_FREQUENCY_V10 8 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_group_rotation_frequency_V10_t; + +#define PD_CALL_CONFIGURATION_SET_CHAIN_AVAILABILITY_PERIOD_V10 9 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_chain_availability_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_THREAD_AVAILABILITY_PERIOD_V10 10 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_thread_availability_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_SCHEDULING_LOOKAHEAD_V10 11 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_scheduling_lookahead_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_VALIDATORS_PER_CORE_V10 12 +typedef struct { + pd_Optionu32_t new_; +} pd_configuration_set_max_validators_per_core_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_VALIDATORS_V10 13 +typedef struct { + pd_Optionu32_t new_; +} pd_configuration_set_max_validators_V10_t; + +#define PD_CALL_CONFIGURATION_SET_DISPUTE_PERIOD_V10 14 +typedef struct { + pd_SessionIndex_V10_t new_; +} pd_configuration_set_dispute_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_DISPUTE_POST_CONCLUSION_ACCEPTANCE_PERIOD_V10 15 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_dispute_post_conclusion_acceptance_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_DISPUTE_MAX_SPAM_SLOTS_V10 16 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_dispute_max_spam_slots_V10_t; + +#define PD_CALL_CONFIGURATION_SET_DISPUTE_CONCLUSION_BY_TIME_OUT_PERIOD_V10 17 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_dispute_conclusion_by_time_out_period_V10_t; + +#define PD_CALL_CONFIGURATION_SET_NO_SHOW_SLOTS_V10 18 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_no_show_slots_V10_t; + +#define PD_CALL_CONFIGURATION_SET_N_DELAY_TRANCHES_V10 19 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_n_delay_tranches_V10_t; + +#define PD_CALL_CONFIGURATION_SET_ZEROTH_DELAY_TRANCHE_WIDTH_V10 20 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_zeroth_delay_tranche_width_V10_t; + +#define PD_CALL_CONFIGURATION_SET_NEEDED_APPROVALS_V10 21 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_needed_approvals_V10_t; + +#define PD_CALL_CONFIGURATION_SET_RELAY_VRF_MODULO_SAMPLES_V10 22 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_relay_vrf_modulo_samples_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_QUEUE_COUNT_V10 23 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_upward_queue_count_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_QUEUE_SIZE_V10 24 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_upward_queue_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_DOWNWARD_MESSAGE_SIZE_V10 25 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_downward_message_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_UMP_SERVICE_TOTAL_WEIGHT_V10 26 +typedef struct { + pd_Weight_V10_t new_; +} pd_configuration_set_ump_service_total_weight_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_MESSAGE_SIZE_V10 27 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_upward_message_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MAX_UPWARD_MESSAGE_NUM_PER_CANDIDATE_V10 28 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_max_upward_message_num_per_candidate_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_OPEN_REQUEST_TTL_V10 29 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_open_request_ttl_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_SENDER_DEPOSIT_V10 30 +typedef struct { + pd_Balance_t new_; +} pd_configuration_set_hrmp_sender_deposit_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_RECIPIENT_DEPOSIT_V10 31 +typedef struct { + pd_Balance_t new_; +} pd_configuration_set_hrmp_recipient_deposit_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_CAPACITY_V10 32 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_channel_max_capacity_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_TOTAL_SIZE_V10 33 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_channel_max_total_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARACHAIN_INBOUND_CHANNELS_V10 34 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_max_parachain_inbound_channels_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARATHREAD_INBOUND_CHANNELS_V10 35 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_max_parathread_inbound_channels_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_CHANNEL_MAX_MESSAGE_SIZE_V10 36 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_channel_max_message_size_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARACHAIN_OUTBOUND_CHANNELS_V10 37 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_max_parachain_outbound_channels_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_PARATHREAD_OUTBOUND_CHANNELS_V10 38 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_max_parathread_outbound_channels_V10_t; + +#define PD_CALL_CONFIGURATION_SET_HRMP_MAX_MESSAGE_NUM_PER_CANDIDATE_V10 39 +typedef struct { + pd_u32_t new_; +} pd_configuration_set_hrmp_max_message_num_per_candidate_V10_t; + +#define PD_CALL_CONFIGURATION_SET_UMP_MAX_INDIVIDUAL_WEIGHT_V10 40 +typedef struct { + pd_Weight_V10_t new_; +} pd_configuration_set_ump_max_individual_weight_V10_t; + +#define PD_CALL_CONFIGURATION_SET_PVF_CHECKING_ENABLED_V10 41 +typedef struct { + pd_bool_t new_; +} pd_configuration_set_pvf_checking_enabled_V10_t; + +#define PD_CALL_CONFIGURATION_SET_PVF_VOTING_TTL_V10 42 +typedef struct { + pd_SessionIndex_V10_t new_; +} pd_configuration_set_pvf_voting_ttl_V10_t; + +#define PD_CALL_CONFIGURATION_SET_MINIMUM_VALIDATION_UPGRADE_DELAY_V10 43 +typedef struct { + pd_BlockNumber_t new_; +} pd_configuration_set_minimum_validation_upgrade_delay_V10_t; + +#define PD_CALL_CONFIGURATION_SET_BYPASS_CONSISTENCY_CHECK_V10 44 +typedef struct { + pd_bool_t new_; +} pd_configuration_set_bypass_consistency_check_V10_t; + +#define PD_CALL_INITIALIZER_FORCE_APPROVE_V10 0 +typedef struct { + pd_BlockNumber_t up_to; +} pd_initializer_force_approve_V10_t; + +#define PD_CALL_HRMP_FORCE_PROCESS_HRMP_OPEN_V10 4 +typedef struct { + pd_u32_t channels; +} pd_hrmp_force_process_hrmp_open_V10_t; + +#define PD_CALL_HRMP_FORCE_PROCESS_HRMP_CLOSE_V10 5 +typedef struct { + pd_u32_t channels; +} pd_hrmp_force_process_hrmp_close_V10_t; + +#define PD_CALL_PARASDISPUTES_FORCE_UNFREEZE_V10 0 +typedef struct { +} pd_parasdisputes_force_unfreeze_V10_t; + +#define PD_CALL_REGISTRAR_RESERVE_V10 5 +typedef struct { +} pd_registrar_reserve_V10_t; + +#define PD_CALL_AUCTIONS_NEW_AUCTION_V10 0 +typedef struct { + pd_Compactu32_t duration; + pd_Compactu32_t lease_period_index; +} pd_auctions_new_auction_V10_t; + +#define PD_CALL_AUCTIONS_BID_V10 1 +typedef struct { + pd_Compactu32_t para; + pd_Compactu32_t auction_index; + pd_Compactu32_t first_slot; + pd_Compactu32_t last_slot; + pd_CompactBalance_t amount; +} pd_auctions_bid_V10_t; + +#define PD_CALL_AUCTIONS_CANCEL_AUCTION_V10 2 +typedef struct { +} pd_auctions_cancel_auction_V10_t; + +#endif + +typedef union { + pd_balances_transfer_all_V10_t balances_transfer_all_V10; + pd_staking_bond_V10_t staking_bond_V10; + pd_staking_bond_extra_V10_t staking_bond_extra_V10; + pd_staking_unbond_V10_t staking_unbond_V10; + pd_staking_withdraw_unbonded_V10_t staking_withdraw_unbonded_V10; + pd_staking_validate_V10_t staking_validate_V10; + pd_staking_nominate_V10_t staking_nominate_V10; + pd_staking_chill_V10_t staking_chill_V10; + pd_staking_set_payee_V10_t staking_set_payee_V10; + pd_staking_set_controller_V10_t staking_set_controller_V10; + pd_staking_payout_stakers_V10_t staking_payout_stakers_V10; + pd_staking_rebond_V10_t staking_rebond_V10; + pd_session_set_keys_V10_t session_set_keys_V10; + pd_session_purge_keys_V10_t session_purge_keys_V10; + pd_utility_batch_V10_t utility_batch_V10; + pd_utility_batch_all_V10_t utility_batch_all_V10; +#ifdef SUBSTRATE_PARSER_FULL + pd_timestamp_set_V10_t timestamp_set_V10; + pd_indices_claim_V10_t indices_claim_V10; + pd_indices_transfer_V10_t indices_transfer_V10; + pd_indices_free_V10_t indices_free_V10; + pd_indices_force_transfer_V10_t indices_force_transfer_V10; + pd_indices_freeze_V10_t indices_freeze_V10; + pd_balances_force_unreserve_V10_t balances_force_unreserve_V10; + pd_staking_set_validator_count_V10_t staking_set_validator_count_V10; + pd_staking_increase_validator_count_V10_t staking_increase_validator_count_V10; + pd_staking_force_no_eras_V10_t staking_force_no_eras_V10; + pd_staking_force_new_era_V10_t staking_force_new_era_V10; + pd_staking_force_unstake_V10_t staking_force_unstake_V10; + pd_staking_force_new_era_always_V10_t staking_force_new_era_always_V10; + pd_staking_set_history_depth_V10_t staking_set_history_depth_V10; + pd_staking_reap_stash_V10_t staking_reap_stash_V10; + pd_staking_kick_V10_t staking_kick_V10; + pd_staking_chill_other_V10_t staking_chill_other_V10; + pd_staking_force_apply_min_commission_V10_t staking_force_apply_min_commission_V10; + pd_grandpa_note_stalled_V10_t grandpa_note_stalled_V10; + pd_democracy_second_V10_t democracy_second_V10; + pd_democracy_emergency_cancel_V10_t democracy_emergency_cancel_V10; + pd_democracy_cancel_referendum_V10_t democracy_cancel_referendum_V10; + pd_democracy_cancel_queued_V10_t democracy_cancel_queued_V10; + pd_democracy_undelegate_V10_t democracy_undelegate_V10; + pd_democracy_clear_public_proposals_V10_t democracy_clear_public_proposals_V10; + pd_democracy_note_preimage_V10_t democracy_note_preimage_V10; + pd_democracy_note_preimage_operational_V10_t democracy_note_preimage_operational_V10; + pd_democracy_note_imminent_preimage_V10_t democracy_note_imminent_preimage_V10; + pd_democracy_note_imminent_preimage_operational_V10_t democracy_note_imminent_preimage_operational_V10; + pd_democracy_remove_vote_V10_t democracy_remove_vote_V10; + pd_democracy_cancel_proposal_V10_t democracy_cancel_proposal_V10; + pd_council_vote_V10_t council_vote_V10; + pd_council_close_V10_t council_close_V10; + pd_council_disapprove_proposal_V10_t council_disapprove_proposal_V10; + pd_technicalcommittee_disapprove_proposal_V10_t technicalcommittee_disapprove_proposal_V10; + pd_phragmenelection_remove_voter_V10_t phragmenelection_remove_voter_V10; + pd_phragmenelection_submit_candidacy_V10_t phragmenelection_submit_candidacy_V10; + pd_phragmenelection_remove_member_V10_t phragmenelection_remove_member_V10; + pd_phragmenelection_clean_defunct_voters_V10_t phragmenelection_clean_defunct_voters_V10; + pd_technicalmembership_add_member_V10_t technicalmembership_add_member_V10; + pd_technicalmembership_remove_member_V10_t technicalmembership_remove_member_V10; + pd_technicalmembership_swap_member_V10_t technicalmembership_swap_member_V10; + pd_technicalmembership_reset_members_V10_t technicalmembership_reset_members_V10; + pd_technicalmembership_change_key_V10_t technicalmembership_change_key_V10; + pd_technicalmembership_set_prime_V10_t technicalmembership_set_prime_V10; + pd_technicalmembership_clear_prime_V10_t technicalmembership_clear_prime_V10; + pd_treasury_propose_spend_V10_t treasury_propose_spend_V10; + pd_treasury_reject_proposal_V10_t treasury_reject_proposal_V10; + pd_treasury_approve_proposal_V10_t treasury_approve_proposal_V10; + pd_claims_claim_V10_t claims_claim_V10; + pd_claims_claim_attest_V10_t claims_claim_attest_V10; + pd_claims_attest_V10_t claims_attest_V10; + pd_claims_move_claim_V10_t claims_move_claim_V10; + pd_identity_add_registrar_V10_t identity_add_registrar_V10; + pd_identity_clear_identity_V10_t identity_clear_identity_V10; + pd_identity_request_judgement_V10_t identity_request_judgement_V10; + pd_identity_cancel_request_V10_t identity_cancel_request_V10; + pd_identity_set_fee_V10_t identity_set_fee_V10; + pd_identity_set_account_id_V10_t identity_set_account_id_V10; + pd_identity_kill_identity_V10_t identity_kill_identity_V10; + pd_identity_remove_sub_V10_t identity_remove_sub_V10; + pd_identity_quit_sub_V10_t identity_quit_sub_V10; + pd_society_bid_V10_t society_bid_V10; + pd_society_unbid_V10_t society_unbid_V10; + pd_society_vouch_V10_t society_vouch_V10; + pd_society_unvouch_V10_t society_unvouch_V10; + pd_society_vote_V10_t society_vote_V10; + pd_society_defender_vote_V10_t society_defender_vote_V10; + pd_society_payout_V10_t society_payout_V10; + pd_society_found_V10_t society_found_V10; + pd_society_unfound_V10_t society_unfound_V10; + pd_society_judge_suspended_member_V10_t society_judge_suspended_member_V10; + pd_society_set_max_members_V10_t society_set_max_members_V10; + pd_recovery_set_recovered_V10_t recovery_set_recovered_V10; + pd_recovery_initiate_recovery_V10_t recovery_initiate_recovery_V10; + pd_recovery_vouch_recovery_V10_t recovery_vouch_recovery_V10; + pd_recovery_claim_recovery_V10_t recovery_claim_recovery_V10; + pd_recovery_close_recovery_V10_t recovery_close_recovery_V10; + pd_recovery_remove_recovery_V10_t recovery_remove_recovery_V10; + pd_recovery_cancel_recovered_V10_t recovery_cancel_recovered_V10; + pd_vesting_vest_V10_t vesting_vest_V10; + pd_vesting_vest_other_V10_t vesting_vest_other_V10; + pd_vesting_merge_schedules_V10_t vesting_merge_schedules_V10; + pd_proxy_add_proxy_V10_t proxy_add_proxy_V10; + pd_proxy_remove_proxy_V10_t proxy_remove_proxy_V10; + pd_proxy_remove_proxies_V10_t proxy_remove_proxies_V10; + pd_proxy_anonymous_V10_t proxy_anonymous_V10; + pd_proxy_kill_anonymous_V10_t proxy_kill_anonymous_V10; + pd_proxy_proxy_announced_V10_t proxy_proxy_announced_V10; + pd_preimage_note_preimage_V10_t preimage_note_preimage_V10; + pd_preimage_unnote_preimage_V10_t preimage_unnote_preimage_V10; + pd_preimage_request_preimage_V10_t preimage_request_preimage_V10; + pd_preimage_unrequest_preimage_V10_t preimage_unrequest_preimage_V10; + pd_bounties_propose_bounty_V10_t bounties_propose_bounty_V10; + pd_bounties_approve_bounty_V10_t bounties_approve_bounty_V10; + pd_bounties_propose_curator_V10_t bounties_propose_curator_V10; + pd_bounties_unassign_curator_V10_t bounties_unassign_curator_V10; + pd_bounties_accept_curator_V10_t bounties_accept_curator_V10; + pd_bounties_award_bounty_V10_t bounties_award_bounty_V10; + pd_bounties_claim_bounty_V10_t bounties_claim_bounty_V10; + pd_bounties_close_bounty_V10_t bounties_close_bounty_V10; + pd_bounties_extend_bounty_expiry_V10_t bounties_extend_bounty_expiry_V10; + pd_tips_report_awesome_V10_t tips_report_awesome_V10; + pd_tips_retract_tip_V10_t tips_retract_tip_V10; + pd_tips_tip_new_V10_t tips_tip_new_V10; + pd_tips_tip_V10_t tips_tip_V10; + pd_tips_close_tip_V10_t tips_close_tip_V10; + pd_tips_slash_tip_V10_t tips_slash_tip_V10; + pd_electionprovidermultiphase_governance_fallback_V10_t electionprovidermultiphase_governance_fallback_V10; + pd_gilt_place_bid_V10_t gilt_place_bid_V10; + pd_gilt_retract_bid_V10_t gilt_retract_bid_V10; + pd_bagslist_rebag_V10_t bagslist_rebag_V10; + pd_bagslist_put_in_front_of_V10_t bagslist_put_in_front_of_V10; + pd_configuration_set_validation_upgrade_cooldown_V10_t configuration_set_validation_upgrade_cooldown_V10; + pd_configuration_set_validation_upgrade_delay_V10_t configuration_set_validation_upgrade_delay_V10; + pd_configuration_set_code_retention_period_V10_t configuration_set_code_retention_period_V10; + pd_configuration_set_max_code_size_V10_t configuration_set_max_code_size_V10; + pd_configuration_set_max_pov_size_V10_t configuration_set_max_pov_size_V10; + pd_configuration_set_max_head_data_size_V10_t configuration_set_max_head_data_size_V10; + pd_configuration_set_parathread_cores_V10_t configuration_set_parathread_cores_V10; + pd_configuration_set_parathread_retries_V10_t configuration_set_parathread_retries_V10; + pd_configuration_set_group_rotation_frequency_V10_t configuration_set_group_rotation_frequency_V10; + pd_configuration_set_chain_availability_period_V10_t configuration_set_chain_availability_period_V10; + pd_configuration_set_thread_availability_period_V10_t configuration_set_thread_availability_period_V10; + pd_configuration_set_scheduling_lookahead_V10_t configuration_set_scheduling_lookahead_V10; + pd_configuration_set_max_validators_per_core_V10_t configuration_set_max_validators_per_core_V10; + pd_configuration_set_max_validators_V10_t configuration_set_max_validators_V10; + pd_configuration_set_dispute_period_V10_t configuration_set_dispute_period_V10; + pd_configuration_set_dispute_post_conclusion_acceptance_period_V10_t configuration_set_dispute_post_conclusion_acceptance_period_V10; + pd_configuration_set_dispute_max_spam_slots_V10_t configuration_set_dispute_max_spam_slots_V10; + pd_configuration_set_dispute_conclusion_by_time_out_period_V10_t configuration_set_dispute_conclusion_by_time_out_period_V10; + pd_configuration_set_no_show_slots_V10_t configuration_set_no_show_slots_V10; + pd_configuration_set_n_delay_tranches_V10_t configuration_set_n_delay_tranches_V10; + pd_configuration_set_zeroth_delay_tranche_width_V10_t configuration_set_zeroth_delay_tranche_width_V10; + pd_configuration_set_needed_approvals_V10_t configuration_set_needed_approvals_V10; + pd_configuration_set_relay_vrf_modulo_samples_V10_t configuration_set_relay_vrf_modulo_samples_V10; + pd_configuration_set_max_upward_queue_count_V10_t configuration_set_max_upward_queue_count_V10; + pd_configuration_set_max_upward_queue_size_V10_t configuration_set_max_upward_queue_size_V10; + pd_configuration_set_max_downward_message_size_V10_t configuration_set_max_downward_message_size_V10; + pd_configuration_set_ump_service_total_weight_V10_t configuration_set_ump_service_total_weight_V10; + pd_configuration_set_max_upward_message_size_V10_t configuration_set_max_upward_message_size_V10; + pd_configuration_set_max_upward_message_num_per_candidate_V10_t configuration_set_max_upward_message_num_per_candidate_V10; + pd_configuration_set_hrmp_open_request_ttl_V10_t configuration_set_hrmp_open_request_ttl_V10; + pd_configuration_set_hrmp_sender_deposit_V10_t configuration_set_hrmp_sender_deposit_V10; + pd_configuration_set_hrmp_recipient_deposit_V10_t configuration_set_hrmp_recipient_deposit_V10; + pd_configuration_set_hrmp_channel_max_capacity_V10_t configuration_set_hrmp_channel_max_capacity_V10; + pd_configuration_set_hrmp_channel_max_total_size_V10_t configuration_set_hrmp_channel_max_total_size_V10; + pd_configuration_set_hrmp_max_parachain_inbound_channels_V10_t configuration_set_hrmp_max_parachain_inbound_channels_V10; + pd_configuration_set_hrmp_max_parathread_inbound_channels_V10_t configuration_set_hrmp_max_parathread_inbound_channels_V10; + pd_configuration_set_hrmp_channel_max_message_size_V10_t configuration_set_hrmp_channel_max_message_size_V10; + pd_configuration_set_hrmp_max_parachain_outbound_channels_V10_t configuration_set_hrmp_max_parachain_outbound_channels_V10; + pd_configuration_set_hrmp_max_parathread_outbound_channels_V10_t configuration_set_hrmp_max_parathread_outbound_channels_V10; + pd_configuration_set_hrmp_max_message_num_per_candidate_V10_t configuration_set_hrmp_max_message_num_per_candidate_V10; + pd_configuration_set_ump_max_individual_weight_V10_t configuration_set_ump_max_individual_weight_V10; + pd_configuration_set_pvf_checking_enabled_V10_t configuration_set_pvf_checking_enabled_V10; + pd_configuration_set_pvf_voting_ttl_V10_t configuration_set_pvf_voting_ttl_V10; + pd_configuration_set_minimum_validation_upgrade_delay_V10_t configuration_set_minimum_validation_upgrade_delay_V10; + pd_configuration_set_bypass_consistency_check_V10_t configuration_set_bypass_consistency_check_V10; + pd_initializer_force_approve_V10_t initializer_force_approve_V10; + pd_hrmp_force_process_hrmp_open_V10_t hrmp_force_process_hrmp_open_V10; + pd_hrmp_force_process_hrmp_close_V10_t hrmp_force_process_hrmp_close_V10; + pd_parasdisputes_force_unfreeze_V10_t parasdisputes_force_unfreeze_V10; + pd_registrar_reserve_V10_t registrar_reserve_V10; + pd_auctions_new_auction_V10_t auctions_new_auction_V10; + pd_auctions_bid_V10_t auctions_bid_V10; + pd_auctions_cancel_auction_V10_t auctions_cancel_auction_V10; +#endif +} pd_MethodBasic_V10_t; + +#define PD_CALL_BALANCES_TRANSFER_V10 0 +typedef struct { + pd_LookupasStaticLookupSource_V10_t dest; + pd_CompactBalance_t amount; +} pd_balances_transfer_V10_t; + +#define PD_CALL_BALANCES_FORCE_TRANSFER_V10 2 +typedef struct { + pd_LookupasStaticLookupSource_V10_t source; + pd_LookupasStaticLookupSource_V10_t dest; + pd_CompactBalance_t amount; +} pd_balances_force_transfer_V10_t; + +#define PD_CALL_BALANCES_TRANSFER_KEEP_ALIVE_V10 3 +typedef struct { + pd_LookupasStaticLookupSource_V10_t dest; + pd_CompactBalance_t amount; +} pd_balances_transfer_keep_alive_V10_t; + +#ifdef SUBSTRATE_PARSER_FULL +#define PD_CALL_SYSTEM_FILL_BLOCK_V10 0 +typedef struct { + pd_Perbill_V10_t ratio; +} pd_system_fill_block_V10_t; + +#define PD_CALL_SYSTEM_REMARK_V10 1 +typedef struct { + pd_Vecu8_t remark; +} pd_system_remark_V10_t; + +#define PD_CALL_SYSTEM_SET_HEAP_PAGES_V10 2 +typedef struct { + pd_u64_t pages; +} pd_system_set_heap_pages_V10_t; + +#define PD_CALL_SYSTEM_SET_CODE_V10 3 +typedef struct { + pd_Vecu8_t code; +} pd_system_set_code_V10_t; + +#define PD_CALL_SYSTEM_SET_CODE_WITHOUT_CHECKS_V10 4 +typedef struct { + pd_Vecu8_t code; +} pd_system_set_code_without_checks_V10_t; + +#define PD_CALL_SYSTEM_REMARK_WITH_EVENT_V10 8 +typedef struct { + pd_Vecu8_t remark; +} pd_system_remark_with_event_V10_t; + +#define PD_CALL_BALANCES_SET_BALANCE_V10 1 +typedef struct { + pd_LookupasStaticLookupSource_V10_t who; + pd_CompactBalance_t new_free; + pd_CompactBalance_t new_reserved; +} pd_balances_set_balance_V10_t; + +#define PD_CALL_PROXY_PROXY_V10 0 +typedef struct { + pd_AccountId_V10_t real; + pd_OptionProxyType_V10_t force_proxy_type; + pd_Call_t call; +} pd_proxy_proxy_V10_t; + +#define PD_CALL_MULTISIG_AS_MULTI_THRESHOLD_1_V10 0 +typedef struct { + pd_VecAccountId_V10_t other_signatories; + pd_Call_t call; +} pd_multisig_as_multi_threshold_1_V10_t; + +#define PD_CALL_MULTISIG_AS_MULTI_V10 1 +typedef struct { + pd_u16_t threshold; + pd_VecAccountId_V10_t other_signatories; + pd_OptionTimepoint_V10_t maybe_timepoint; + pd_OpaqueCall_V10_t call; + pd_bool_t store_call; + pd_Weight_V10_t max_weight; +} pd_multisig_as_multi_V10_t; + +#define PD_CALL_MULTISIG_APPROVE_AS_MULTI_V10 2 +typedef struct { + pd_u16_t threshold; + pd_VecAccountId_V10_t other_signatories; + pd_OptionTimepoint_V10_t maybe_timepoint; + pd_H256_t call_hash; + pd_Weight_V10_t max_weight; +} pd_multisig_approve_as_multi_V10_t; + +#define PD_CALL_MULTISIG_CANCEL_AS_MULTI_V10 3 +typedef struct { + pd_u16_t threshold; + pd_VecAccountId_V10_t other_signatories; + pd_Timepoint_V10_t timepoint; + pd_H256_t call_hash; +} pd_multisig_cancel_as_multi_V10_t; + +#endif + +typedef union { + pd_balances_transfer_V10_t balances_transfer_V10; + pd_balances_force_transfer_V10_t balances_force_transfer_V10; + pd_balances_transfer_keep_alive_V10_t balances_transfer_keep_alive_V10; +#ifdef SUBSTRATE_PARSER_FULL + pd_system_fill_block_V10_t system_fill_block_V10; + pd_system_remark_V10_t system_remark_V10; + pd_system_set_heap_pages_V10_t system_set_heap_pages_V10; + pd_system_set_code_V10_t system_set_code_V10; + pd_system_set_code_without_checks_V10_t system_set_code_without_checks_V10; + pd_system_remark_with_event_V10_t system_remark_with_event_V10; + pd_balances_set_balance_V10_t balances_set_balance_V10; + pd_proxy_proxy_V10_t proxy_proxy_V10; + pd_multisig_as_multi_threshold_1_V10_t multisig_as_multi_threshold_1_V10; + pd_multisig_as_multi_V10_t multisig_as_multi_V10; + pd_multisig_approve_as_multi_V10_t multisig_approve_as_multi_V10; + pd_multisig_cancel_as_multi_V10_t multisig_cancel_as_multi_V10; +#endif +} pd_MethodNested_V10_t; + +typedef union { + pd_MethodBasic_V10_t basic; + pd_MethodNested_V10_t nested; +} pd_Method_V10_t; + +#ifdef __cplusplus +} +#endif + +#pragma clang diagnostic pop diff --git a/app/src/substrate/substrate_types_V10.c b/app/src/substrate/substrate_types_V10.c new file mode 100644 index 00000000..e7d9cfb9 --- /dev/null +++ b/app/src/substrate/substrate_types_V10.c @@ -0,0 +1,1744 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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. +********************************************************************************/ +#include "bignum.h" +#include "coin.h" +#include "parser_impl.h" +#include "substrate_dispatch_V10.h" +#include "substrate_strings.h" + +#include +#include +#include +#include + +parser_error_t _readAccountId_V10(parser_context_t* c, pd_AccountId_V10_t* v) { + GEN_DEF_READARRAY(32) +} + +parser_error_t _readAccountIndex_V10(parser_context_t* c, pd_AccountIndex_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readAccountVoteBalanceOf_V10(parser_context_t* c, pd_AccountVoteBalanceOf_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V10(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxCallOrHashOfT_V10(parser_context_t* c, pd_BoxCallOrHashOfT_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxEquivocationProofHashBlockNumber_V10(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxEquivocationProofHeader_V10(parser_context_t* c, pd_BoxEquivocationProofHeader_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V10(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxMultiLocation_V10(parser_context_t* c, pd_BoxMultiLocation_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxPalletsOrigin_V10(parser_context_t* c, pd_BoxPalletsOrigin_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxRawSolutionSolutionOfT_V10(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxTasConfigIProposal_V10(parser_context_t* c, pd_BoxTasConfigIProposal_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxVersionedMultiAssets_V10(parser_context_t* c, pd_BoxVersionedMultiAssets_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxVersionedMultiLocation_V10(parser_context_t* c, pd_BoxVersionedMultiLocation_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxVersionedXcmTasSysConfigCall_V10(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readBoxVersionedXcmTuple_V10(parser_context_t* c, pd_BoxVersionedXcmTuple_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readCallHashOf_V10(parser_context_t* c, pd_CallHashOf_V10_t* v) { + GEN_DEF_READARRAY(32) +} + +parser_error_t _readCompactAccountIndex_V10(parser_context_t* c, pd_CompactAccountIndex_V10_t* v) +{ + return _readCompactInt(c, &v->value); +} + +parser_error_t _readCompactPerBill_V10(parser_context_t* c, pd_CompactPerBill_V10_t* v) +{ + return _readCompactInt(c, &v->value); +} + +parser_error_t _readConviction_V10(parser_context_t* c, pd_Conviction_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt8(c, &v->value)) + if (v->value > 5) { + return parser_value_out_of_range; + } + return parser_ok; +} + +parser_error_t _readEcdsaSignature_V10(parser_context_t* c, pd_EcdsaSignature_V10_t* v) { + GEN_DEF_READARRAY(65) +} + +parser_error_t _readElectionScore_V10(parser_context_t* c, pd_ElectionScore_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readEraIndex_V10(parser_context_t* c, pd_EraIndex_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readEthereumAddress_V10(parser_context_t* c, pd_EthereumAddress_V10_t* v) { + GEN_DEF_READARRAY(20) +} + +parser_error_t _readHeadData_V10(parser_context_t* c, pd_HeadData_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readHeartbeatBlockNumber_V10(parser_context_t* c, pd_HeartbeatBlockNumber_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readHrmpChannelId_V10(parser_context_t* c, pd_HrmpChannelId_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readIdentityFields_V10(parser_context_t* c, pd_IdentityFields_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readJudgementBalanceOfT_V10(parser_context_t* c, pd_JudgementBalanceOfT_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readJudgement_V10(parser_context_t* c, pd_Judgement_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readKeyOwnerProof_V10(parser_context_t* c, pd_KeyOwnerProof_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readKeyValue_V10(parser_context_t* c, pd_KeyValue_V10_t* v) { + GEN_DEF_READARRAY(32) +} + +parser_error_t _readKey_V10(parser_context_t* c, pd_Key_V10_t* v) { + GEN_DEF_READARRAY(32) +} + +parser_error_t _readKeys_V10(parser_context_t* c, pd_Keys_V10_t* v) { + GEN_DEF_READARRAY(6 * 32) +} + +parser_error_t _readLeasePeriodOfT_V10(parser_context_t* c, pd_LeasePeriodOfT_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readLookupasStaticLookupSource_V10(parser_context_t* c, pd_LookupasStaticLookupSource_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt8(c, &v->value)) + switch (v->value) { + case 0: // Id + CHECK_ERROR(_readAccountId_V10(c, &v->id)) + break; + case 1: // Index + CHECK_ERROR(_readCompactAccountIndex_V10(c, &v->index)) + break; + case 2: // Raw + CHECK_ERROR(_readBytes(c, &v->raw)) + break; + case 3: // Address32 + GEN_DEF_READARRAY(32) + case 4: // Address20 + GEN_DEF_READARRAY(20) + default: + return parser_unexpected_value; + } + + return parser_ok; +} + +parser_error_t _readMemberCount_V10(parser_context_t* c, pd_MemberCount_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readMultiSignature_V10(parser_context_t* c, pd_MultiSignature_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readMultiSigner_V10(parser_context_t* c, pd_MultiSigner_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readNextConfigDescriptor_V10(parser_context_t* c, pd_NextConfigDescriptor_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readOpaqueCall_V10(parser_context_t* c, pd_OpaqueCall_V10_t* v) +{ + // Encoded as Byte[], array size comes first + uint8_t size; + CHECK_ERROR(_readUInt8(c, &size)) + return _readCall(c, &v->call); +} + +parser_error_t _readOverweightIndex_V10(parser_context_t* c, pd_OverweightIndex_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readParaId_V10(parser_context_t* c, pd_ParaId_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readParachainsInherentDataHeader_V10(parser_context_t* c, pd_ParachainsInherentDataHeader_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readPerbill_V10(parser_context_t* c, pd_Perbill_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readPercent_V10(parser_context_t* c, pd_Percent_V10_t* v) +{ + return _readCompactInt(c, &v->value); +} + +parser_error_t _readProxyType_V10(parser_context_t* c, pd_ProxyType_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt8(c, &v->value)) + if (v->value > 3) { + return parser_value_out_of_range; + } + return parser_ok; +} + +parser_error_t _readPvfCheckStatement_V10(parser_context_t* c, pd_PvfCheckStatement_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readReferendumIndex_V10(parser_context_t* c, pd_ReferendumIndex_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readRegistrarIndex_V10(parser_context_t* c, pd_RegistrarIndex_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readRenouncing_V10(parser_context_t* c, pd_Renouncing_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readRewardDestination_V10(parser_context_t* c, pd_RewardDestination_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt8(c, &v->value)) + if (v->value > 2) { + return parser_value_out_of_range; + } + return parser_ok; +} + +parser_error_t _readSessionIndex_V10(parser_context_t* c, pd_SessionIndex_V10_t* v) +{ + return _readUInt32(c, &v->value); +} + +parser_error_t _readSolutionOrSnapshotSize_V10(parser_context_t* c, pd_SolutionOrSnapshotSize_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readStatementKind_V10(parser_context_t* c, pd_StatementKind_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readSupportsAccountId_V10(parser_context_t* c, pd_SupportsAccountId_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readTimepoint_V10(parser_context_t* c, pd_Timepoint_V10_t* v) +{ + CHECK_ERROR(_readBlockNumber(c, &v->height)) + CHECK_ERROR(_readu32(c, &v->index)) + return parser_ok; +} + +parser_error_t _readTupleAccountIdData_V10(parser_context_t* c, pd_TupleAccountIdData_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readTupleBalanceOfTBalanceOfTBlockNumber_V10(parser_context_t* c, pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readValidationCodeHash_V10(parser_context_t* c, pd_ValidationCodeHash_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readValidationCode_V10(parser_context_t* c, pd_ValidationCode_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readValidatorPrefs_V10(parser_context_t* c, pd_ValidatorPrefs_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readCompactPerBill_V10(c, &v->commission)); + CHECK_ERROR(_readbool(c, &v->blocked)) + return parser_ok; +} + +parser_error_t _readValidatorSignature_V10(parser_context_t* c, pd_ValidatorSignature_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readVestingInfoBalanceOfTBlockNumber_V10(parser_context_t* c, pd_VestingInfoBalanceOfTBlockNumber_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readWeightLimit_V10(parser_context_t* c, pd_WeightLimit_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt64(c, &v->value)) + return parser_ok; +} + +parser_error_t _readWeight_V10(parser_context_t* c, pd_Weight_V10_t* v) +{ + CHECK_INPUT(); + CHECK_ERROR(_readUInt64(c, &v->value)) + return parser_ok; +} + +parser_error_t _readXcmVersion_V10(parser_context_t* c, pd_XcmVersion_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readschedulePeriodBlockNumber_V10(parser_context_t* c, pd_schedulePeriodBlockNumber_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readschedulePriority_V10(parser_context_t* c, pd_schedulePriority_V10_t* v) +{ + return parser_not_supported; +} + +parser_error_t _readVecAccountId_V10(parser_context_t* c, pd_VecAccountId_V10_t* v) { + GEN_DEF_READVECTOR(AccountId_V10) +} + +parser_error_t _readVecKeyValue_V10(parser_context_t* c, pd_VecKeyValue_V10_t* v) { + GEN_DEF_READVECTOR(KeyValue_V10) +} + +parser_error_t _readVecKey_V10(parser_context_t* c, pd_VecKey_V10_t* v) { + GEN_DEF_READVECTOR(Key_V10) +} + +parser_error_t _readVecLookupasStaticLookupSource_V10(parser_context_t* c, pd_VecLookupasStaticLookupSource_V10_t* v) { + GEN_DEF_READVECTOR(LookupasStaticLookupSource_V10) +} + +parser_error_t _readVecTupleAccountIdData_V10(parser_context_t* c, pd_VecTupleAccountIdData_V10_t* v) { + GEN_DEF_READVECTOR(TupleAccountIdData_V10) +} + +parser_error_t _readOptionAccountId_V10(parser_context_t* c, pd_OptionAccountId_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readAccountId_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionElectionScore_V10(parser_context_t* c, pd_OptionElectionScore_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readElectionScore_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionMultiSignature_V10(parser_context_t* c, pd_OptionMultiSignature_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readMultiSignature_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionMultiSigner_V10(parser_context_t* c, pd_OptionMultiSigner_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readMultiSigner_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionPercent_V10(parser_context_t* c, pd_OptionPercent_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readPercent_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionProxyType_V10(parser_context_t* c, pd_OptionProxyType_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readProxyType_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionReferendumIndex_V10(parser_context_t* c, pd_OptionReferendumIndex_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readReferendumIndex_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionStatementKind_V10(parser_context_t* c, pd_OptionStatementKind_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readStatementKind_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionTimepoint_V10(parser_context_t* c, pd_OptionTimepoint_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readTimepoint_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionTupleBalanceOfTBalanceOfTBlockNumber_V10(parser_context_t* c, pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readTupleBalanceOfTBalanceOfTBlockNumber_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionXcmVersion_V10(parser_context_t* c, pd_OptionXcmVersion_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readXcmVersion_V10(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionschedulePeriodBlockNumber_V10(parser_context_t* c, pd_OptionschedulePeriodBlockNumber_V10_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readschedulePeriodBlockNumber_V10(c, &v->contained)) + } + return parser_ok; +} + +/////////////////////////////////// +/////////////////////////////////// +/////////////////////////////////// + +parser_error_t _toStringAccountId_V10( + const pd_AccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringPubkeyAsAddress(v->_ptr, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringAccountIndex_V10( + const pd_AccountIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringAccountVoteBalanceOf_V10( + const pd_AccountVoteBalanceOf_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V10( + const pd_AuthorityIdasRuntimeAppPublicSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxCallOrHashOfT_V10( + const pd_BoxCallOrHashOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V10( + const pd_BoxEquivocationProofHashBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxEquivocationProofHeader_V10( + const pd_BoxEquivocationProofHeader_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V10( + const pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxMultiLocation_V10( + const pd_BoxMultiLocation_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxPalletsOrigin_V10( + const pd_BoxPalletsOrigin_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxRawSolutionSolutionOfT_V10( + const pd_BoxRawSolutionSolutionOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxTasConfigIProposal_V10( + const pd_BoxTasConfigIProposal_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxVersionedMultiAssets_V10( + const pd_BoxVersionedMultiAssets_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxVersionedMultiLocation_V10( + const pd_BoxVersionedMultiLocation_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V10( + const pd_BoxVersionedXcmTasSysConfigCall_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringBoxVersionedXcmTuple_V10( + const pd_BoxVersionedXcmTuple_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringCallHashOf_V10( + const pd_CallHashOf_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(32) +} + +parser_error_t _toStringCompactAccountIndex_V10( + const pd_CompactAccountIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringCompactInt(&v->value, 0, "", "", outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringCompactPerBill_V10( + const pd_CompactPerBill_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + // 9 but shift 2 to show as percentage + return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringConviction_V10( + const pd_Conviction_V10_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, "None"); + break; + case 1: + snprintf(outValue, outValueLen, "Locked1x"); + break; + case 2: + snprintf(outValue, outValueLen, "Locked2x"); + break; + case 3: + snprintf(outValue, outValueLen, "Locked3x"); + break; + case 4: + snprintf(outValue, outValueLen, "Locked4x"); + break; + case 5: + snprintf(outValue, outValueLen, "Locked5x"); + break; + default: + return parser_print_not_supported; + } + + return parser_ok; +} + +parser_error_t _toStringEcdsaSignature_V10( + const pd_EcdsaSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(65) +} + +parser_error_t _toStringElectionScore_V10( + const pd_ElectionScore_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringEraIndex_V10( + const pd_EraIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringEthereumAddress_V10( + const pd_EthereumAddress_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(20) +} + +parser_error_t _toStringHeadData_V10( + const pd_HeadData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringHeartbeatBlockNumber_V10( + const pd_HeartbeatBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringHrmpChannelId_V10( + const pd_HrmpChannelId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringIdentityFields_V10( + const pd_IdentityFields_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringJudgementBalanceOfT_V10( + const pd_JudgementBalanceOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringJudgement_V10( + const pd_Judgement_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringKeyOwnerProof_V10( + const pd_KeyOwnerProof_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringKeyValue_V10( + const pd_KeyValue_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + return parser_print_not_supported; +} + +parser_error_t _toStringKey_V10( + const pd_Key_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + return parser_print_not_supported; +} + +parser_error_t _toStringKeys_V10( + const pd_Keys_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(6 * 32) +} + +parser_error_t _toStringLeasePeriodOfT_V10( + const pd_LeasePeriodOfT_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringLookupasStaticLookupSource_V10( + const pd_LookupasStaticLookupSource_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + switch (v->value) { + case 0: // Id + CHECK_ERROR(_toStringAccountId_V10(&v->id, outValue, outValueLen, pageIdx, pageCount)) + break; + case 1: // Index + CHECK_ERROR(_toStringCompactAccountIndex_V10(&v->index, outValue, outValueLen, pageIdx, pageCount)) + break; + case 2: // Raw + CHECK_ERROR(_toStringBytes(&v->raw, outValue, outValueLen, pageIdx, pageCount)) + break; + case 3: // Address32 + { + GEN_DEF_TOSTRING_ARRAY(32) + } + case 4: // Address20 + { + GEN_DEF_TOSTRING_ARRAY(20) + } + default: + return parser_unexpected_address_type; + } + + return parser_ok; +} + +parser_error_t _toStringMemberCount_V10( + const pd_MemberCount_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringMultiSignature_V10( + const pd_MultiSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringMultiSigner_V10( + const pd_MultiSigner_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringNextConfigDescriptor_V10( + const pd_NextConfigDescriptor_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringOpaqueCall_V10( + const pd_OpaqueCall_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringCall(&v->call, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringOverweightIndex_V10( + const pd_OverweightIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringParaId_V10( + const pd_ParaId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringParachainsInherentDataHeader_V10( + const pd_ParachainsInherentDataHeader_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringPerbill_V10( + const pd_Perbill_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + char bufferUI[100]; + char ratioBuffer[80]; + memset(outValue, 0, outValueLen); + memset(ratioBuffer, 0, sizeof(ratioBuffer)); + memset(bufferUI, 0, sizeof(bufferUI)); + *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_V10( + const pd_Percent_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + // 9 but shift 2 to show as percentage + return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringProxyType_V10( + const pd_ProxyType_V10_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, "Any"); + break; + case 1: + snprintf(outValue, outValueLen, "NonTransfer"); + break; + case 2: + snprintf(outValue, outValueLen, "Governance"); + break; + case 3: + snprintf(outValue, outValueLen, "Staking"); + break; + default: + return parser_print_not_supported; + } + + return parser_ok; +} + +parser_error_t _toStringPvfCheckStatement_V10( + const pd_PvfCheckStatement_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringReferendumIndex_V10( + const pd_ReferendumIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringRegistrarIndex_V10( + const pd_RegistrarIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringRenouncing_V10( + const pd_Renouncing_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringRewardDestination_V10( + const pd_RewardDestination_V10_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, "Staked"); + break; + case 1: + snprintf(outValue, outValueLen, "Stash"); + break; + case 2: + snprintf(outValue, outValueLen, "Controller"); + break; + default: + return parser_print_not_supported; + } + + return parser_ok; +} + +parser_error_t _toStringSessionIndex_V10( + const pd_SessionIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringSolutionOrSnapshotSize_V10( + const pd_SolutionOrSnapshotSize_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringStatementKind_V10( + const pd_StatementKind_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringSupportsAccountId_V10( + const pd_SupportsAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringTimepoint_V10( + const pd_Timepoint_V10_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]; + CHECK_ERROR(_toStringBlockNumber(&v->height, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringu32(&v->index, 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(_toStringBlockNumber(&v->height, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringu32(&v->index, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + +parser_error_t _toStringTupleAccountIdData_V10( + const pd_TupleAccountIdData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringValidationCodeHash_V10( + const pd_ValidationCodeHash_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringValidationCode_V10( + const pd_ValidationCode_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringValidatorPrefs_V10( + const pd_ValidatorPrefs_V10_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]; + CHECK_ERROR(_toStringCompactPerBill_V10(&v->commission, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringbool(&v->blocked, 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(_toStringCompactPerBill_V10(&v->commission, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringbool(&v->blocked, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + +parser_error_t _toStringValidatorSignature_V10( + const pd_ValidatorSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V10( + const pd_VestingInfoBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringWeightLimit_V10( + const pd_WeightLimit_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringWeight_V10( + const pd_Weight_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringXcmVersion_V10( + const pd_XcmVersion_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringschedulePeriodBlockNumber_V10( + const pd_schedulePeriodBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringschedulePriority_V10( + const pd_schedulePriority_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + return parser_print_not_supported; +} + +parser_error_t _toStringVecAccountId_V10( + const pd_VecAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(AccountId_V10); +} + +parser_error_t _toStringVecKeyValue_V10( + const pd_VecKeyValue_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(KeyValue_V10); +} + +parser_error_t _toStringVecKey_V10( + const pd_VecKey_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(Key_V10); +} + +parser_error_t _toStringVecLookupasStaticLookupSource_V10( + const pd_VecLookupasStaticLookupSource_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(LookupasStaticLookupSource_V10); +} + +parser_error_t _toStringVecTupleAccountIdData_V10( + const pd_VecTupleAccountIdData_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(TupleAccountIdData_V10); +} + +parser_error_t _toStringOptionAccountId_V10( + const pd_OptionAccountId_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringAccountId_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionElectionScore_V10( + const pd_OptionElectionScore_V10_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_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionMultiSignature_V10( + const pd_OptionMultiSignature_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringMultiSignature_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionMultiSigner_V10( + const pd_OptionMultiSigner_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringMultiSigner_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionPercent_V10( + const pd_OptionPercent_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringPercent_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionProxyType_V10( + const pd_OptionProxyType_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringProxyType_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionReferendumIndex_V10( + const pd_OptionReferendumIndex_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringReferendumIndex_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionStatementKind_V10( + const pd_OptionStatementKind_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringStatementKind_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionTimepoint_V10( + const pd_OptionTimepoint_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringTimepoint_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringTupleBalanceOfTBalanceOfTBlockNumber_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionXcmVersion_V10( + const pd_OptionXcmVersion_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringXcmVersion_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionschedulePeriodBlockNumber_V10( + const pd_OptionschedulePeriodBlockNumber_V10_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringschedulePeriodBlockNumber_V10( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} diff --git a/app/src/substrate/substrate_types_V10.h b/app/src/substrate/substrate_types_V10.h new file mode 100644 index 00000000..f04144c4 --- /dev/null +++ b/app/src/substrate/substrate_types_V10.h @@ -0,0 +1,448 @@ +/******************************************************************************* +* (c) 2019 - 2022 Zondax GmbH +* +* 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 +extern "C" { +#endif + +#include "substrate_types.h" +#include +#include + +// Based +// https://github.com/paritytech/substrate/blob/master/node/primitives/src/lib.rs + +typedef struct { + const uint8_t* _ptr; +} pd_AccountId_V10_t; + +typedef struct { + compactInt_t value; +} pd_CompactAccountIndex_V10_t; + +typedef struct { + compactInt_t value; +} pd_CompactPerBill_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ElectionScore_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_KeyValue_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_Key_V10_t; + +typedef struct { + uint8_t value; + union { + pd_AccountId_V10_t id; + pd_CompactAccountIndex_V10_t index; + pd_Bytes_t raw; + const uint8_t* _ptr; + }; +} pd_LookupasStaticLookupSource_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_MultiSignature_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_MultiSigner_V10_t; + +typedef struct { + compactInt_t value; +} pd_Percent_V10_t; + +typedef struct { + uint8_t value; +} pd_ProxyType_V10_t; + +typedef struct { + uint32_t value; +} pd_ReferendumIndex_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_StatementKind_V10_t; + +typedef struct { + pd_BlockNumber_t height; + uint32_t index; +} pd_Timepoint_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_TupleAccountIdData_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_XcmVersion_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_schedulePeriodBlockNumber_V10_t; + +typedef struct { + pd_Call_t call; +} pd_OpaqueCall_V10_t; + +typedef struct { + uint8_t some; + pd_Timepoint_V10_t contained; +} pd_OptionTimepoint_V10_t; + +typedef struct { + pd_CompactPerBill_V10_t commission; + pd_bool_t blocked; +} pd_ValidatorPrefs_V10_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecLookupasStaticLookupSource_V10_t; + +typedef struct { + uint32_t value; +} pd_AccountIndex_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_AccountVoteBalanceOf_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_AuthorityIdasRuntimeAppPublicSignature_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxCallOrHashOfT_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxEquivocationProofHashBlockNumber_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxEquivocationProofHeader_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxIdentityInfoMaxAdditionalFields_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxMultiLocation_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxPalletsOrigin_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxRawSolutionSolutionOfT_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxTasConfigIProposal_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxVersionedMultiAssets_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxVersionedMultiLocation_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxVersionedXcmTasSysConfigCall_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_BoxVersionedXcmTuple_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_CallHashOf_V10_t; + +typedef struct { + uint8_t value; +} pd_Conviction_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_EcdsaSignature_V10_t; + +typedef struct { + uint32_t value; +} pd_EraIndex_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_EthereumAddress_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_HeadData_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_HeartbeatBlockNumber_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_HrmpChannelId_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_IdentityFields_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_JudgementBalanceOfT_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_Judgement_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_KeyOwnerProof_V10_t; + +typedef struct { + const uint8_t* _ptr; +} pd_Keys_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_LeasePeriodOfT_V10_t; + +typedef struct { + uint32_t value; +} pd_MemberCount_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_NextConfigDescriptor_V10_t; + +typedef struct { + uint8_t some; + pd_AccountId_V10_t contained; +} pd_OptionAccountId_V10_t; + +typedef struct { + uint8_t some; + pd_ElectionScore_V10_t contained; +} pd_OptionElectionScore_V10_t; + +typedef struct { + uint8_t some; + pd_MultiSignature_V10_t contained; +} pd_OptionMultiSignature_V10_t; + +typedef struct { + uint8_t some; + pd_MultiSigner_V10_t contained; +} pd_OptionMultiSigner_V10_t; + +typedef struct { + uint8_t some; + pd_Percent_V10_t contained; +} pd_OptionPercent_V10_t; + +typedef struct { + uint8_t some; + pd_ProxyType_V10_t contained; +} pd_OptionProxyType_V10_t; + +typedef struct { + uint8_t some; + pd_ReferendumIndex_V10_t contained; +} pd_OptionReferendumIndex_V10_t; + +typedef struct { + uint8_t some; + pd_StatementKind_V10_t contained; +} pd_OptionStatementKind_V10_t; + +typedef struct { + uint8_t some; + pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t contained; +} pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t; + +typedef struct { + uint8_t some; + pd_XcmVersion_V10_t contained; +} pd_OptionXcmVersion_V10_t; + +typedef struct { + uint8_t some; + pd_schedulePeriodBlockNumber_V10_t contained; +} pd_OptionschedulePeriodBlockNumber_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_OverweightIndex_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ParaId_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ParachainsInherentDataHeader_V10_t; + +typedef struct { + uint32_t value; +} pd_Perbill_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_PvfCheckStatement_V10_t; + +typedef struct { + uint32_t value; +} pd_RegistrarIndex_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_Renouncing_V10_t; + +typedef struct { + uint8_t value; +} pd_RewardDestination_V10_t; + +typedef struct { + uint32_t value; +} pd_SessionIndex_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_SolutionOrSnapshotSize_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_SupportsAccountId_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ValidationCodeHash_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ValidationCode_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_ValidatorSignature_V10_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecAccountId_V10_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecKeyValue_V10_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecKey_V10_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecTupleAccountIdData_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_VestingInfoBalanceOfTBlockNumber_V10_t; + +typedef struct { + uint64_t value; +} pd_WeightLimit_V10_t; + +typedef struct { + uint64_t value; +} pd_Weight_V10_t; + +typedef struct { + // TODO: Not implemented + uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; +} pd_schedulePriority_V10_t; + +#ifdef __cplusplus +} +#endif From a629f7c1fea436da8b583dcab6964eec80e15585 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:01:12 +0100 Subject: [PATCH 03/14] remove V8 support, add V10 --- app/src/substrate/substrate_dispatch.c | 34 +++++++++++++------------- app/src/substrate/substrate_dispatch.h | 8 +++--- app/src/substrate/substrate_methods.h | 8 +++--- app/src/substrate/substrate_strings.h | 8 ++++++ 4 files changed, 33 insertions(+), 25 deletions(-) diff --git a/app/src/substrate/substrate_dispatch.c b/app/src/substrate/substrate_dispatch.c index cd4e6a86..88e2f2b4 100644 --- a/app/src/substrate/substrate_dispatch.c +++ b/app/src/substrate/substrate_dispatch.c @@ -26,10 +26,10 @@ parser_error_t _readMethod( pd_Method_t* method) { switch (c->tx_obj->transactionVersion) { + case 10: + return _readMethod_V10(c, moduleIdx, callIdx, &method->V10); case 9: return _readMethod_V9(c, moduleIdx, callIdx, &method->V9); - case 8: - return _readMethod_V8(c, moduleIdx, callIdx, &method->V8); default: return parser_tx_version_not_supported; } @@ -38,10 +38,10 @@ parser_error_t _readMethod( uint8_t _getMethod_NumItems(uint32_t transactionVersion, uint8_t moduleIdx, uint8_t callIdx) { switch (transactionVersion) { + case 10: + return _getMethod_NumItems_V10(moduleIdx, callIdx); case 9: return _getMethod_NumItems_V9(moduleIdx, callIdx); - case 8: - return _getMethod_NumItems_V8(moduleIdx, callIdx); default: return parser_tx_version_not_supported; } @@ -50,10 +50,10 @@ uint8_t _getMethod_NumItems(uint32_t transactionVersion, uint8_t moduleIdx, uint const char* _getMethod_ModuleName(uint32_t transactionVersion, uint8_t moduleIdx) { switch (transactionVersion) { + case 10: + return _getMethod_ModuleName_V10(moduleIdx); case 9: return _getMethod_ModuleName_V9(moduleIdx); - case 8: - return _getMethod_ModuleName_V8(moduleIdx); default: return NULL; } @@ -62,10 +62,10 @@ const char* _getMethod_ModuleName(uint32_t transactionVersion, uint8_t moduleIdx const char* _getMethod_Name(uint32_t transactionVersion, uint8_t moduleIdx, uint8_t callIdx) { switch (transactionVersion) { + case 10: + return _getMethod_Name_V10(moduleIdx, callIdx); case 9: return _getMethod_Name_V9(moduleIdx, callIdx); - case 8: - return _getMethod_Name_V8(moduleIdx, callIdx); default: return 0; } @@ -74,10 +74,10 @@ const char* _getMethod_Name(uint32_t transactionVersion, uint8_t moduleIdx, uint const char* _getMethod_ItemName(uint32_t transactionVersion, uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) { switch (transactionVersion) { + case 10: + return _getMethod_ItemName_V10(moduleIdx, callIdx, itemIdx); case 9: return _getMethod_ItemName_V9(moduleIdx, callIdx, itemIdx); - case 8: - return _getMethod_ItemName_V8(moduleIdx, callIdx, itemIdx); default: return NULL; } @@ -88,12 +88,12 @@ parser_error_t _getMethod_ItemValue(uint32_t transactionVersion, pd_Method_t* m, uint8_t pageIdx, uint8_t* pageCount) { switch (transactionVersion) { + case 10: + return _getMethod_ItemValue_V10(&m->V10, moduleIdx, callIdx, itemIdx, outValue, + outValueLen, pageIdx, pageCount); case 9: return _getMethod_ItemValue_V9(&m->V9, moduleIdx, callIdx, itemIdx, outValue, outValueLen, pageIdx, pageCount); - case 8: - return _getMethod_ItemValue_V8(&m->V8, moduleIdx, callIdx, itemIdx, outValue, - outValueLen, pageIdx, pageCount); default: return parser_tx_version_not_supported; } @@ -102,10 +102,10 @@ parser_error_t _getMethod_ItemValue(uint32_t transactionVersion, pd_Method_t* m, bool _getMethod_ItemIsExpert(uint32_t transactionVersion, uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) { switch (transactionVersion) { + case 10: + return _getMethod_ItemIsExpert_V10(moduleIdx, callIdx, itemIdx); case 9: return _getMethod_ItemIsExpert_V9(moduleIdx, callIdx, itemIdx); - case 8: - return _getMethod_ItemIsExpert_V8(moduleIdx, callIdx, itemIdx); default: return false; } @@ -114,10 +114,10 @@ bool _getMethod_ItemIsExpert(uint32_t transactionVersion, uint8_t moduleIdx, uin bool _getMethod_IsNestingSupported(uint32_t transactionVersion, uint8_t moduleIdx, uint8_t callIdx) { switch (transactionVersion) { + case 10: + return _getMethod_IsNestingSupported_V10(moduleIdx, callIdx); case 9: return _getMethod_IsNestingSupported_V9(moduleIdx, callIdx); - case 8: - return _getMethod_IsNestingSupported_V8(moduleIdx, callIdx); default: return false; } diff --git a/app/src/substrate/substrate_dispatch.h b/app/src/substrate/substrate_dispatch.h index 7b54d175..0ba0ce5f 100644 --- a/app/src/substrate/substrate_dispatch.h +++ b/app/src/substrate/substrate_dispatch.h @@ -21,7 +21,7 @@ extern "C" { #include "parser_common.h" #include "stdbool.h" -#include "substrate_dispatch_V8.h" +#include "substrate_dispatch_V10.h" #include "substrate_dispatch_V9.h" #include #include @@ -33,12 +33,12 @@ extern "C" { { \ switch (txVersion) { \ \ + case 10: \ + return PD_CALL_##CALL##_V10; \ + \ case 9: \ return PD_CALL_##CALL##_V9; \ \ - case 8: \ - return PD_CALL_##CALL##_V8; \ - \ default: \ return 0; \ } \ diff --git a/app/src/substrate/substrate_methods.h b/app/src/substrate/substrate_methods.h index 5762d4e8..2f697bce 100644 --- a/app/src/substrate/substrate_methods.h +++ b/app/src/substrate/substrate_methods.h @@ -26,19 +26,19 @@ extern "C" { #define GET_PD_CALL(CALL, VERSION) (PD_CALL_##CALL##_V##VERSION) -#include "substrate_methods_V8.h" +#include "substrate_methods_V10.h" #include "substrate_methods_V9.h" -#include "substrate_types_V8.h" +#include "substrate_types_V10.h" #include "substrate_types_V9.h" typedef union { + pd_Method_V10_t V10; pd_Method_V9_t V9; - pd_Method_V8_t V8; } pd_Method_t; typedef union { + pd_MethodNested_V10_t V10; pd_MethodNested_V9_t V9; - pd_MethodNested_V8_t V8; } pd_MethodNested_t; #ifdef __cplusplus diff --git a/app/src/substrate/substrate_strings.h b/app/src/substrate/substrate_strings.h index 3eed3021..75dd600d 100644 --- a/app/src/substrate/substrate_strings.h +++ b/app/src/substrate/substrate_strings.h @@ -355,6 +355,8 @@ static const char* STR_ME_ADD_TRUSTED_VALIDATION_CODE = "Add trusted validation static const char* STR_ME_POKE_UNUSED_VALIDATION_CODE = "Poke unused validation code"; static const char* STR_ME_INCLUDE_PVF_CHECK_STATEMENT = "Include pvf check statement"; static const char* STR_ME_CONTRIBUTE_ALL = "Contribute all"; +static const char* STR_ME_FORCE_APPLY_MIN_COMMISSION = "Force apply min commission"; +static const char* STR_ME_GOVERNANCE_FALLBACK = "Governance fallback"; // Items names static const char* STR_IT_ratio = "Ratio"; @@ -544,6 +546,12 @@ static const char* STR_IT_bytes = "Bytes"; static const char* STR_IT_lighter = "Lighter"; static const char* STR_IT_validation_code_hash = "Validation code hash"; static const char* STR_IT_stmt = "Stmt"; +static const char* STR_IT_maybe_max_voters = "Maybe max voters"; +static const char* STR_IT_maybe_max_targets = "Maybe max targets"; +static const char* STR_IT_inbound = "Inbound"; +static const char* STR_IT_outbound = "Outbound"; +static const char* STR_IT_channels = "Channels"; +static const char* STR_IT_open_requests = "Open requests"; #ifdef __cplusplus } From 734638824fe71923486473c4ef960907666d6159 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:01:44 +0100 Subject: [PATCH 04/14] update docs --- README.md | 14 +- docs/supported_10.9170.x.md | 537 ++++++++++++++++++++++++++++++++++++ docs/supported_latest.md | 14 +- 3 files changed, 553 insertions(+), 12 deletions(-) create mode 100644 docs/supported_10.9170.x.md diff --git a/README.md b/README.md index e0332b47..8e708cda 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Please: - **Do not use a Ledger device with funds for development purposes.** - **Have a separate and marked device that is used ONLY for development and testing** -# Kusama 9.9160.x +# Kusama 10.9170.x ## System @@ -114,6 +114,7 @@ Please: |Kick | | :heavy_check_mark: | | `VecLookupasStaticLookupSource` who
| |Set staking configs | | | | `Balance` min_nominator_bond
`Balance` min_validator_bond
`Optionu32` max_nominator_count
`Optionu32` max_validator_count
`OptionPercent` chill_threshold
`Perbill` min_commission
| |Chill other | | :heavy_check_mark: | | `AccountId` controller
| +|Force apply min commission | | :heavy_check_mark: | | `AccountId` validator_stash
| ## Session @@ -329,7 +330,7 @@ Please: | Name | Light | XL | Nesting | Arguments | | :---------- |:------------:|:--------:|:--------:|:--------| -|As multi threshold 1 | | | | `VecAccountId` other_signatories
`Call` call
| +|As multi threshold 1 | | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId` other_signatories
`Call` call
| |As multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`OpaqueCall` call
`bool` store_call
`Weight` max_weight
| |Approve as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`H256` call_hash
`Weight` max_weight
| |Cancel as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`Timepoint` timepoint
`H256` call_hash
| @@ -376,6 +377,7 @@ Please: |Set minimum untrusted score | | | | `OptionElectionScore` maybe_next_score
| |Set emergency election result | | | | `SupportsAccountId` supports
| |Submit | | | | `BoxRawSolutionSolutionOfT` raw_solution
`u32` num_signed_submissions
| +|Governance fallback | | :heavy_check_mark: | | `Optionu32` maybe_max_voters
`Optionu32` maybe_max_targets
| ## Gilt @@ -496,10 +498,10 @@ Please: |Hrmp init open channel | | | | `ParaId` recipient
`u32` proposed_max_capacity
`u32` proposed_max_message_size
| |Hrmp accept open channel | | | | `ParaId` sender
| |Hrmp close channel | | | | `HrmpChannelId` channel_id
| -|Force clean hrmp | | | | `ParaId` para
| -|Force process hrmp open | | :heavy_check_mark: | | | -|Force process hrmp close | | :heavy_check_mark: | | | -|Hrmp cancel open request | | | | `HrmpChannelId` channel_id
| +|Force clean hrmp | | | | `ParaId` para
`u32` inbound
`u32` outbound
| +|Force process hrmp open | | :heavy_check_mark: | | `u32` channels
| +|Force process hrmp close | | :heavy_check_mark: | | `u32` channels
| +|Hrmp cancel open request | | | | `HrmpChannelId` channel_id
`u32` open_requests
| ## ParasDisputes diff --git a/docs/supported_10.9170.x.md b/docs/supported_10.9170.x.md new file mode 100644 index 00000000..62bc5d6a --- /dev/null +++ b/docs/supported_10.9170.x.md @@ -0,0 +1,537 @@ +# Kusama 10.9170.x + +## System + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Fill block | | :heavy_check_mark: | :heavy_check_mark: | `Perbill` ratio
| +|Remark | | :heavy_check_mark: | :heavy_check_mark: | `Vecu8` remark
| +|Set heap pages | | :heavy_check_mark: | :heavy_check_mark: | `u64` pages
| +|Set code | | :heavy_check_mark: | :heavy_check_mark: | `Vecu8` code
| +|Set code without checks | | :heavy_check_mark: | :heavy_check_mark: | `Vecu8` code
| +|Set storage | | | | `VecKeyValue` items
| +|Kill storage | | | | `VecKey` keys
| +|Kill prefix | | | | `Key` prefix
`u32` subkeys
| +|Remark with event | | :heavy_check_mark: | :heavy_check_mark: | `Vecu8` remark
| + +## Babe + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Report equivocation | | | | `BoxEquivocationProofHeader` equivocation_proof
`KeyOwnerProof` key_owner_proof
| +|Report equivocation unsigned | | | | `BoxEquivocationProofHeader` equivocation_proof
`KeyOwnerProof` key_owner_proof
| +|Plan config change | | | | `NextConfigDescriptor` config
| + +## Timestamp + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set | | :heavy_check_mark: | | `Compactu64` now
| + +## Indices + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Claim | | :heavy_check_mark: | | `AccountIndex` index
| +|Transfer | | :heavy_check_mark: | | `AccountId` new_
`AccountIndex` index
| +|Free | | :heavy_check_mark: | | `AccountIndex` index
| +|Force transfer | | :heavy_check_mark: | | `AccountId` new_
`AccountIndex` index
`bool` freeze
| +|Freeze | | :heavy_check_mark: | | `AccountIndex` index
| + +## Balances + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Transfer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource` dest
`CompactBalance` amount
| +|Set balance | | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource` who
`CompactBalance` new_free
`CompactBalance` new_reserved
| +|Force transfer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource` source
`LookupasStaticLookupSource` dest
`CompactBalance` amount
| +|Transfer keep alive | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource` dest
`CompactBalance` amount
| +|Transfer all | :heavy_check_mark: | :heavy_check_mark: | | `LookupasStaticLookupSource` dest
`bool` keep_alive
| +|Force unreserve | | :heavy_check_mark: | | `LookupasStaticLookupSource` who
`Balance` amount
| + +## Authorship + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set uncles | | | | `VecHeader` new_uncles
| + +## Staking + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Bond | :heavy_check_mark: | :heavy_check_mark: | | `LookupasStaticLookupSource` controller
`CompactBalance` amount
`RewardDestination` payee
| +|Bond extra | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance` amount
| +|Unbond | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance` amount
| +|Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | | `u32` num_slashing_spans
| +|Validate | :heavy_check_mark: | :heavy_check_mark: | | `ValidatorPrefs` prefs
| +|Nominate | :heavy_check_mark: | :heavy_check_mark: | | `VecLookupasStaticLookupSource` targets
| +|Chill | :heavy_check_mark: | :heavy_check_mark: | | | +|Set payee | :heavy_check_mark: | :heavy_check_mark: | | `RewardDestination` payee
| +|Set controller | :heavy_check_mark: | :heavy_check_mark: | | `LookupasStaticLookupSource` controller
| +|Set validator count | | :heavy_check_mark: | | `Compactu32` new_
| +|Increase validator count | | :heavy_check_mark: | | `Compactu32` additional
| +|Scale validator count | | | | `Percent` factor
| +|Force no eras | | :heavy_check_mark: | | | +|Force new era | | :heavy_check_mark: | | | +|Set invulnerables | | | | `VecAccountId` invulnerables
| +|Force unstake | | :heavy_check_mark: | | `AccountId` stash
`u32` num_slashing_spans
| +|Force new era always | | :heavy_check_mark: | | | +|Cancel deferred slash | | | | `EraIndex` era
`Bytes` slash_indices
| +|Payout stakers | :heavy_check_mark: | :heavy_check_mark: | | `AccountId` validator_stash
`EraIndex` era
| +|Rebond | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance` amount
| +|Set history depth | | :heavy_check_mark: | | `Compactu32` new_history_depth
`Compactu32` era_items_deleted
| +|Reap stash | | :heavy_check_mark: | | `AccountId` stash
`u32` num_slashing_spans
| +|Kick | | :heavy_check_mark: | | `VecLookupasStaticLookupSource` who
| +|Set staking configs | | | | `Balance` min_nominator_bond
`Balance` min_validator_bond
`Optionu32` max_nominator_count
`Optionu32` max_validator_count
`OptionPercent` chill_threshold
`Perbill` min_commission
| +|Chill other | | :heavy_check_mark: | | `AccountId` controller
| +|Force apply min commission | | :heavy_check_mark: | | `AccountId` validator_stash
| + +## Session + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set keys | :heavy_check_mark: | :heavy_check_mark: | | `Keys` keys
`Bytes` proof
| +|Purge keys | :heavy_check_mark: | :heavy_check_mark: | | | + +## Grandpa + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Report equivocation | | | | `BoxEquivocationProofHashBlockNumber` equivocation_proof
`KeyOwnerProof` key_owner_proof
| +|Report equivocation unsigned | | | | `BoxEquivocationProofHashBlockNumber` equivocation_proof
`KeyOwnerProof` key_owner_proof
| +|Note stalled | | :heavy_check_mark: | | `BlockNumber` delay
`BlockNumber` best_finalized_block_number
| + +## ImOnline + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Heartbeat | | | | `HeartbeatBlockNumber` heartbeat
`AuthorityIdasRuntimeAppPublicSignature` signature
| + +## Democracy + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Propose | | | | `Hash` proposal_hash
`Compactu128` amount
| +|Second | | :heavy_check_mark: | | `Compactu32` proposal
`Compactu32` seconds_upper_bound
| +|Vote | | | | `Compactu32` ref_index
`AccountVoteBalanceOf` vote
| +|Emergency cancel | | :heavy_check_mark: | | `ReferendumIndex` ref_index
| +|External propose | | | | `Hash` proposal_hash
| +|External propose majority | | | | `Hash` proposal_hash
| +|External propose default | | | | `Hash` proposal_hash
| +|Fast track | | | | `Hash` proposal_hash
`BlockNumber` voting_period
`BlockNumber` delay
| +|Veto external | | | | `Hash` proposal_hash
| +|Cancel referendum | | :heavy_check_mark: | | `Compactu32` ref_index
| +|Cancel queued | | :heavy_check_mark: | | `ReferendumIndex` which
| +|Delegate | | | | `AccountId` to
`Conviction` conviction
`Balance` balance
| +|Undelegate | | :heavy_check_mark: | | | +|Clear public proposals | | :heavy_check_mark: | | | +|Note preimage | | :heavy_check_mark: | | `Bytes` encoded_proposal
| +|Note preimage operational | | :heavy_check_mark: | | `Bytes` encoded_proposal
| +|Note imminent preimage | | :heavy_check_mark: | | `Bytes` encoded_proposal
| +|Note imminent preimage operational | | :heavy_check_mark: | | `Bytes` encoded_proposal
| +|Reap preimage | | | | `Hash` proposal_hash
`Compactu32` proposal_len_upper_bound
| +|Unlock | | | | `AccountId` target
| +|Remove vote | | :heavy_check_mark: | | `ReferendumIndex` index
| +|Remove other vote | | | | `AccountId` target
`ReferendumIndex` index
| +|Enact proposal | | | | `Hash` proposal_hash
`ReferendumIndex` index
| +|Blacklist | | | | `Hash` proposal_hash
`OptionReferendumIndex` maybe_ref_index
| +|Cancel proposal | | :heavy_check_mark: | | `Compactu32` prop_index
| + +## Council + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set members | | | | `VecAccountId` new_members
`OptionAccountId` prime
`MemberCount` old_count
| +|Execute | | | | `BoxTasConfigIProposal` proposal
`Compactu32` length_bound
| +|Propose | | | | `Compactu32` threshold
`BoxTasConfigIProposal` proposal
`Compactu32` length_bound
| +|Vote | | :heavy_check_mark: | | `Hash` proposal
`Compactu32` index
`bool` approve
| +|Close | | :heavy_check_mark: | | `Hash` proposal_hash
`Compactu32` index
`Compactu64` proposal_weight_bound
`Compactu32` length_bound
| +|Disapprove proposal | | :heavy_check_mark: | | `Hash` proposal_hash
| + +## TechnicalCommittee + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set members | | | | `VecAccountId` new_members
`OptionAccountId` prime
`MemberCount` old_count
| +|Execute | | | | `BoxTasConfigIProposal` proposal
`Compactu32` length_bound
| +|Propose | | | | `Compactu32` threshold
`BoxTasConfigIProposal` proposal
`Compactu32` length_bound
| +|Vote | | | | `Hash` proposal
`Compactu32` index
`bool` approve
| +|Close | | | | `Hash` proposal_hash
`Compactu32` index
`Compactu64` proposal_weight_bound
`Compactu32` length_bound
| +|Disapprove proposal | | :heavy_check_mark: | | `Hash` proposal_hash
| + +## PhragmenElection + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Vote | | | | `VecAccountId` votes
`Compactu128` amount
| +|Remove voter | | :heavy_check_mark: | | | +|Submit candidacy | | :heavy_check_mark: | | `Compactu32` candidate_count
| +|Renounce candidacy | | | | `Renouncing` renouncing
| +|Remove member | | :heavy_check_mark: | | `LookupasStaticLookupSource` who
`bool` has_replacement
| +|Clean defunct voters | | :heavy_check_mark: | | `u32` num_voters
`u32` num_defunct
| + +## TechnicalMembership + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Add member | | :heavy_check_mark: | | `AccountId` who
| +|Remove member | | :heavy_check_mark: | | `AccountId` who
| +|Swap member | | :heavy_check_mark: | | `AccountId` remove
`AccountId` add
| +|Reset members | | :heavy_check_mark: | | `VecAccountId` members
| +|Change key | | :heavy_check_mark: | | `AccountId` new_
| +|Set prime | | :heavy_check_mark: | | `AccountId` who
| +|Clear prime | | :heavy_check_mark: | | | + +## Treasury + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Propose spend | | :heavy_check_mark: | | `CompactBalance` amount
`LookupasStaticLookupSource` beneficiary
| +|Reject proposal | | :heavy_check_mark: | | `Compactu32` proposal_id
| +|Approve proposal | | :heavy_check_mark: | | `Compactu32` proposal_id
| + +## Claims + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Claim | | :heavy_check_mark: | | `AccountId` dest
`EcdsaSignature` ethereum_signature
| +|Mint claim | | | | `EthereumAddress` who
`Balance` amount
`OptionTupleBalanceOfTBalanceOfTBlockNumber` vesting_schedule
`OptionStatementKind` statement
| +|Claim attest | | :heavy_check_mark: | | `AccountId` dest
`EcdsaSignature` ethereum_signature
`Bytes` statement
| +|Attest | | :heavy_check_mark: | | `Bytes` statement
| +|Move claim | | :heavy_check_mark: | | `EthereumAddress` old
`EthereumAddress` new_
`OptionAccountId` maybe_preclaim
| + +## Utility + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Batch | :heavy_check_mark: | :heavy_check_mark: | | `VecCall` calls
| +|As derivative | | | | `u16` index
`Call` call
| +|Batch all | :heavy_check_mark: | :heavy_check_mark: | | `VecCall` calls
| +|Dispatch as | | | | `BoxPalletsOrigin` as_origin
`Call` call
| + +## Identity + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Add registrar | | :heavy_check_mark: | | `AccountId` account
| +|Set identity | | | | `BoxIdentityInfoMaxAdditionalFields` info
| +|Set subs | | | | `VecTupleAccountIdData` subs
| +|Clear identity | | :heavy_check_mark: | | | +|Request judgement | | :heavy_check_mark: | | `Compactu32` reg_index
`Compactu128` max_fee
| +|Cancel request | | :heavy_check_mark: | | `RegistrarIndex` reg_index
| +|Set fee | | :heavy_check_mark: | | `Compactu32` index
`Compactu128` fee
| +|Set account id | | :heavy_check_mark: | | `Compactu32` index
`AccountId` new_
| +|Set fields | | | | `Compactu32` index
`IdentityFields` fields
| +|Provide judgement | | | | `Compactu32` reg_index
`LookupasStaticLookupSource` target
`JudgementBalanceOfT` judgement
| +|Kill identity | | :heavy_check_mark: | | `LookupasStaticLookupSource` target
| +|Add sub | | | | `LookupasStaticLookupSource` sub
`Data` data
| +|Rename sub | | | | `LookupasStaticLookupSource` sub
`Data` data
| +|Remove sub | | :heavy_check_mark: | | `LookupasStaticLookupSource` sub
| +|Quit sub | | :heavy_check_mark: | | | + +## Society + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Bid | | :heavy_check_mark: | | `Balance` amount
| +|Unbid | | :heavy_check_mark: | | `u32` pos
| +|Vouch | | :heavy_check_mark: | | `AccountId` who
`Balance` amount
`Balance` tip
| +|Unvouch | | :heavy_check_mark: | | `u32` pos
| +|Vote | | :heavy_check_mark: | | `LookupasStaticLookupSource` candidate
`bool` approve
| +|Defender vote | | :heavy_check_mark: | | `bool` approve
| +|Payout | | :heavy_check_mark: | | | +|Found | | :heavy_check_mark: | | `AccountId` founder
`u32` max_members
`Bytes` rules
| +|Unfound | | :heavy_check_mark: | | | +|Judge suspended member | | :heavy_check_mark: | | `AccountId` who
`bool` forgive
| +|Judge suspended candidate | | | | `AccountId` who
`Judgement` judgement
| +|Set max members | | :heavy_check_mark: | | `u32` max
| + +## Recovery + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|As recovered | | | | `AccountId` account
`Call` call
| +|Set recovered | | :heavy_check_mark: | | `AccountId` lost
`AccountId` rescuer
| +|Create recovery | | | | `VecAccountId` friends
`u16` threshold
`BlockNumber` delay_period
| +|Initiate recovery | | :heavy_check_mark: | | `AccountId` account
| +|Vouch recovery | | :heavy_check_mark: | | `AccountId` lost
`AccountId` rescuer
| +|Claim recovery | | :heavy_check_mark: | | `AccountId` account
| +|Close recovery | | :heavy_check_mark: | | `AccountId` rescuer
| +|Remove recovery | | :heavy_check_mark: | | | +|Cancel recovered | | :heavy_check_mark: | | `AccountId` account
| + +## Vesting + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Vest | | :heavy_check_mark: | | | +|Vest other | | :heavy_check_mark: | | `LookupasStaticLookupSource` target
| +|Vested transfer | | | | `LookupasStaticLookupSource` target
`VestingInfoBalanceOfTBlockNumber` schedule
| +|Force vested transfer | | | | `LookupasStaticLookupSource` source
`LookupasStaticLookupSource` target
`VestingInfoBalanceOfTBlockNumber` schedule
| +|Merge schedules | | :heavy_check_mark: | | `u32` schedule1_index
`u32` schedule2_index
| + +## Scheduler + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Schedule | | | | `BlockNumber` when
`OptionschedulePeriodBlockNumber` maybe_periodic
`schedulePriority` priority
`BoxCallOrHashOfT` call
| +|Cancel | | | | `BlockNumber` when
`u32` index
| +|Schedule named | | | | `Vecu8` id
`BlockNumber` when
`OptionschedulePeriodBlockNumber` maybe_periodic
`schedulePriority` priority
`BoxCallOrHashOfT` call
| +|Cancel named | | | | `Vecu8` id
| +|Schedule after | | | | `BlockNumber` after
`OptionschedulePeriodBlockNumber` maybe_periodic
`schedulePriority` priority
`BoxCallOrHashOfT` call
| +|Schedule named after | | | | `Vecu8` id
`BlockNumber` after
`OptionschedulePeriodBlockNumber` maybe_periodic
`schedulePriority` priority
`BoxCallOrHashOfT` call
| + +## Proxy + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Proxy | | :heavy_check_mark: | :heavy_check_mark: | `AccountId` real
`OptionProxyType` force_proxy_type
`Call` call
| +|Add proxy | | :heavy_check_mark: | | `AccountId` delegate
`ProxyType` proxy_type
`BlockNumber` delay
| +|Remove proxy | | :heavy_check_mark: | | `AccountId` delegate
`ProxyType` proxy_type
`BlockNumber` delay
| +|Remove proxies | | :heavy_check_mark: | | | +|Anonymous | | :heavy_check_mark: | | `ProxyType` proxy_type
`BlockNumber` delay
`u16` index
| +|Kill anonymous | | :heavy_check_mark: | | `AccountId` spawner
`ProxyType` proxy_type
`u16` index
`Compactu32` height
`Compactu32` ext_index
| +|Announce | | | | `AccountId` real
`CallHashOf` call_hash
| +|Remove announcement | | | | `AccountId` real
`CallHashOf` call_hash
| +|Reject announcement | | | | `AccountId` delegate
`CallHashOf` call_hash
| +|Proxy announced | | :heavy_check_mark: | | `AccountId` delegate
`AccountId` real
`OptionProxyType` force_proxy_type
`Call` call
| + +## Multisig + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|As multi threshold 1 | | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId` other_signatories
`Call` call
| +|As multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`OpaqueCall` call
`bool` store_call
`Weight` max_weight
| +|Approve as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`H256` call_hash
`Weight` max_weight
| +|Cancel as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`Timepoint` timepoint
`H256` call_hash
| + +## Preimage + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Note preimage | | :heavy_check_mark: | | `Vecu8` bytes
| +|Unnote preimage | | :heavy_check_mark: | | `Hash` hash
| +|Request preimage | | :heavy_check_mark: | | `Hash` hash
| +|Unrequest preimage | | :heavy_check_mark: | | `Hash` hash
| + +## Bounties + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Propose bounty | | :heavy_check_mark: | | `CompactBalance` amount
`Bytes` description
| +|Approve bounty | | :heavy_check_mark: | | `Compactu32` bounty_id
| +|Propose curator | | :heavy_check_mark: | | `Compactu32` bounty_id
`LookupasStaticLookupSource` curator
`CompactBalance` fee
| +|Unassign curator | | :heavy_check_mark: | | `Compactu32` bounty_id
| +|Accept curator | | :heavy_check_mark: | | `Compactu32` bounty_id
| +|Award bounty | | :heavy_check_mark: | | `Compactu32` bounty_id
`LookupasStaticLookupSource` beneficiary
| +|Claim bounty | | :heavy_check_mark: | | `Compactu32` bounty_id
| +|Close bounty | | :heavy_check_mark: | | `Compactu32` bounty_id
| +|Extend bounty expiry | | :heavy_check_mark: | | `Compactu32` bounty_id
`Bytes` remark
| + +## Tips + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Report awesome | | :heavy_check_mark: | | `Bytes` reason
`AccountId` who
| +|Retract tip | | :heavy_check_mark: | | `Hash` hash
| +|Tip new | | :heavy_check_mark: | | `Bytes` reason
`AccountId` who
`Compactu128` tip_value
| +|Tip | | :heavy_check_mark: | | `Hash` hash
`Compactu128` tip_value
| +|Close tip | | :heavy_check_mark: | | `Hash` hash
| +|Slash tip | | :heavy_check_mark: | | `Hash` hash
| + +## ElectionProviderMultiPhase + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Submit unsigned | | | | `BoxRawSolutionSolutionOfT` raw_solution
`SolutionOrSnapshotSize` witness
| +|Set minimum untrusted score | | | | `OptionElectionScore` maybe_next_score
| +|Set emergency election result | | | | `SupportsAccountId` supports
| +|Submit | | | | `BoxRawSolutionSolutionOfT` raw_solution
`u32` num_signed_submissions
| +|Governance fallback | | :heavy_check_mark: | | `Optionu32` maybe_max_voters
`Optionu32` maybe_max_targets
| + +## Gilt + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Place bid | | :heavy_check_mark: | | `CompactBalance` amount
`u32` duration
| +|Retract bid | | :heavy_check_mark: | | `CompactBalance` amount
`u32` duration
| +|Set target | | | | `Compactu64` target
| +|Thaw | | | | `Compactu32` index
| + +## BagsList + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Rebag | | :heavy_check_mark: | | `AccountId` dislocated
| +|Put in front of | | :heavy_check_mark: | | `AccountId` lighter
| + +## Configuration + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Set validation upgrade cooldown | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set validation upgrade delay | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set code retention period | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set max code size | | :heavy_check_mark: | | `u32` new_
| +|Set max pov size | | :heavy_check_mark: | | `u32` new_
| +|Set max head data size | | :heavy_check_mark: | | `u32` new_
| +|Set parathread cores | | :heavy_check_mark: | | `u32` new_
| +|Set parathread retries | | :heavy_check_mark: | | `u32` new_
| +|Set group rotation frequency | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set chain availability period | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set thread availability period | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set scheduling lookahead | | :heavy_check_mark: | | `u32` new_
| +|Set max validators per core | | :heavy_check_mark: | | `Optionu32` new_
| +|Set max validators | | :heavy_check_mark: | | `Optionu32` new_
| +|Set dispute period | | :heavy_check_mark: | | `SessionIndex` new_
| +|Set dispute post conclusion acceptance period | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set dispute max spam slots | | :heavy_check_mark: | | `u32` new_
| +|Set dispute conclusion by time out period | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set no show slots | | :heavy_check_mark: | | `u32` new_
| +|Set n delay tranches | | :heavy_check_mark: | | `u32` new_
| +|Set zeroth delay tranche width | | :heavy_check_mark: | | `u32` new_
| +|Set needed approvals | | :heavy_check_mark: | | `u32` new_
| +|Set relay vrf modulo samples | | :heavy_check_mark: | | `u32` new_
| +|Set max upward queue count | | :heavy_check_mark: | | `u32` new_
| +|Set max upward queue size | | :heavy_check_mark: | | `u32` new_
| +|Set max downward message size | | :heavy_check_mark: | | `u32` new_
| +|Set ump service total weight | | :heavy_check_mark: | | `Weight` new_
| +|Set max upward message size | | :heavy_check_mark: | | `u32` new_
| +|Set max upward message num per candidate | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp open request ttl | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp sender deposit | | :heavy_check_mark: | | `Balance` new_
| +|Set hrmp recipient deposit | | :heavy_check_mark: | | `Balance` new_
| +|Set hrmp channel max capacity | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp channel max total size | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp max parachain inbound channels | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp max parathread inbound channels | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp channel max message size | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp max parachain outbound channels | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp max parathread outbound channels | | :heavy_check_mark: | | `u32` new_
| +|Set hrmp max message num per candidate | | :heavy_check_mark: | | `u32` new_
| +|Set ump max individual weight | | :heavy_check_mark: | | `Weight` new_
| +|Set pvf checking enabled | | :heavy_check_mark: | | `bool` new_
| +|Set pvf voting ttl | | :heavy_check_mark: | | `SessionIndex` new_
| +|Set minimum validation upgrade delay | | :heavy_check_mark: | | `BlockNumber` new_
| +|Set bypass consistency check | | :heavy_check_mark: | | `bool` new_
| + +## ParasShared + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| + +## ParaInclusion + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| + +## ParaInherent + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Enter | | | | `ParachainsInherentDataHeader` data
| + +## Paras + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Force set current code | | | | `ParaId` para
`ValidationCode` new_code
| +|Force set current head | | | | `ParaId` para
`HeadData` new_head
| +|Force schedule code upgrade | | | | `ParaId` para
`ValidationCode` new_code
`BlockNumber` relay_parent_number
| +|Force note new head | | | | `ParaId` para
`HeadData` new_head
| +|Force queue action | | | | `ParaId` para
| +|Add trusted validation code | | | | `ValidationCode` validation_code
| +|Poke unused validation code | | | | `ValidationCodeHash` validation_code_hash
| +|Include pvf check statement | | | | `PvfCheckStatement` stmt
`ValidatorSignature` signature
| + +## Initializer + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Force approve | | :heavy_check_mark: | | `BlockNumber` up_to
| + +## Dmp + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| + +## Ump + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Service overweight | | | | `OverweightIndex` index
`Weight` weight_limit
| + +## Hrmp + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Hrmp init open channel | | | | `ParaId` recipient
`u32` proposed_max_capacity
`u32` proposed_max_message_size
| +|Hrmp accept open channel | | | | `ParaId` sender
| +|Hrmp close channel | | | | `HrmpChannelId` channel_id
| +|Force clean hrmp | | | | `ParaId` para
`u32` inbound
`u32` outbound
| +|Force process hrmp open | | :heavy_check_mark: | | `u32` channels
| +|Force process hrmp close | | :heavy_check_mark: | | `u32` channels
| +|Hrmp cancel open request | | | | `HrmpChannelId` channel_id
`u32` open_requests
| + +## ParasDisputes + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Force unfreeze | | :heavy_check_mark: | | | + +## Registrar + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Register | | | | `ParaId` id
`HeadData` genesis_head
`ValidationCode` validation_code
| +|Force register | | | | `AccountId` who
`Balance` deposit
`ParaId` id
`HeadData` genesis_head
`ValidationCode` validation_code
| +|Deregister | | | | `ParaId` id
| +|Swap | | | | `ParaId` id
`ParaId` other
| +|Force remove lock | | | | `ParaId` para
| +|Reserve | | :heavy_check_mark: | | | + +## Slots + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Force lease | | | | `ParaId` para
`AccountId` leaser
`Balance` amount
`LeasePeriodOfT` period_begin
`LeasePeriodOfT` period_count
| +|Clear all leases | | | | `ParaId` para
| +|Trigger onboard | | | | `ParaId` para
| + +## Auctions + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|New auction | | :heavy_check_mark: | | `Compactu32` duration
`Compactu32` lease_period_index
| +|Bid | | :heavy_check_mark: | | `Compactu32` para
`Compactu32` auction_index
`Compactu32` first_slot
`Compactu32` last_slot
`CompactBalance` amount
| +|Cancel auction | | :heavy_check_mark: | | | + +## Crowdloan + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Create | | | | `Compactu32` index
`Compactu128` cap
`Compactu32` first_period
`Compactu32` last_period
`Compactu32` end
`OptionMultiSigner` verifier
| +|Contribute | | | | `Compactu32` index
`Compactu128` amount
`OptionMultiSignature` signature
| +|Withdraw | | | | `AccountId` who
`Compactu32` index
| +|Refund | | | | `Compactu32` index
| +|Dissolve | | | | `Compactu32` index
| +|Edit | | | | `Compactu32` index
`Compactu128` cap
`Compactu32` first_period
`Compactu32` last_period
`Compactu32` end
`OptionMultiSigner` verifier
| +|Add memo | | | | `ParaId` index
`Vecu8` memo
| +|Poke | | | | `ParaId` index
| +|Contribute all | | | | `Compactu32` index
`OptionMultiSignature` signature
| + +## XcmPallet + +| Name | Light | XL | Nesting | Arguments | +| :---------- |:------------:|:--------:|:--------:|:--------| +|Send | | | | `BoxVersionedMultiLocation` dest
`BoxVersionedXcmTuple` message
| +|Teleport assets | | | | `BoxVersionedMultiLocation` dest
`BoxVersionedMultiLocation` beneficiary
`BoxVersionedMultiAssets` assets
`u32` fee_asset_item
| +|Reserve transfer assets | | | | `BoxVersionedMultiLocation` dest
`BoxVersionedMultiLocation` beneficiary
`BoxVersionedMultiAssets` assets
`u32` fee_asset_item
| +|Execute | | | | `BoxVersionedXcmTasSysConfigCall` message
`Weight` max_weight
| +|Force xcm version | | | | `BoxMultiLocation` location
`XcmVersion` xcm_version
| +|Force default xcm version | | | | `OptionXcmVersion` maybe_xcm_version
| +|Force subscribe version notify | | | | `BoxVersionedMultiLocation` location
| +|Force unsubscribe version notify | | | | `BoxVersionedMultiLocation` location
| +|Limited reserve transfer assets | | | | `BoxVersionedMultiLocation` dest
`BoxVersionedMultiLocation` beneficiary
`BoxVersionedMultiAssets` assets
`u32` fee_asset_item
`WeightLimit` weight_limit
| +|Limited teleport assets | | | | `BoxVersionedMultiLocation` dest
`BoxVersionedMultiLocation` beneficiary
`BoxVersionedMultiAssets` assets
`u32` fee_asset_item
`WeightLimit` weight_limit
| + diff --git a/docs/supported_latest.md b/docs/supported_latest.md index fc570686..62bc5d6a 100644 --- a/docs/supported_latest.md +++ b/docs/supported_latest.md @@ -1,4 +1,4 @@ -# Kusama 9.9160.x +# Kusama 10.9170.x ## System @@ -84,6 +84,7 @@ |Kick | | :heavy_check_mark: | | `VecLookupasStaticLookupSource` who
| |Set staking configs | | | | `Balance` min_nominator_bond
`Balance` min_validator_bond
`Optionu32` max_nominator_count
`Optionu32` max_validator_count
`OptionPercent` chill_threshold
`Perbill` min_commission
| |Chill other | | :heavy_check_mark: | | `AccountId` controller
| +|Force apply min commission | | :heavy_check_mark: | | `AccountId` validator_stash
| ## Session @@ -299,7 +300,7 @@ | Name | Light | XL | Nesting | Arguments | | :---------- |:------------:|:--------:|:--------:|:--------| -|As multi threshold 1 | | | | `VecAccountId` other_signatories
`Call` call
| +|As multi threshold 1 | | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId` other_signatories
`Call` call
| |As multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`OpaqueCall` call
`bool` store_call
`Weight` max_weight
| |Approve as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`OptionTimepoint` maybe_timepoint
`H256` call_hash
`Weight` max_weight
| |Cancel as multi | | :heavy_check_mark: | :heavy_check_mark: | `u16` threshold
`VecAccountId` other_signatories
`Timepoint` timepoint
`H256` call_hash
| @@ -346,6 +347,7 @@ |Set minimum untrusted score | | | | `OptionElectionScore` maybe_next_score
| |Set emergency election result | | | | `SupportsAccountId` supports
| |Submit | | | | `BoxRawSolutionSolutionOfT` raw_solution
`u32` num_signed_submissions
| +|Governance fallback | | :heavy_check_mark: | | `Optionu32` maybe_max_voters
`Optionu32` maybe_max_targets
| ## Gilt @@ -466,10 +468,10 @@ |Hrmp init open channel | | | | `ParaId` recipient
`u32` proposed_max_capacity
`u32` proposed_max_message_size
| |Hrmp accept open channel | | | | `ParaId` sender
| |Hrmp close channel | | | | `HrmpChannelId` channel_id
| -|Force clean hrmp | | | | `ParaId` para
| -|Force process hrmp open | | :heavy_check_mark: | | | -|Force process hrmp close | | :heavy_check_mark: | | | -|Hrmp cancel open request | | | | `HrmpChannelId` channel_id
| +|Force clean hrmp | | | | `ParaId` para
`u32` inbound
`u32` outbound
| +|Force process hrmp open | | :heavy_check_mark: | | `u32` channels
| +|Force process hrmp close | | :heavy_check_mark: | | `u32` channels
| +|Hrmp cancel open request | | | | `HrmpChannelId` channel_id
`u32` open_requests
| ## ParasDisputes From 34cc288baf3ef8b029fd669df48be947dcef19f9 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:02:06 +0100 Subject: [PATCH 05/14] update version --- app/Makefile.version | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Makefile.version b/app/Makefile.version index 7d4d3aa4..3e969829 100644 --- a/app/Makefile.version +++ b/app/Makefile.version @@ -1,6 +1,6 @@ # This is the `transaction_version` field of `Runtime` -APPVERSION_M=9 +APPVERSION_M=10 # This is the `spec_version` field of `Runtime` -APPVERSION_N=9160 +APPVERSION_N=9170 # This is the patch version of this release -APPVERSION_P=1 +APPVERSION_P=0 From 7b81303cb5dc4fcd7c5f764233452b7887aae202 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:09:24 +0100 Subject: [PATCH 06/14] updates testcases --- tests/testcases_current.json | 19085 +++++++++++++++--------------- tests/testcases_previous.json | 20245 +++++++++++++++++--------------- 2 files changed, 20483 insertions(+), 18847 deletions(-) diff --git a/tests/testcases_current.json b/tests/testcases_current.json index 18bebc4c..59625a4e 100644 --- a/tests/testcases_current.json +++ b/tests/testcases_current.json @@ -2,39 +2,39 @@ { "index": 1, "name": "System_Fill_block", - "blob": "0000ce9a6af7d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00009154b6a9d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%" + "1 | Ratio : 284.7298705%", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%", + "1 | Ratio : 284.7298705%", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 2, "name": "System_Fill_block", - "blob": "0000ce9a6af7d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00009154b6a9d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Ratio : 284.7298705%", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%", + "1 | Ratio : 284.7298705%", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -44,37 +44,41 @@ { "index": 3, "name": "System_Fill_block", - "blob": "0000ce9a6af7d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000debe448bd5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%" + "1 | Ratio : 233.6538334%", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 415.0958798%", + "1 | Ratio : 233.6538334%", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 4, "name": "System_Fill_block", - "blob": "0000eee4f71ad503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000debe448bd50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 45.2453614%", - "2 | Tip : KSM 5.552342355555" + "1 | Ratio : 233.6538334%", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 45.2453614%", + "1 | Ratio : 233.6538334%", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -84,18 +88,18 @@ { "index": 5, "name": "System_Fill_block", - "blob": "0000eee4f71ad503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000debe448bd50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 45.2453614%", - "2 | Tip : KSM 0.000055555555" + "1 | Ratio : 233.6538334%", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 45.2453614%", + "1 | Ratio : 233.6538334%", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -105,24 +109,26 @@ { "index": 6, "name": "System_Remark", - "blob": "0001100c293435d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000110200b200bd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", - "2 | Tip : KSM 5.552342355555" + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -132,24 +138,24 @@ { "index": 7, "name": "System_Remark", - "blob": "0001100c293435d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000110200b200bd50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", - "2 | Tip : KSM 0.000000000987" + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -159,24 +165,24 @@ { "index": 8, "name": "System_Remark", - "blob": "0001100c293435d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100e2a0c49d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", - "2 | Tip : KSM 5.552342355555" + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -186,24 +192,24 @@ { "index": 9, "name": "System_Remark", - "blob": "0001100c293435d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100d0c1323d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", - "2 | Tip : KSM 0.00123456789" + "1 | Remark [1/4] : 13", + "1 | Remark [2/4] : 12", + "1 | Remark [3/4] : 19", + "1 | Remark [4/4] : 35", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", + "1 | Remark [1/4] : 13", + "1 | Remark [2/4] : 12", + "1 | Remark [3/4] : 19", + "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -213,66 +219,64 @@ { "index": 10, "name": "System_Remark", - "blob": "0001100d0c1323d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100e2a0c49d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", - "2 | Tip : KSM 0.00123456789" + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 11, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00020100000000000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283" + "1 | Pages : 1", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 1", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 12, "name": "System_Set_heap_pages", - "blob": "00020000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00020000000000000000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", "1 | Pages : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | System : Set heap pages", "1 | Pages : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -282,18 +286,18 @@ { "index": 13, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00022309000000000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Tip : KSM 0.00123456789" + "1 | Pages : 2339", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 2339", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -303,39 +307,37 @@ { "index": 14, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00022309000000000000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Tip : KSM 0.00123456789" + "1 | Pages : 2339" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 2339", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 15, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00022309000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 2339", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 2339", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -347,26 +349,24 @@ { "index": 16, "name": "System_Set_code", - "blob": "0003100c293435d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100e2a0c49d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -376,14 +376,14 @@ { "index": 17, "name": "System_Set_code", - "blob": "0003100e2a0c49d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100e2a0c49d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", "1 | Code [1/4] : 14", "1 | Code [2/4] : 42", "1 | Code [3/4] : 12", "1 | Code [4/4] : 73", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | System : Set code", @@ -392,8 +392,8 @@ "1 | Code [3/4] : 12", "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -403,38 +403,14 @@ { "index": 18, "name": "System_Set_code", - "blob": "000310200b200bd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | System : Set code", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 19, - "name": "System_Set_code", - "blob": "0003100e2a0c49d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100e2a0c49d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", "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 : KSM 5.552342355555" ], "output_expert": [ "0 | System : Set code", @@ -443,25 +419,53 @@ "1 | Code [3/4] : 12", "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 20, + "index": 19, "name": "System_Set_code", - "blob": "0003100e2a0c49d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100c293435d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 14", - "1 | Code [2/4] : 42", - "1 | Code [3/4] : 12", - "1 | Code [4/4] : 73", - "2 | Tip : KSM 0.000000000987" - ], + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | System : Set code", + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 20, + "name": "System_Set_code", + "blob": "0003100e2a0c49d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | System : Set code", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.000000000987" + ], "output_expert": [ "0 | System : Set code", "1 | Code [1/4] : 14", @@ -469,7 +473,7 @@ "1 | Code [3/4] : 12", "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -480,14 +484,15 @@ { "index": 21, "name": "System_Set_code_without_checks", - "blob": "0004100c293435d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100c293435d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 0.00123456789" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Set code without checks", @@ -496,8 +501,9 @@ "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -507,24 +513,24 @@ { "index": 22, "name": "System_Set_code_without_checks", - "blob": "0004100e2a0c49d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100d0c1323d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 5.552342355555" + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", + "2 | Tip : KSM 0.00123456789" ], "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", + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -534,74 +540,78 @@ { "index": 23, "name": "System_Set_code_without_checks", - "blob": "0004100d0c1323d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100e2a0c49d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.000000000987" ], "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", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 24, "name": "System_Set_code_without_checks", - "blob": "0004100d0c1323d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000410200b200bd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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" + "1 | Code [1/4] : 32", + "1 | Code [2/4] : 11", + "1 | Code [3/4] : 32", + "1 | Code [4/4] : 11", + "2 | Tip : KSM 0.000055555555" ], "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", + "1 | Code [1/4] : 32", + "1 | Code [2/4] : 11", + "1 | Code [3/4] : 32", + "1 | Code [4/4] : 11", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 25, "name": "System_Set_code_without_checks", - "blob": "0004100d0c1323d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100e2a0c49d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 0.000000000987" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.000055555555" ], "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", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -611,21 +621,21 @@ { "index": 26, "name": "System_Remark_with_event", - "blob": "000810200b200bd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100e2a0c49d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11", + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11", + "1 | Remark [1/4] : 14", + "1 | Remark [2/4] : 42", + "1 | Remark [3/4] : 12", + "1 | Remark [4/4] : 73", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Tip : KSM 0.00123456789", @@ -638,14 +648,14 @@ { "index": 27, "name": "System_Remark_with_event", - "blob": "0008100d0c1323d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100d0c1323d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", "1 | Remark [1/4] : 13", "1 | Remark [2/4] : 12", "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark with event", @@ -654,8 +664,8 @@ "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -665,24 +675,26 @@ { "index": 28, "name": "System_Remark_with_event", - "blob": "0008100d0c1323d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100c293435d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", - "2 | Tip : KSM 5.552342355555" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -692,24 +704,24 @@ { "index": 29, "name": "System_Remark_with_event", - "blob": "0008100d0c1323d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100c293435d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", - "2 | Tip : KSM 0.00123456789" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -719,43 +731,45 @@ { "index": 30, "name": "System_Remark_with_event", - "blob": "0008100c293435d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000810200b200bd50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53" + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 12", - "1 | Remark [2/4] : 41", - "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 31, "name": "Timestamp_Set", - "blob": "02000f19a63a17f1e1ced503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02006a3c2647d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 58232270795482649", - "2 | Tip : KSM 0.000000000987" + "1 | Now : 298422042", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 58232270795482649", + "1 | Now : 298422042", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -765,20 +779,18 @@ { "index": 32, "name": "Timestamp_Set", - "blob": "02009982d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02006a3c2647d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 8358", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Now : 298422042", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 8358", + "1 | Now : 298422042", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -788,43 +800,37 @@ { "index": 33, "name": "Timestamp_Set", - "blob": "0200a123d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02006a3c2647d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 2280", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Now : 298422042" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 2280", + "1 | Now : 298422042", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 34, "name": "Timestamp_Set", - "blob": "02009982d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02006a3c2647d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 8358", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Now : 298422042", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 8358", + "1 | Now : 298422042", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -834,54 +840,56 @@ { "index": 35, "name": "Timestamp_Set", - "blob": "02000f19a63a17f1e1ced5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02000fd3f106f0882873d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 58232270795482649" + "1 | Now : 32414190929375699", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 58232270795482649", + "1 | Now : 32414190929375699", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 36, "name": "Indices_Claim", - "blob": "03008e8fe91ad503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030083021fffd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 451514254", - "2 | Tip : KSM 0.00123456789" + "1 | Index : 4280222339" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 37, "name": "Indices_Claim", - "blob": "03008e8fe91ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030083021fffd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 451514254" + "1 | Index : 4280222339" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Era Phase : 61", @@ -893,18 +901,18 @@ { "index": 38, "name": "Indices_Claim", - "blob": "03008e8fe91ad503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030083021fffd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 451514254", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -914,20 +922,18 @@ { "index": 39, "name": "Indices_Claim", - "blob": "03008e8fe91ad5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030083021fffd5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 451514254", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -937,18 +943,18 @@ { "index": 40, "name": "Indices_Claim", - "blob": "03008e8fe91ad503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030083021fffd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 451514254", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -958,22 +964,24 @@ { "index": 41, "name": "Indices_Transfer", - "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0301f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86483021fffd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Tip : KSM 0.00123456789" + "1 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | New [2/2] : 6JtYYhKnN", + "2 | Index : 4280222339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | New [2/2] : 6JtYYhKnN", + "2 | Index : 4280222339", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -983,45 +991,49 @@ { "index": 42, "name": "Indices_Transfer", - "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030164d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d3183021fffd503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254" + "1 | New [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | New [2/2] : TZdAHD41C", + "2 | Index : 4280222339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | New [2/2] : TZdAHD41C", + "2 | Index : 4280222339", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 43, "name": "Indices_Transfer", - "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0301e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d67483021fffd50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Tip : KSM 0.000000000987" + "1 | New [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | New [2/2] : MCzmwrXrR", + "2 | Index : 4280222339", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | New [2/2] : MCzmwrXrR", + "2 | Index : 4280222339", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1031,21 +1043,21 @@ { "index": 44, "name": "Indices_Transfer", - "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0301e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855383021fffd503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | New [2/2] : a8GkEuTYa", + "2 | Index : 4280222339", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | New [2/2] : a8GkEuTYa", + "2 | Index : 4280222339", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 50283", "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -1056,22 +1068,22 @@ { "index": 45, "name": "Indices_Transfer", - "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff09301383021fffd503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Tip : KSM 0.00123456789" + "1 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | New [2/2] : r9TQhU9HW", + "2 | Index : 4280222339", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | New [2/2] : r9TQhU9HW", + "2 | Index : 4280222339", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 0", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1081,36 +1093,40 @@ { "index": 46, "name": "Indices_Free", - "blob": "03028e8fe91ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030283021fffd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 451514254" + "1 | Index : 4280222339", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 47, "name": "Indices_Free", - "blob": "03028e8fe91ad5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030283021fffd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -1121,20 +1137,18 @@ { "index": 48, "name": "Indices_Free", - "blob": "03028e8fe91ad503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030283021fffd5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 451514254", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1144,20 +1158,18 @@ { "index": 49, "name": "Indices_Free", - "blob": "03028e8fe91ad5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030283021fffd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 451514254", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1167,18 +1179,20 @@ { "index": 50, "name": "Indices_Free", - "blob": "03028e8fe91ad503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030283021fffd5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 451514254", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 4280222339", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1188,26 +1202,24 @@ { "index": 51, "name": "Indices_Force_transfer", - "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0303dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe073683021fff00d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Freeze : True", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | New [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | New [2/2] : W2YqpsEiW", + "2 | Index : 4280222339", + "3 | Freeze : False", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Freeze : True", + "1 | New [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | New [2/2] : W2YqpsEiW", + "2 | Index : 4280222339", + "3 | Freeze : False", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1217,24 +1229,24 @@ { "index": 52, "name": "Indices_Force_transfer", - "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0303e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36383021fff01d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Index : 4280222339", "3 | Freeze : True", - "4 | Tip : KSM 0.000055555555" + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Index : 4280222339", "3 | Freeze : True", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 100", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1244,49 +1256,53 @@ { "index": 53, "name": "Indices_Force_transfer", - "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a00d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0303e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d67483021fff00d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Freeze : False" + "1 | New [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | New [2/2] : MCzmwrXrR", + "2 | Index : 4280222339", + "3 | Freeze : False", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | New [2/2] : MCzmwrXrR", + "2 | Index : 4280222339", "3 | Freeze : False", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 54, "name": "Indices_Force_transfer", - "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030364d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d3183021fff00d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Freeze : True", - "4 | Tip : KSM 0.000000000987" + "1 | New [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | New [2/2] : TZdAHD41C", + "2 | Index : 4280222339", + "3 | Freeze : False", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", - "3 | Freeze : True", + "1 | New [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | New [2/2] : TZdAHD41C", + "2 | Index : 4280222339", + "3 | Freeze : False", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 1", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1296,24 +1312,24 @@ { "index": 55, "name": "Indices_Force_transfer", - "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0303e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36383021fff00d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Index : 4280222339", "3 | Freeze : False", - "4 | Tip : KSM 0.000000000987" + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Index : 451514254", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Index : 4280222339", "3 | Freeze : False", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 2339", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1323,18 +1339,18 @@ { "index": 56, "name": "Indices_Freeze", - "blob": "03048e8fe91ad5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030483021fffd5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 451514254", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1344,39 +1360,37 @@ { "index": 57, "name": "Indices_Freeze", - "blob": "03048e8fe91ad5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030483021fffd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 451514254", - "2 | Tip : KSM 0.00123456789" + "1 | Index : 4280222339" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 58, "name": "Indices_Freeze", - "blob": "03048e8fe91ad503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030483021fffd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 451514254", - "2 | Tip : KSM 0.00123456789" + "1 | Index : 4280222339", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1386,18 +1400,20 @@ { "index": 59, "name": "Indices_Freeze", - "blob": "03048e8fe91ad503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030483021fffd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 451514254", - "2 | Tip : KSM 0.000055555555" + "1 | Index : 4280222339", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1407,95 +1423,91 @@ { "index": 60, "name": "Indices_Freeze", - "blob": "03048e8fe91ad503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "030483021fffd503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 451514254" + "1 | Index : 4280222339", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 451514254", + "1 | Index : 4280222339", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 61, "name": "Balances_Transfer", - "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d146d0fd5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", - "3 | Tip : KSM 0.000055555555" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000000000987", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 62, "name": "Balances_Transfer", - "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1433158139ae28a3dfaac5fe1560a5e9e05cd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.0", - "3 | Tip : KSM 0.000055555555" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.0", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 63, "name": "Balances_Transfer", - "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1505,70 +1517,74 @@ { "index": 64, "name": "Balances_Transfer", - "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, { "index": 65, "name": "Balances_Transfer", - "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000055555555", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 66, "name": "Balances_Set_balance", - "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d20296498ed73e0dd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0d6d0fd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.00123456789", - "3 | New reserved : KSM 0.000055555555", - "4 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.000055555555", + "3 | New reserved : KSM 0.000000000987", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.00123456789", - "3 | New reserved : KSM 0.000055555555", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.000055555555", + "3 | New reserved : KSM 0.000000000987", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1578,53 +1594,55 @@ { "index": 67, "name": "Balances_Set_balance", - "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964933158139ae28a3dfaac5fe1560a5e9e05cd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1433158139ae28a3dfaac5fe1560a5e9e05c0b63ce64c10c05d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.00123456789", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.00123456789", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 5.552342355555", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 68, "name": "Balances_Set_balance", - "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05c0b63ce64c10c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1433158139ae28a3dfaac5fe1560a5e9e05c6d0fd503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | New free [1/2] : KSM 123456789012345678901234567.890123", "2 | New free [2/2] : 456789", - "3 | New reserved : KSM 5.552342355555", - "4 | Tip : KSM 5.552342355555" + "3 | New reserved : KSM 0.000000000987", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | New free [1/2] : KSM 123456789012345678901234567.890123", "2 | New free [2/2] : 456789", - "3 | New reserved : KSM 5.552342355555", + "3 | New reserved : KSM 0.000000000987", "4 | Chain : Kusama", "5 | Nonce : 100", - "6 | Tip : KSM 5.552342355555", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1634,24 +1652,24 @@ { "index": 69, "name": "Balances_Set_balance", - "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0f6d0fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0d03d2029649d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.000000000987", - "3 | New reserved : KSM 0.000000000987", - "4 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.000055555555", + "3 | New reserved : KSM 0.00123456789", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free : KSM 0.000000000987", - "3 | New reserved : KSM 0.000000000987", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.000055555555", + "3 | New reserved : KSM 0.00123456789", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 1", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1661,26 +1679,26 @@ { "index": 70, "name": "Balances_Set_balance", - "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05c03d2029649d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14000b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free [1/2] : KSM 123456789012345678901234567.890123", - "2 | New free [2/2] : 456789", - "3 | New reserved : KSM 0.00123456789", - "4 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.0", + "3 | New reserved : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | New free [1/2] : KSM 123456789012345678901234567.890123", - "2 | New free [2/2] : 456789", - "3 | New reserved : KSM 0.00123456789", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | New free : KSM 0.0", + "3 | New reserved : KSM 5.552342355555", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 0", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1690,26 +1708,26 @@ { "index": 71, "name": "Balances_Force_transfer", - "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount : KSM 0.000000000987", - "4 | Tip : KSM 0.000055555555" + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount : KSM 0.000000000987", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.000055555555", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1719,28 +1737,26 @@ { "index": 72, "name": "Balances_Force_transfer", - "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount : KSM 0.000055555555", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.0", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount : KSM 0.000055555555", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.0", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1750,23 +1766,23 @@ { "index": 73, "name": "Balances_Force_transfer", - "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1403d2029649d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", "3 | Amount : KSM 0.00123456789", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", "3 | Amount : KSM 0.00123456789", "4 | Chain : Kusama", "5 | Nonce : 50283", @@ -1781,24 +1797,24 @@ { "index": 74, "name": "Balances_Force_transfer", - "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d146d0fd5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", "3 | Amount : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", "3 | Amount : KSM 0.000000000987", "4 | Chain : Kusama", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1808,28 +1824,26 @@ { "index": 75, "name": "Balances_Force_transfer", - "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "3 | Amount [2/2] : 456789", - "4 | Tip : KSM 0.000000000987" + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.0", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Source [2/2] : G1ft7ngXT", - "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Dest [2/2] : G1ft7ngXT", - "3 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "3 | Amount [2/2] : 456789", + "1 | Source [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Source [2/2] : bwPWshbc6", + "2 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Dest [2/2] : bwPWshbc6", + "3 | Amount : KSM 0.0", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1839,49 +1853,45 @@ { "index": 76, "name": "Balances_Transfer_keep_alive", - "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1403d2029649d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", - "3 | Tip : KSM 0.000055555555" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.00123456789", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 77, "name": "Balances_Transfer_keep_alive", - "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1403d2029649d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Amount : KSM 0.00123456789", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Amount : KSM 0.00123456789", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -1893,22 +1903,22 @@ { "index": 78, "name": "Balances_Transfer_keep_alive", - "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d140b63ce64c10c05d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.0", - "3 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 5.552342355555", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.0", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 5.552342355555", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1918,45 +1928,49 @@ { "index": 79, "name": "Balances_Transfer_keep_alive", - "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1403d2029649d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.00123456789", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Amount : KSM 5.552342355555", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.00123456789", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 80, "name": "Balances_Transfer_keep_alive", - "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d146d0fd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Amount : KSM 0.000000000987", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Amount : KSM 0.000000000987", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -1968,22 +1982,22 @@ { "index": 81, "name": "Balances_Transfer_all", - "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Keep alive : False", - "3 | Tip : KSM 0.000055555555" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Keep alive : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1993,20 +2007,20 @@ { "index": 82, "name": "Balances_Transfer_all", - "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Keep alive : True" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Keep alive : True", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2016,68 +2030,74 @@ { "index": 83, "name": "Balances_Transfer_all", - "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Keep alive : True" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Keep alive : True", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", "2 | Keep alive : True", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 84, "name": "Balances_Transfer_all", - "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Keep alive : False" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Keep alive : True", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Keep alive : False", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Keep alive : True", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 85, "name": "Balances_Transfer_all", - "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Keep alive : True", - "3 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Keep alive : False", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Dest [2/2] : G1ft7ngXT", - "2 | Keep alive : True", + "1 | Dest [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Dest [2/2] : bwPWshbc6", + "2 | Keep alive : False", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2087,24 +2107,26 @@ { "index": 86, "name": "Balances_Force_unreserve", - "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d9e97f6cb3e6ddba89b3325f131424cad5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2114,24 +2136,24 @@ { "index": 87, "name": "Balances_Force_unreserve", - "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d9e97f6cb3e6ddba89b3325f131424cad5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2141,24 +2163,24 @@ { "index": 88, "name": "Balances_Force_unreserve", - "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d9e97f6cb3e6ddba89b3325f131424cad503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2168,24 +2190,26 @@ { "index": 89, "name": "Balances_Force_unreserve", - "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d9e97f6cb3e6ddba89b3325f131424cad5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", "3 | Chain : Kusama", "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2195,51 +2219,53 @@ { "index": 90, "name": "Balances_Force_unreserve", - "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d9e97f6cb3e6ddba89b3325f131424cad5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 91, "name": "Staking_Bond", - "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0f02d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1433158139ae28a3dfaac5fe1560a5e9e05c02d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.000000000987", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Payee : Controller", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.000000000987", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Payee : Controller", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2249,21 +2275,21 @@ { "index": 92, "name": "Staking_Bond", - "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964900d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d140b63ce64c10c0502d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", - "3 | Payee : Staked", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 5.552342355555", + "3 | Payee : Controller", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", - "3 | Payee : Staked", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 5.552342355555", + "3 | Payee : Controller", "4 | Chain : Kusama", "5 | Nonce : 1", "6 | Tip : KSM 5.552342355555", @@ -2276,24 +2302,24 @@ { "index": 93, "name": "Staking_Bond", - "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964901d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d140000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", - "3 | Payee : Stash", - "4 | Tip : KSM 5.552342355555" + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.0", + "3 | Payee : Staked", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", - "3 | Payee : Stash", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.0", + "3 | Payee : Staked", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 5.552342355555", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2303,26 +2329,24 @@ { "index": 94, "name": "Staking_Bond", - "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964901d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d146d0f01d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000000000987", "3 | Payee : Stash", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Amount : KSM 0.00123456789", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Amount : KSM 0.000000000987", "3 | Payee : Stash", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2332,23 +2356,23 @@ { "index": 95, "name": "Staking_Bond", - "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964900d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1403d202964901d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Amount : KSM 0.00123456789", - "3 | Payee : Staked", + "3 | Payee : Stash", "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Amount : KSM 0.00123456789", - "3 | Payee : Staked", + "3 | Payee : Stash", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 100", "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -2359,17 +2383,17 @@ { "index": 96, "name": "Staking_Bond_extra", - "blob": "06010b63ce64c10c05d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06016d0fd50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.000000000987", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.000000000987", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -2380,20 +2404,18 @@ { "index": 97, "name": "Staking_Bond_extra", - "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060100d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2403,18 +2425,20 @@ { "index": 98, "name": "Staking_Bond_extra", - "blob": "060100d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.0", - "2 | Tip : KSM 5.552342355555" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.0", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2424,18 +2448,18 @@ { "index": 99, "name": "Staking_Bond_extra", - "blob": "06010b63ce64c10c05d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06016d0fd503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 5.552342355555", - "2 | Tip : KSM 0.00123456789" + "1 | Amount : KSM 0.000000000987", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.000000000987", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2445,20 +2469,20 @@ { "index": 100, "name": "Staking_Bond_extra", - "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06018ed73e0dd5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 0.000055555555", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2468,18 +2492,22 @@ { "index": 101, "name": "Staking_Unbond", - "blob": "06020b63ce64c10c05d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060233158139ae28a3dfaac5fe1560a5e9e05cd5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 5.552342355555", - "2 | Tip : KSM 0.000000000987" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 5.552342355555", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2489,37 +2517,43 @@ { "index": 102, "name": "Staking_Unbond", - "blob": "06028ed73e0dd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060200d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000055555555" + "1 | Amount : KSM 0.0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000055555555", + "1 | Amount : KSM 0.0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 103, "name": "Staking_Unbond", - "blob": "060203d2029649d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060200d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.00123456789", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 0.0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 0.0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2529,79 +2563,75 @@ { "index": 104, "name": "Staking_Unbond", - "blob": "06020b63ce64c10c05d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060203d2029649d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 5.552342355555" + "1 | Amount : KSM 0.00123456789", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.00123456789", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 105, "name": "Staking_Unbond", - "blob": "060203d2029649d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06026d0fd503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.00123456789", - "2 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 0.000000000987", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 106, "name": "Staking_Withdraw_Unbonded", - "blob": "060334300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06039d1c0000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.00123456789" + "0 | Staking : Withdraw Unbonded" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 12340", + "1 | Num slashing spans : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 107, "name": "Staking_Withdraw_Unbonded", - "blob": "0603d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0603f7010000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 1235", + "1 | Num slashing spans : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2611,35 +2641,39 @@ { "index": 108, "name": "Staking_Withdraw_Unbonded", - "blob": "0603f7010000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0603f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Withdraw Unbonded" + "0 | Staking : Withdraw Unbonded", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", "1 | Num slashing spans : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 109, "name": "Staking_Withdraw_Unbonded", - "blob": "060300000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060300000000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", "1 | Num slashing spans : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2649,17 +2683,17 @@ { "index": 110, "name": "Staking_Withdraw_Unbonded", - "blob": "06039d1c0000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06039d1c0000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", "1 | Num slashing spans : 7325", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2669,20 +2703,20 @@ { "index": 111, "name": "Staking_Validate", - "blob": "06049d9c00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0604ce0ef50200d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0010023%", + "1 | Prefs [1/2] : 1.2403635%", "1 | Prefs [2/2] : False", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0010023%", + "1 | Prefs [1/2] : 1.2403635%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2692,20 +2726,20 @@ { "index": 112, "name": "Staking_Validate", - "blob": "06044000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0604fafbe50300d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0000016%", + "1 | Prefs [1/2] : 1.6350974%", "1 | Prefs [2/2] : False", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0000016%", + "1 | Prefs [1/2] : 1.6350974%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2715,18 +2749,18 @@ { "index": 113, "name": "Staking_Validate", - "blob": "060442ebee0100d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0604c2d86d0300d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.8108752%", + "1 | Prefs [1/2] : 1.4382640%", "1 | Prefs [2/2] : False" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.8108752%", + "1 | Prefs [1/2] : 1.4382640%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2736,20 +2770,22 @@ { "index": 114, "name": "Staking_Validate", - "blob": "06049d9c00d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0604fafbe50300d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0010023%", + "1 | Prefs [1/2] : 1.6350974%", "1 | Prefs [2/2] : False", - "2 | Tip : KSM 5.552342355555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0010023%", + "1 | Prefs [1/2] : 1.6350974%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2759,49 +2795,43 @@ { "index": 115, "name": "Staking_Validate", - "blob": "060442ebee0100d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06040eebb60200d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.8108752%", - "1 | Prefs [2/2] : False" + "1 | Prefs [1/2] : 1.1385539%", + "1 | Prefs [2/2] : False", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.8108752%", + "1 | Prefs [1/2] : 1.1385539%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 116, "name": "Staking_Nominate", - "blob": "06050c00c61f41e1713c79e89139c4bcc3035a4c79611cbbabbd8bd23547692814715ec2004dd187a58b0c69aa56d2231b8535f2998b7dc069b84d7a472766564d478bfb0e0099679f0c225e51d0c3ecac7bed2539c5a15beb43567ceee89778adaa70ef39d4d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060504009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", - "1 | Targets [2/6] : 7kk8pSmAN", - "1 | Targets [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", - "1 | Targets [4/6] : TJhuRybMW", - "1 | Targets [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", - "1 | Targets [6/6] : arh5Wyxtp", - "2 | Tip : KSM 0.00123456789" + "1 | Targets [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Targets [2/2] : yeTz47CTK", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", - "1 | Targets [2/6] : 7kk8pSmAN", - "1 | Targets [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", - "1 | Targets [4/6] : TJhuRybMW", - "1 | Targets [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", - "1 | Targets [6/6] : arh5Wyxtp", + "1 | Targets [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Targets [2/2] : yeTz47CTK", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2811,43 +2841,47 @@ { "index": 117, "name": "Staking_Nominate", - "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060504009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT" + "1 | Targets [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Targets [2/2] : yeTz47CTK", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT", + "1 | Targets [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Targets [2/2] : yeTz47CTK", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 118, "name": "Staking_Nominate", - "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060508007bbf56b52f1eab728f589c8d084459273739a92b9306f06b432cc0c77c6920f000df87f8261115c74738e30b32de2cb78cda6f60c09bb621358dfdf51f9e0a7ecdd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT", + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2857,24 +2891,24 @@ { "index": 119, "name": "Staking_Nominate", - "blob": "06050800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060508007bbf56b52f1eab728f589c8d084459273739a92b9306f06b432cc0c77c6920f000df87f8261115c74738e30b32de2cb78cda6f60c09bb621358dfdf51f9e0a7ecdd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Targets [2/4] : PTbf4TXPP", - "1 | Targets [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Targets [4/4] : x82HTQYhP", - "2 | Tip : KSM 0.00123456789" + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Targets [2/4] : PTbf4TXPP", - "1 | Targets [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Targets [4/4] : x82HTQYhP", + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2884,19 +2918,23 @@ { "index": 120, "name": "Staking_Nominate", - "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060508007bbf56b52f1eab728f589c8d084459273739a92b9306f06b432cc0c77c6920f000df87f8261115c74738e30b32de2cb78cda6f60c09bb621358dfdf51f9e0a7ecdd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT", + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Targets [2/2] : GZhe6LBoT", + "1 | Targets [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Targets [2/4] : CGNAAwhtc", + "1 | Targets [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Targets [4/4] : 43DvY44pw", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -2907,54 +2945,54 @@ { "index": 121, "name": "Staking_Chill", - "blob": "0606d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Staking : Chill" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 122, "name": "Staking_Chill", - "blob": "0606d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill" + "0 | Staking : Chill", + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 123, "name": "Staking_Chill", - "blob": "0606d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill", - "1 | Tip : KSM 0.000000000987" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2964,16 +3002,16 @@ { "index": 124, "name": "Staking_Chill", - "blob": "0606d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 2339", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2983,7 +3021,7 @@ { "index": 125, "name": "Staking_Chill", - "blob": "0606d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill", "1 | Tip : KSM 5.552342355555" @@ -3002,18 +3040,18 @@ { "index": 126, "name": "Staking_Set_payee", - "blob": "060702d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", "1 | Payee : Controller", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3023,37 +3061,39 @@ { "index": 127, "name": "Staking_Set_payee", - "blob": "060702d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Controller" + "1 | Payee : Controller", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 128, "name": "Staking_Set_payee", - "blob": "060700d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060700d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", "1 | Payee : Staked", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Staked", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3063,79 +3103,87 @@ { "index": 129, "name": "Staking_Set_payee", - "blob": "060702d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Controller" + "1 | Payee : Controller", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 130, "name": "Staking_Set_payee", - "blob": "060702d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060701d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Controller" + "1 | Payee : Stash", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Controller", + "1 | Payee : Stash", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 131, "name": "Staking_Set_controller", - "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT" + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 132, "name": "Staking_Set_controller", - "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.00123456789" + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3145,19 +3193,19 @@ { "index": 133, "name": "Staking_Set_controller", - "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -3168,20 +3216,20 @@ { "index": 134, "name": "Staking_Set_controller", - "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.000055555555" + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3191,18 +3239,18 @@ { "index": 135, "name": "Staking_Set_controller", - "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Controller [2/2] : G1ft7ngXT", + "1 | Controller [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Controller [2/2] : bwPWshbc6", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -3216,39 +3264,39 @@ { "index": 136, "name": "Staking_Set_validator_count", - "blob": "0609f199d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06090dfdd503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 9852", - "2 | Tip : KSM 0.000055555555" + "1 | New : 16195" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 9852", + "1 | New : 16195", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 137, "name": "Staking_Set_validator_count", - "blob": "06090916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0609199ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 1410", - "2 | Tip : KSM 0.000055555555" + "1 | New : 10118", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 1410", + "1 | New : 10118", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3258,18 +3306,18 @@ { "index": 138, "name": "Staking_Set_validator_count", - "blob": "060996fb6477d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06090dfdd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 500776677", + "1 | New : 16195", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 500776677", + "1 | New : 16195", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -3281,20 +3329,18 @@ { "index": 139, "name": "Staking_Set_validator_count", - "blob": "0609f199d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06098cd5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 9852", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 35", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 9852", + "1 | New : 35", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3304,20 +3350,18 @@ { "index": 140, "name": "Staking_Set_validator_count", - "blob": "06090916d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06090dfdd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 1410", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 16195", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 1410", + "1 | New : 16195", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3327,18 +3371,18 @@ { "index": 141, "name": "Staking_Increase_validator_count", - "blob": "060af199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060ab6289630d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 9852", - "2 | Tip : KSM 0.000055555555" + "1 | Additional : 203786797", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 9852", + "1 | Additional : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3348,18 +3392,20 @@ { "index": 142, "name": "Staking_Increase_validator_count", - "blob": "060a96fb6477d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060a0dfdd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 500776677", - "2 | Tip : KSM 0.000000000987" + "1 | Additional : 16195", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 500776677", + "1 | Additional : 16195", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3369,18 +3415,18 @@ { "index": 143, "name": "Staking_Increase_validator_count", - "blob": "060a0916d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060a8cd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 1410", - "2 | Tip : KSM 0.000000000987" + "1 | Additional : 35", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 1410", + "1 | Additional : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3390,14 +3436,14 @@ { "index": 144, "name": "Staking_Increase_validator_count", - "blob": "060adcd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060ab6289630d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 55" + "1 | Additional : 203786797" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 55", + "1 | Additional : 203786797", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -3409,17 +3455,17 @@ { "index": 145, "name": "Staking_Increase_validator_count", - "blob": "060a96fb6477d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060ab6289630d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 500776677", + "1 | Additional : 203786797", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 500776677", + "1 | Additional : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -3430,37 +3476,35 @@ { "index": 146, "name": "Staking_Force_no_eras", - "blob": "060cd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force no eras", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Staking : Force no eras" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", "2 | Nonce : 100", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 147, "name": "Staking_Force_no_eras", - "blob": "060cd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 1", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3470,16 +3514,16 @@ { "index": 148, "name": "Staking_Force_no_eras", - "blob": "060cd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3489,35 +3533,33 @@ { "index": 149, "name": "Staking_Force_no_eras", - "blob": "060cd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force no eras", - "1 | Tip : KSM 5.552342355555" + "0 | Staking : Force no eras" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 150, "name": "Staking_Force_no_eras", - "blob": "060cd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 0", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3527,35 +3569,35 @@ { "index": 151, "name": "Staking_Force_new_era", - "blob": "060dd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era" + "0 | Staking : Force new era", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 152, "name": "Staking_Force_new_era", - "blob": "060dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 100", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3565,33 +3607,35 @@ { "index": 153, "name": "Staking_Force_new_era", - "blob": "060dd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era" + "0 | Staking : Force new era", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 154, "name": "Staking_Force_new_era", - "blob": "060dd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 50283", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3601,40 +3645,42 @@ { "index": 155, "name": "Staking_Force_new_era", - "blob": "060dd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era" + "0 | Staking : Force new era", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 156, "name": "Staking_Force_unstake", - "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060fdc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe073600000000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Stash [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Stash [2/2] : W2YqpsEiW", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Stash [2/2] : W2YqpsEiW", + "2 | Num slashing spans : 0", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3644,45 +3690,43 @@ { "index": 157, "name": "Staking_Force_unstake", - "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d3040000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 503", + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Num slashing spans : 1235", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 158, "name": "Staking_Force_unstake", - "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013f7010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 7325", + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Num slashing spans : 503", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3692,43 +3736,47 @@ { "index": 159, "name": "Staking_Force_unstake", - "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f9cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461c9d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn" + "1 | Stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Stash [2/2] : Ho6PzgCdQ", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", + "1 | Stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Stash [2/2] : Ho6PzgCdQ", "2 | Num slashing spans : 7325", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 160, "name": "Staking_Force_unstake", - "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060fe201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36334300000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Stash [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", + "1 | Stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Stash [2/2] : 3Ph4miYfg", "2 | Num slashing spans : 12340", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3738,33 +3786,35 @@ { "index": 161, "name": "Staking_Force_new_era_always", - "blob": "0610d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era always" + "0 | Staking : Force new era always", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 162, "name": "Staking_Force_new_era_always", - "blob": "0610d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era always", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3774,33 +3824,37 @@ { "index": 163, "name": "Staking_Force_new_era_always", - "blob": "0610d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era always" + "0 | Staking : Force new era always", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 164, "name": "Staking_Force_new_era_always", - "blob": "0610d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era always", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3810,35 +3864,37 @@ { "index": 165, "name": "Staking_Force_new_era_always", - "blob": "0610d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era always" + "0 | Staking : Force new era always", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 166, "name": "Staking_Payout_stakers", - "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0612f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe8649d1c0000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 1235" + "1 | Validator stash [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Validator stash [2/2] : 6JtYYhKnN", + "2 | Era : 7325" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 1235", + "1 | Validator stash [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Validator stash [2/2] : 6JtYYhKnN", + "2 | Era : 7325", "3 | Chain : Kusama", "4 | Nonce : 100", "5 | Era Phase : 61", @@ -3850,22 +3906,22 @@ { "index": 167, "name": "Staking_Payout_stakers", - "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06129cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461c34300000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 503", - "3 | Tip : KSM 0.000055555555" + "1 | Validator stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Validator stash [2/2] : Ho6PzgCdQ", + "2 | Era : 12340", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 503", + "1 | Validator stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Validator stash [2/2] : Ho6PzgCdQ", + "2 | Era : 12340", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3875,22 +3931,22 @@ { "index": 168, "name": "Staking_Payout_stakers", - "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0612e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855300000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", + "1 | Validator stash [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Validator stash [2/2] : a8GkEuTYa", "2 | Era : 0", - "3 | Tip : KSM 5.552342355555" + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", + "1 | Validator stash [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Validator stash [2/2] : a8GkEuTYa", "2 | Era : 0", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3900,47 +3956,47 @@ { "index": 169, "name": "Staking_Payout_stakers", - "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06129cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cf7010000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 7325", - "3 | Tip : KSM 0.000055555555" + "1 | Validator stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Validator stash [2/2] : Ho6PzgCdQ", + "2 | Era : 503" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 7325", + "1 | Validator stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Validator stash [2/2] : Ho6PzgCdQ", + "2 | Era : 503", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 170, "name": "Staking_Payout_stakers", - "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0612f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86400000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 12340", - "3 | Tip : KSM 0.000055555555" + "1 | Validator stash [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Validator stash [2/2] : 6JtYYhKnN", + "2 | Era : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Validator stash [2/2] : DyGtAWNbn", - "2 | Era : 12340", + "1 | Validator stash [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Validator stash [2/2] : 6JtYYhKnN", + "2 | Era : 0", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3950,43 +4006,39 @@ { "index": 171, "name": "Staking_Rebond", - "blob": "061333158139ae28a3dfaac5fe1560a5e9e05cd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061333158139ae28a3dfaac5fe1560a5e9e05cd5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 0.000055555555" + "1 | Amount [2/2] : 456789" ], "output_expert": [ "0 | Staking : Rebond", "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 172, "name": "Staking_Rebond", - "blob": "06138ed73e0dd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06138ed73e0dd503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", "1 | Amount : KSM 0.000055555555", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Rebond", "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3996,41 +4048,37 @@ { "index": 173, "name": "Staking_Rebond", - "blob": "061303d2029649d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06138ed73e0dd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.00123456789", - "2 | Tip : KSM 0.000000000987" + "1 | Amount : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 174, "name": "Staking_Rebond", - "blob": "06130b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061303d2029649d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 5.552342355555", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Amount : KSM 0.00123456789", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.00123456789", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4040,18 +4088,18 @@ { "index": 175, "name": "Staking_Rebond", - "blob": "06136d0fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06138ed73e0dd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", - "2 | Tip : KSM 0.000000000987" + "1 | Amount : KSM 0.000055555555", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", + "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4061,17 +4109,17 @@ { "index": 176, "name": "Staking_Set_history_depth", - "blob": "061409160916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06148c199ed5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 1410", - "2 | Era items deleted : 1410", + "1 | New history depth : 35", + "2 | Era items deleted : 10118", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 1410", - "2 | Era items deleted : 1410", + "1 | New history depth : 35", + "2 | Era items deleted : 10118", "3 | Chain : Kusama", "4 | Nonce : 1", "5 | Tip : KSM 0.00123456789", @@ -4084,20 +4132,20 @@ { "index": 177, "name": "Staking_Set_history_depth", - "blob": "0614dcf199d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06140dfd8cd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 55", - "2 | Era items deleted : 9852", - "3 | Tip : KSM 0.000000000987" + "1 | New history depth : 16195", + "2 | Era items deleted : 35", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 55", - "2 | Era items deleted : 9852", + "1 | New history depth : 16195", + "2 | Era items deleted : 35", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4107,20 +4155,20 @@ { "index": 178, "name": "Staking_Set_history_depth", - "blob": "061496fb6477dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06140dfdb6289630d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 500776677", - "2 | Era items deleted : 55", - "3 | Tip : KSM 0.000055555555" + "1 | New history depth : 16195", + "2 | Era items deleted : 203786797", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 500776677", - "2 | Era items deleted : 55", + "1 | New history depth : 16195", + "2 | Era items deleted : 203786797", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4130,43 +4178,41 @@ { "index": 179, "name": "Staking_Set_history_depth", - "blob": "06140916dcd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06140dfd8cd503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 1410", - "2 | Era items deleted : 55", - "3 | Tip : KSM 0.00123456789" + "1 | New history depth : 16195", + "2 | Era items deleted : 35" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 1410", - "2 | Era items deleted : 55", + "1 | New history depth : 16195", + "2 | Era items deleted : 35", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, { "index": 180, "name": "Staking_Set_history_depth", - "blob": "0614dcdcd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06140dfd8cd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 55", - "2 | Era items deleted : 55", - "3 | Tip : KSM 5.552342355555" + "1 | New history depth : 16195", + "2 | Era items deleted : 35", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 55", - "2 | Era items deleted : 55", + "1 | New history depth : 16195", + "2 | Era items deleted : 35", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4176,21 +4222,21 @@ { "index": 181, "name": "Staking_Reap_stash", - "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06159cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd3040000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Stash [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Stash [2/2] : Ho6PzgCdQ", + "2 | Num slashing spans : 1235", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4200,21 +4246,21 @@ { "index": 182, "name": "Staking_Reap_stash", - "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0615e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363f7010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Stash [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Stash [2/2] : 3Ph4miYfg", + "2 | Num slashing spans : 503", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4224,21 +4270,21 @@ { "index": 183, "name": "Staking_Reap_stash", - "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d3040000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 503", + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Num slashing spans : 1235", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4248,20 +4294,20 @@ { "index": 184, "name": "Staking_Reap_stash", - "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0615e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674f7010000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", + "1 | Stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Stash [2/2] : MCzmwrXrR", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Stash [2/2] : MCzmwrXrR", + "2 | Num slashing spans : 503", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -4272,21 +4318,21 @@ { "index": 185, "name": "Staking_Reap_stash", - "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd3040000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff09301300000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Stash [2/2] : DyGtAWNbn", - "2 | Num slashing spans : 1235", + "1 | Stash [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Stash [2/2] : r9TQhU9HW", + "2 | Num slashing spans : 0", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4296,28 +4342,20 @@ { "index": 186, "name": "Staking_Kick", - "blob": "06160c00c61f41e1713c79e89139c4bcc3035a4c79611cbbabbd8bd23547692814715ec2004dd187a58b0c69aa56d2231b8535f2998b7dc069b84d7a472766564d478bfb0e0099679f0c225e51d0c3ecac7bed2539c5a15beb43567ceee89778adaa70ef39d4d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061604009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", - "1 | Who [2/6] : 7kk8pSmAN", - "1 | Who [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", - "1 | Who [4/6] : TJhuRybMW", - "1 | Who [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", - "1 | Who [6/6] : arh5Wyxtp", - "2 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", - "1 | Who [2/6] : 7kk8pSmAN", - "1 | Who [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", - "1 | Who [4/6] : TJhuRybMW", - "1 | Who [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", - "1 | Who [6/6] : arh5Wyxtp", + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4327,47 +4365,41 @@ { "index": 187, "name": "Staking_Kick", - "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061604009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 188, "name": "Staking_Kick", - "blob": "061604009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061604009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Who [2/2] : GZhe6LBoT", - "2 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", - "1 | Who [2/2] : GZhe6LBoT", + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4377,24 +4409,24 @@ { "index": 189, "name": "Staking_Kick", - "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061608007bbf56b52f1eab728f589c8d084459273739a92b9306f06b432cc0c77c6920f000df87f8261115c74738e30b32de2cb78cda6f60c09bb621358dfdf51f9e0a7ecdd503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Who [2/4] : CGNAAwhtc", + "1 | Who [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Who [4/4] : 43DvY44pw", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", + "1 | Who [1/4] : FNaFHQCSzstUrybmwdkz8Z7ykzCpADuAmZnRi6", + "1 | Who [2/4] : CGNAAwhtc", + "1 | Who [3/4] : HdQb2Gxu3NWMjHMhCGfgAyZemJE1wUxF7vA2y9", + "1 | Who [4/4] : 43DvY44pw", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4404,21 +4436,17 @@ { "index": 190, "name": "Staking_Kick", - "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061604009a235c57f3a9580d8e3a8402d501b4a5644916cc7c8a74f2aa770cc6ca868be3d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", - "1 | Who [2/4] : PTbf4TXPP", - "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", - "1 | Who [4/4] : x82HTQYhP", + "1 | Who [1/2] : G4RPwbfc7aRDDgPwmiuTUKkfhkDCf5zZs8DUuk", + "1 | Who [2/2] : yeTz47CTK", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", @@ -4431,43 +4459,41 @@ { "index": 191, "name": "Staking_Chill_other", - "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0618f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Controller [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Controller [2/2] : 6JtYYhKnN" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", + "1 | Controller [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Controller [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 192, "name": "Staking_Chill_other", - "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0618e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Controller [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Controller [2/2] : MCzmwrXrR", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", + "1 | Controller [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Controller [2/2] : MCzmwrXrR", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4477,41 +4503,43 @@ { "index": 193, "name": "Staking_Chill_other", - "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06189cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn" + "1 | Controller [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Controller [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", + "1 | Controller [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Controller [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 194, "name": "Staking_Chill_other", - "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0618e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Controller [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Controller [2/2] : MCzmwrXrR", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", + "1 | Controller [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Controller [2/2] : MCzmwrXrR", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4521,19 +4549,138 @@ { "index": 195, "name": "Staking_Chill_other", - "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0618dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Controller [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Controller [2/2] : W2YqpsEiW", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Controller [2/2] : DyGtAWNbn", + "1 | Controller [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Controller [2/2] : W2YqpsEiW", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 196, + "name": "Staking_Force_apply_min_commission", + "blob": "0619b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Validator stash [2/2] : PuqtMGste", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Validator stash [2/2] : PuqtMGste", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 197, + "name": "Staking_Force_apply_min_commission", + "blob": "061964d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Validator stash [2/2] : TZdAHD41C", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Validator stash [2/2] : TZdAHD41C", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 198, + "name": "Staking_Force_apply_min_commission", + "blob": "0619e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Validator stash [2/2] : MCzmwrXrR", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Validator stash [2/2] : MCzmwrXrR", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 199, + "name": "Staking_Force_apply_min_commission", + "blob": "0619e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Validator stash [2/2] : MCzmwrXrR", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Validator stash [2/2] : MCzmwrXrR", "2 | Chain : Kusama", "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 200, + "name": "Staking_Force_apply_min_commission", + "blob": "0619e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Validator stash [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Validator stash [2/2] : 3Ph4miYfg", + "2 | Chain : Kusama", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -4542,54 +4689,44 @@ ] }, { - "index": 196, + "index": 201, "name": "Session_Set_keys", - "blob": "080061da77668ce798e8c33624deed25d505e66a6685a8307224b5ccc6f3857dd49628cae5119ff3629dcefe9a8b9c23884958dae41fe5164220c38b8e88a51c6101c08b13c1f1af6a56bbd27151e48e9b1cc9dfa25193ffea4d356459fe63e4a9221694ea621cda6f627bd842cb3a066b62b166b1e45f67f87cad39ab2c24df2d6a15b7d01bbadfe77a164203f976f76cd53359aa43e9cc4c89b14c6e54c5c6a3c913870dffbff61bf4dc2256f39c251ae2a9fe9706f92f76a5ca9c852d657b93340102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800a2c4f90f6bb9ca75f7aec0b3f40e07fc3ee3d884a884e1f8b10df5b92501b973bfa51caeb422ebe18a104e29e5ca1b58313238fed6734abfeddf961260ef7e09ff37d9f964a96e0a9267a3ef2e68fb329e564e00d87938e6b2f15b3c0467aa3e7a4e3d222683dd2f2dc43c7cb0c8a583b9412c4c4b698648f1d0736dc8e823987cf5884e648ea1f1d78d7658ed552725bbfd4300c4f2763de0b6761f1bf8cd5b5de93d2c577bad50ee843388f58fcb7fffc8bff00245b778c9185610edb4ac71806191dc78bdcad9ac5d45618e4fd83cb4853e2e8a47421e257b817cd51fc186d7d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 61da77668ce798e8c33624deed25d505e66a66", - "1 | Keys [2/11] : 85a8307224b5ccc6f3857dd49628cae5119ff3", - "1 | Keys [3/11] : 629dcefe9a8b9c23884958dae41fe5164220c3", - "1 | Keys [4/11] : 8b8e88a51c6101c08b13c1f1af6a56bbd27151", - "1 | Keys [5/11] : e48e9b1cc9dfa25193ffea4d356459fe63e4a9", - "1 | Keys [6/11] : 221694ea621cda6f627bd842cb3a066b62b166", - "1 | Keys [7/11] : b1e45f67f87cad39ab2c24df2d6a15b7d01bba", - "1 | Keys [8/11] : dfe77a164203f976f76cd53359aa43e9cc4c89", - "1 | Keys [9/11] : b14c6e54c5c6a3c913870dffbff61bf4dc2256", - "1 | Keys [10/11] : f39c251ae2a9fe9706f92f76a5ca9c852d657b", - "1 | Keys [11/11] : 9334", - "2 | Proof [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Proof [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Proof [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Proof [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Proof [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Proof [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Proof [7/7] : 15ed00d70e7bb9161e10557d44c4", - "3 | Tip : KSM 0.00123456789" + "1 | Keys [1/11] : a2c4f90f6bb9ca75f7aec0b3f40e07fc3ee3d8", + "1 | Keys [2/11] : 84a884e1f8b10df5b92501b973bfa51caeb422", + "1 | Keys [3/11] : ebe18a104e29e5ca1b58313238fed6734abfed", + "1 | Keys [4/11] : df961260ef7e09ff37d9f964a96e0a9267a3ef", + "1 | Keys [5/11] : 2e68fb329e564e00d87938e6b2f15b3c0467aa", + "1 | Keys [6/11] : 3e7a4e3d222683dd2f2dc43c7cb0c8a583b941", + "1 | Keys [7/11] : 2c4c4b698648f1d0736dc8e823987cf5884e64", + "1 | Keys [8/11] : 8ea1f1d78d7658ed552725bbfd4300c4f2763d", + "1 | Keys [9/11] : e0b6761f1bf8cd5b5de93d2c577bad50ee8433", + "1 | Keys [10/11] : 88f58fcb7fffc8bff00245b778c9185610edb4", + "1 | Keys [11/11] : ac71", + "2 | Proof [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Proof [2/2] : 8a47421e257b817cd51fc186d7", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 61da77668ce798e8c33624deed25d505e66a66", - "1 | Keys [2/11] : 85a8307224b5ccc6f3857dd49628cae5119ff3", - "1 | Keys [3/11] : 629dcefe9a8b9c23884958dae41fe5164220c3", - "1 | Keys [4/11] : 8b8e88a51c6101c08b13c1f1af6a56bbd27151", - "1 | Keys [5/11] : e48e9b1cc9dfa25193ffea4d356459fe63e4a9", - "1 | Keys [6/11] : 221694ea621cda6f627bd842cb3a066b62b166", - "1 | Keys [7/11] : b1e45f67f87cad39ab2c24df2d6a15b7d01bba", - "1 | Keys [8/11] : dfe77a164203f976f76cd53359aa43e9cc4c89", - "1 | Keys [9/11] : b14c6e54c5c6a3c913870dffbff61bf4dc2256", - "1 | Keys [10/11] : f39c251ae2a9fe9706f92f76a5ca9c852d657b", - "1 | Keys [11/11] : 9334", - "2 | Proof [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Proof [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Proof [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Proof [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Proof [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Proof [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Proof [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Keys [1/11] : a2c4f90f6bb9ca75f7aec0b3f40e07fc3ee3d8", + "1 | Keys [2/11] : 84a884e1f8b10df5b92501b973bfa51caeb422", + "1 | Keys [3/11] : ebe18a104e29e5ca1b58313238fed6734abfed", + "1 | Keys [4/11] : df961260ef7e09ff37d9f964a96e0a9267a3ef", + "1 | Keys [5/11] : 2e68fb329e564e00d87938e6b2f15b3c0467aa", + "1 | Keys [6/11] : 3e7a4e3d222683dd2f2dc43c7cb0c8a583b941", + "1 | Keys [7/11] : 2c4c4b698648f1d0736dc8e823987cf5884e64", + "1 | Keys [8/11] : 8ea1f1d78d7658ed552725bbfd4300c4f2763d", + "1 | Keys [9/11] : e0b6761f1bf8cd5b5de93d2c577bad50ee8433", + "1 | Keys [10/11] : 88f58fcb7fffc8bff00245b778c9185610edb4", + "1 | Keys [11/11] : ac71", + "2 | Proof [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Proof [2/2] : 8a47421e257b817cd51fc186d7", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4597,54 +4734,54 @@ ] }, { - "index": 197, + "index": 202, "name": "Session_Set_keys", - "blob": "08007c7ec91a136618410d7c70f14fdd8f82666d99cd28b449398f39e77a7b226f15cbb3fe969fbaa147c8f78333b7a8cc536233dca28bf3d7bb701eba8056fb598486e84a8b6c08f343fe7f5fe53fe0080490841386b0ce2d828913f7970645a492731769f4e4949037fb15bd881373c0f4e9fc623d8a5609fc7dd9042993c820159f39a9cf7739a65028cd10e1eec0f64bef861e157169ea81db6846fe1fe0b6e38c98340d37c7617b19453140cf334b39e9cad5e7df45fef5549fb8628e78ab720102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800a09e1e11ea39686ce540c2e468d53074edb39f93517108c2abc9667ce582c03c4d3cb3ea7b44a1a97b736ace39bf8f9a5686e64f7e8c1538bd2b5a0e83127f2fa82f0f2af9f04e33d49bdbc5c440a68393552b48100956d143356e509e1b31f65c80f768c2572727f737f2263c39cd052aa28625b0b043023ab508a0a4acca5667ebc1d57e78859fc2580863d81aa699913746e3869ff5b210128005553b1898c11a6d5f638f5c0429086c5eef58f0788f541c3468dffd2e283dd6cd4091c0e401025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 7c7ec91a136618410d7c70f14fdd8f82666d99", - "1 | Keys [2/11] : cd28b449398f39e77a7b226f15cbb3fe969fba", - "1 | Keys [3/11] : a147c8f78333b7a8cc536233dca28bf3d7bb70", - "1 | Keys [4/11] : 1eba8056fb598486e84a8b6c08f343fe7f5fe5", - "1 | Keys [5/11] : 3fe0080490841386b0ce2d828913f7970645a4", - "1 | Keys [6/11] : 92731769f4e4949037fb15bd881373c0f4e9fc", - "1 | Keys [7/11] : 623d8a5609fc7dd9042993c820159f39a9cf77", - "1 | Keys [8/11] : 39a65028cd10e1eec0f64bef861e157169ea81", - "1 | Keys [9/11] : db6846fe1fe0b6e38c98340d37c7617b194531", - "1 | Keys [10/11] : 40cf334b39e9cad5e7df45fef5549fb8628e78", - "1 | Keys [11/11] : ab72", - "2 | Proof [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "2 | Proof [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "2 | Proof [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "2 | Proof [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "2 | Proof [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "2 | Proof [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "2 | Proof [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "3 | Tip : KSM 0.000000000987" + "1 | Keys [1/11] : a09e1e11ea39686ce540c2e468d53074edb39f", + "1 | Keys [2/11] : 93517108c2abc9667ce582c03c4d3cb3ea7b44", + "1 | Keys [3/11] : a1a97b736ace39bf8f9a5686e64f7e8c1538bd", + "1 | Keys [4/11] : 2b5a0e83127f2fa82f0f2af9f04e33d49bdbc5", + "1 | Keys [5/11] : c440a68393552b48100956d143356e509e1b31", + "1 | Keys [6/11] : f65c80f768c2572727f737f2263c39cd052aa2", + "1 | Keys [7/11] : 8625b0b043023ab508a0a4acca5667ebc1d57e", + "1 | Keys [8/11] : 78859fc2580863d81aa699913746e3869ff5b2", + "1 | Keys [9/11] : 10128005553b1898c11a6d5f638f5c0429086c", + "1 | Keys [10/11] : 5eef58f0788f541c3468dffd2e283dd6cd4091", + "1 | Keys [11/11] : c0e4", + "2 | Proof [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "2 | Proof [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "2 | Proof [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "2 | Proof [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "2 | Proof [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "2 | Proof [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "2 | Proof [7/7] : 162f12115b630d72d559609e6688", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 7c7ec91a136618410d7c70f14fdd8f82666d99", - "1 | Keys [2/11] : cd28b449398f39e77a7b226f15cbb3fe969fba", - "1 | Keys [3/11] : a147c8f78333b7a8cc536233dca28bf3d7bb70", - "1 | Keys [4/11] : 1eba8056fb598486e84a8b6c08f343fe7f5fe5", - "1 | Keys [5/11] : 3fe0080490841386b0ce2d828913f7970645a4", - "1 | Keys [6/11] : 92731769f4e4949037fb15bd881373c0f4e9fc", - "1 | Keys [7/11] : 623d8a5609fc7dd9042993c820159f39a9cf77", - "1 | Keys [8/11] : 39a65028cd10e1eec0f64bef861e157169ea81", - "1 | Keys [9/11] : db6846fe1fe0b6e38c98340d37c7617b194531", - "1 | Keys [10/11] : 40cf334b39e9cad5e7df45fef5549fb8628e78", - "1 | Keys [11/11] : ab72", - "2 | Proof [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "2 | Proof [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "2 | Proof [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "2 | Proof [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "2 | Proof [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "2 | Proof [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "2 | Proof [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Keys [1/11] : a09e1e11ea39686ce540c2e468d53074edb39f", + "1 | Keys [2/11] : 93517108c2abc9667ce582c03c4d3cb3ea7b44", + "1 | Keys [3/11] : a1a97b736ace39bf8f9a5686e64f7e8c1538bd", + "1 | Keys [4/11] : 2b5a0e83127f2fa82f0f2af9f04e33d49bdbc5", + "1 | Keys [5/11] : c440a68393552b48100956d143356e509e1b31", + "1 | Keys [6/11] : f65c80f768c2572727f737f2263c39cd052aa2", + "1 | Keys [7/11] : 8625b0b043023ab508a0a4acca5667ebc1d57e", + "1 | Keys [8/11] : 78859fc2580863d81aa699913746e3869ff5b2", + "1 | Keys [9/11] : 10128005553b1898c11a6d5f638f5c0429086c", + "1 | Keys [10/11] : 5eef58f0788f541c3468dffd2e283dd6cd4091", + "1 | Keys [11/11] : c0e4", + "2 | Proof [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "2 | Proof [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "2 | Proof [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "2 | Proof [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "2 | Proof [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "2 | Proof [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "2 | Proof [7/7] : 162f12115b630d72d559609e6688", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4652,157 +4789,163 @@ ] }, { - "index": 198, + "index": 203, "name": "Session_Set_keys", - "blob": "0800e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9966a213abf62c06e918fde0a00ad80fe1af8c44f4091ae3af86f3ea3f074b14a577899a98492fe7b744d3a155036bfac0c9abcc19632e56e068ab892efa0e1201cfbaab0c01639f99d7705d724e661eb29acfd6d968f31952b759dc36f7761f7619bf0f5cc8225ca6b466de9c67773327ddaef776804001ebd194baab91224ee9e4ce4213cd34beb32976b78a82495bfe9e77737d6b2d31a64fa0fa0c0d710515185f129ffb90851998f5733b180b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800eb4bc95edfd7947553e63dbc674f770c121e3bff040fc1f76148e0fa909a3dc70fe2dd144853adfea4745be279e31f477bf93f8566e4c25f974b6feffd968e42f063cf57a054c15244a9e03791ae897eb9b5dce6f6ba82c178e85c2f55952f56d1ddf2bcb485d43c4431e053ffb80b22d57f5c7d1692f51ac181d12c4f915abb63cce60f411b8d92f7c0e92342d50af24a94cd8bbd6816fc473c0a604ca8677e2459a34651a8cf6b7dcff611782c2a08d14d924ea28dc1c4dce4ea617db5c8810101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9", - "1 | Keys [2/11] : 966a213abf62c06e918fde0a00ad80fe1af8c4", - "1 | Keys [3/11] : 4f4091ae3af86f3ea3f074b14a577899a98492", - "1 | Keys [4/11] : fe7b744d3a155036bfac0c9abcc19632e56e06", - "1 | Keys [5/11] : 8ab892efa0e1201cfbaab0c01639f99d7705d7", - "1 | Keys [6/11] : 24e661eb29acfd6d968f31952b759dc36f7761", - "1 | Keys [7/11] : f7619bf0f5cc8225ca6b466de9c67773327dda", - "1 | Keys [8/11] : ef776804001ebd194baab91224ee9e4ce4213c", - "1 | Keys [9/11] : d34beb32976b78a82495bfe9e77737d6b2d31a", - "1 | Keys [10/11] : 64fa0fa0c0d710515185f129ffb90851998f57", - "1 | Keys [11/11] : 33b1", - "2 | Proof [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Proof [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "3 | Tip : KSM 0.000055555555" + "1 | Keys [1/11] : eb4bc95edfd7947553e63dbc674f770c121e3b", + "1 | Keys [2/11] : ff040fc1f76148e0fa909a3dc70fe2dd144853", + "1 | Keys [3/11] : adfea4745be279e31f477bf93f8566e4c25f97", + "1 | Keys [4/11] : 4b6feffd968e42f063cf57a054c15244a9e037", + "1 | Keys [5/11] : 91ae897eb9b5dce6f6ba82c178e85c2f55952f", + "1 | Keys [6/11] : 56d1ddf2bcb485d43c4431e053ffb80b22d57f", + "1 | Keys [7/11] : 5c7d1692f51ac181d12c4f915abb63cce60f41", + "1 | Keys [8/11] : 1b8d92f7c0e92342d50af24a94cd8bbd6816fc", + "1 | Keys [9/11] : 473c0a604ca8677e2459a34651a8cf6b7dcff6", + "1 | Keys [10/11] : 11782c2a08d14d924ea28dc1c4dce4ea617db5", + "1 | Keys [11/11] : c881", + "2 | Proof [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "2 | Proof [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "2 | Proof [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "2 | Proof [4/4] : 357008265b2f65" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9", - "1 | Keys [2/11] : 966a213abf62c06e918fde0a00ad80fe1af8c4", - "1 | Keys [3/11] : 4f4091ae3af86f3ea3f074b14a577899a98492", - "1 | Keys [4/11] : fe7b744d3a155036bfac0c9abcc19632e56e06", - "1 | Keys [5/11] : 8ab892efa0e1201cfbaab0c01639f99d7705d7", - "1 | Keys [6/11] : 24e661eb29acfd6d968f31952b759dc36f7761", - "1 | Keys [7/11] : f7619bf0f5cc8225ca6b466de9c67773327dda", - "1 | Keys [8/11] : ef776804001ebd194baab91224ee9e4ce4213c", - "1 | Keys [9/11] : d34beb32976b78a82495bfe9e77737d6b2d31a", - "1 | Keys [10/11] : 64fa0fa0c0d710515185f129ffb90851998f57", - "1 | Keys [11/11] : 33b1", - "2 | Proof [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Proof [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Keys [1/11] : eb4bc95edfd7947553e63dbc674f770c121e3b", + "1 | Keys [2/11] : ff040fc1f76148e0fa909a3dc70fe2dd144853", + "1 | Keys [3/11] : adfea4745be279e31f477bf93f8566e4c25f97", + "1 | Keys [4/11] : 4b6feffd968e42f063cf57a054c15244a9e037", + "1 | Keys [5/11] : 91ae897eb9b5dce6f6ba82c178e85c2f55952f", + "1 | Keys [6/11] : 56d1ddf2bcb485d43c4431e053ffb80b22d57f", + "1 | Keys [7/11] : 5c7d1692f51ac181d12c4f915abb63cce60f41", + "1 | Keys [8/11] : 1b8d92f7c0e92342d50af24a94cd8bbd6816fc", + "1 | Keys [9/11] : 473c0a604ca8677e2459a34651a8cf6b7dcff6", + "1 | Keys [10/11] : 11782c2a08d14d924ea28dc1c4dce4ea617db5", + "1 | Keys [11/11] : c881", + "2 | Proof [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "2 | Proof [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "2 | Proof [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "2 | Proof [4/4] : 357008265b2f65", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 199, + "index": 204, "name": "Session_Set_keys", - "blob": "0800be9aadafc0b76e445aa19918eaf610eb7400bb2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f810cc0139521a3f7bd6204a86f089e37bf933b71b1b665780ea9378dd0a5f758d567847266f640df24eb2337c31d7408bab6948dd42d1ae0c23c64b9f2943870c474dcea6750346f9bd4371641c84a43ad9b68adee02271ef5dc89abdaface0c685dc296a13378e535e8a4d7dee4fcf32a2ac9f092159bd231ed063c9ef5a34bc82797ca0b3cc649638e07ada5aa0989c2b94ee028ae9e85190bc010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800eb4bc95edfd7947553e63dbc674f770c121e3bff040fc1f76148e0fa909a3dc70fe2dd144853adfea4745be279e31f477bf93f8566e4c25f974b6feffd968e42f063cf57a054c15244a9e03791ae897eb9b5dce6f6ba82c178e85c2f55952f56d1ddf2bcb485d43c4431e053ffb80b22d57f5c7d1692f51ac181d12c4f915abb63cce60f411b8d92f7c0e92342d50af24a94cd8bbd6816fc473c0a604ca8677e2459a34651a8cf6b7dcff611782c2a08d14d924ea28dc1c4dce4ea617db5c881010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", - "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", - "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", - "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", - "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", - "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", - "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", - "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", - "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", - "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", - "1 | Keys [11/11] : 90bc", - "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "2 | Proof [4/4] : 683807d2d3ef09" + "1 | Keys [1/11] : eb4bc95edfd7947553e63dbc674f770c121e3b", + "1 | Keys [2/11] : ff040fc1f76148e0fa909a3dc70fe2dd144853", + "1 | Keys [3/11] : adfea4745be279e31f477bf93f8566e4c25f97", + "1 | Keys [4/11] : 4b6feffd968e42f063cf57a054c15244a9e037", + "1 | Keys [5/11] : 91ae897eb9b5dce6f6ba82c178e85c2f55952f", + "1 | Keys [6/11] : 56d1ddf2bcb485d43c4431e053ffb80b22d57f", + "1 | Keys [7/11] : 5c7d1692f51ac181d12c4f915abb63cce60f41", + "1 | Keys [8/11] : 1b8d92f7c0e92342d50af24a94cd8bbd6816fc", + "1 | Keys [9/11] : 473c0a604ca8677e2459a34651a8cf6b7dcff6", + "1 | Keys [10/11] : 11782c2a08d14d924ea28dc1c4dce4ea617db5", + "1 | Keys [11/11] : c881", + "2 | Proof [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "2 | Proof [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "2 | Proof [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "2 | Proof [4/4] : 244ccf5c5cf935", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", - "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", - "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", - "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", - "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", - "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", - "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", - "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", - "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", - "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", - "1 | Keys [11/11] : 90bc", - "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "2 | Proof [4/4] : 683807d2d3ef09", + "1 | Keys [1/11] : eb4bc95edfd7947553e63dbc674f770c121e3b", + "1 | Keys [2/11] : ff040fc1f76148e0fa909a3dc70fe2dd144853", + "1 | Keys [3/11] : adfea4745be279e31f477bf93f8566e4c25f97", + "1 | Keys [4/11] : 4b6feffd968e42f063cf57a054c15244a9e037", + "1 | Keys [5/11] : 91ae897eb9b5dce6f6ba82c178e85c2f55952f", + "1 | Keys [6/11] : 56d1ddf2bcb485d43c4431e053ffb80b22d57f", + "1 | Keys [7/11] : 5c7d1692f51ac181d12c4f915abb63cce60f41", + "1 | Keys [8/11] : 1b8d92f7c0e92342d50af24a94cd8bbd6816fc", + "1 | Keys [9/11] : 473c0a604ca8677e2459a34651a8cf6b7dcff6", + "1 | Keys [10/11] : 11782c2a08d14d924ea28dc1c4dce4ea617db5", + "1 | Keys [11/11] : c881", + "2 | Proof [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "2 | Proof [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "2 | Proof [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "2 | Proof [4/4] : 244ccf5c5cf935", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 200, + "index": 205, "name": "Session_Set_keys", - "blob": "0800be9aadafc0b76e445aa19918eaf610eb7400bb2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f810cc0139521a3f7bd6204a86f089e37bf933b71b1b665780ea9378dd0a5f758d567847266f640df24eb2337c31d7408bab6948dd42d1ae0c23c64b9f2943870c474dcea6750346f9bd4371641c84a43ad9b68adee02271ef5dc89abdaface0c685dc296a13378e535e8a4d7dee4fcf32a2ac9f092159bd231ed063c9ef5a34bc82797ca0b3cc649638e07ada5aa0989c2b94ee028ae9e85190bc010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "080062f06e942308be969cbdca7d0dfd22cfa52e5a047336cb85f820befeb6b706d714423e26593ca571981fd54040d4f804f128f68d0cb64f17644ad137303dbebb32a66e86875f2310f996c459c1b4015c52f35d3ab59b9ff8cb1d7fa161fc051c4b21e0177cb4aeeceea97ecc7a817d8871af147b5a945ffa966314248b6851a38b3adace375c2ead7fa1f7b43bec9516a39c5882e0067d90fb98eb1c8b294f7a276db355e7f8628a3db9c68e264a90bc9990c10bcd042c697ba620c109844714010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", - "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", - "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", - "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", - "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", - "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", - "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", - "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", - "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", - "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", - "1 | Keys [11/11] : 90bc", - "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "2 | Proof [4/4] : 683807d2d3ef09" + "1 | Keys [1/11] : 62f06e942308be969cbdca7d0dfd22cfa52e5a", + "1 | Keys [2/11] : 047336cb85f820befeb6b706d714423e26593c", + "1 | Keys [3/11] : a571981fd54040d4f804f128f68d0cb64f1764", + "1 | Keys [4/11] : 4ad137303dbebb32a66e86875f2310f996c459", + "1 | Keys [5/11] : c1b4015c52f35d3ab59b9ff8cb1d7fa161fc05", + "1 | Keys [6/11] : 1c4b21e0177cb4aeeceea97ecc7a817d8871af", + "1 | Keys [7/11] : 147b5a945ffa966314248b6851a38b3adace37", + "1 | Keys [8/11] : 5c2ead7fa1f7b43bec9516a39c5882e0067d90", + "1 | Keys [9/11] : fb98eb1c8b294f7a276db355e7f8628a3db9c6", + "1 | Keys [10/11] : 8e264a90bc9990c10bcd042c697ba620c10984", + "1 | Keys [11/11] : 4714", + "2 | Proof [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "2 | Proof [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "2 | Proof [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "2 | Proof [4/4] : b986de1760cbf4", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", - "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", - "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", - "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", - "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", - "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", - "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", - "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", - "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", - "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", - "1 | Keys [11/11] : 90bc", - "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "2 | Proof [4/4] : 683807d2d3ef09", + "1 | Keys [1/11] : 62f06e942308be969cbdca7d0dfd22cfa52e5a", + "1 | Keys [2/11] : 047336cb85f820befeb6b706d714423e26593c", + "1 | Keys [3/11] : a571981fd54040d4f804f128f68d0cb64f1764", + "1 | Keys [4/11] : 4ad137303dbebb32a66e86875f2310f996c459", + "1 | Keys [5/11] : c1b4015c52f35d3ab59b9ff8cb1d7fa161fc05", + "1 | Keys [6/11] : 1c4b21e0177cb4aeeceea97ecc7a817d8871af", + "1 | Keys [7/11] : 147b5a945ffa966314248b6851a38b3adace37", + "1 | Keys [8/11] : 5c2ead7fa1f7b43bec9516a39c5882e0067d90", + "1 | Keys [9/11] : fb98eb1c8b294f7a276db355e7f8628a3db9c6", + "1 | Keys [10/11] : 8e264a90bc9990c10bcd042c697ba620c10984", + "1 | Keys [11/11] : 4714", + "2 | Proof [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "2 | Proof [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "2 | Proof [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "2 | Proof [4/4] : b986de1760cbf4", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 201, + "index": 206, "name": "Session_Purge_keys", - "blob": "0801d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4810,18 +4953,35 @@ ] }, { - "index": 202, + "index": 207, "name": "Session_Purge_keys", - "blob": "0801d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ + "0 | Session : Purge keys" + ], + "output_expert": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.000055555555" + "1 | Chain : Kusama", + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 208, + "name": "Session_Purge_keys", + "blob": "0801d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Session : Purge keys", + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 2339", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4829,18 +4989,20 @@ ] }, { - "index": 203, + "index": 209, "name": "Session_Purge_keys", - "blob": "0801d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.000000000987" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4848,9 +5010,9 @@ ] }, { - "index": 204, + "index": 210, "name": "Session_Purge_keys", - "blob": "0801d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -4869,58 +5031,68 @@ ] }, { - "index": 205, - "name": "Session_Purge_keys", - "blob": "0801d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 211, + "name": "Grandpa_Note_stalled", + "blob": "0a027b000000b3e30100d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Session : Purge keys" + "0 | Grandpa : Note stalled", + "1 | Delay : 123", + "2 | Best finalized block number : 123827", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Grandpa : Note stalled", + "1 | Delay : 123", + "2 | Best finalized block number : 123827", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 206, + "index": 212, "name": "Grandpa_Note_stalled", - "blob": "0a0200000000ff030000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a0200000000ac350000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", "1 | Delay : 0", - "2 | Best finalized block number : 1023" + "2 | Best finalized block number : 13740", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Grandpa : Note stalled", "1 | Delay : 0", - "2 | Best finalized block number : 1023", + "2 | Best finalized block number : 13740", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 207, + "index": 213, "name": "Grandpa_Note_stalled", - "blob": "0a02250100007b000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a02ac3500007b000000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 293", + "1 | Delay : 13740", "2 | Best finalized block number : 123" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 293", + "1 | Delay : 13740", "2 | Best finalized block number : 123", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4928,22 +5100,24 @@ ] }, { - "index": 208, + "index": 214, "name": "Grandpa_Note_stalled", - "blob": "0a02b3e30100b3e30100d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a0225010000b3e30100d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123827", + "1 | Delay : 293", "2 | Best finalized block number : 123827", - "3 | Tip : KSM 0.00123456789" + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123827", + "1 | Delay : 293", "2 | Best finalized block number : 123827", "3 | Chain : Kusama", "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4951,24 +5125,22 @@ ] }, { - "index": 209, + "index": 215, "name": "Grandpa_Note_stalled", - "blob": "0a027b00000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a02ac350000ff030000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123", - "2 | Best finalized block number : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Delay : 13740", + "2 | Best finalized block number : 1023", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123", - "2 | Best finalized block number : 0", + "1 | Delay : 13740", + "2 | Best finalized block number : 1023", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4976,41 +5148,20 @@ ] }, { - "index": 210, - "name": "Grandpa_Note_stalled", - "blob": "0a0225010000ff030000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Grandpa : Note stalled", - "1 | Delay : 293", - "2 | Best finalized block number : 1023" - ], - "output_expert": [ - "0 | Grandpa : Note stalled", - "1 | Delay : 293", - "2 | Best finalized block number : 1023", - "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 211, + "index": 216, "name": "Democracy_Second", - "blob": "0d01f1990916d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01b62896308cd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 9852", - "2 | Seconds upper bound : 1410" + "1 | Proposal : 203786797", + "2 | Seconds upper bound : 35" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 9852", - "2 | Seconds upper bound : 1410", + "1 | Proposal : 203786797", + "2 | Seconds upper bound : 35", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5018,20 +5169,20 @@ ] }, { - "index": 212, + "index": 217, "name": "Democracy_Second", - "blob": "0d01091696fb6477d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d010dfd0dfdd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 1410", - "2 | Seconds upper bound : 500776677", + "1 | Proposal : 16195", + "2 | Seconds upper bound : 16195", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 1410", - "2 | Seconds upper bound : 500776677", + "1 | Proposal : 16195", + "2 | Seconds upper bound : 16195", "3 | Chain : Kusama", "4 | Nonce : 2339", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -5043,47 +5194,43 @@ ] }, { - "index": 213, + "index": 218, "name": "Democracy_Second", - "blob": "0d0196fb64770916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01199e0dfdd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 500776677", - "2 | Seconds upper bound : 1410", - "3 | Tip : KSM 0.000055555555" + "1 | Proposal : 10118", + "2 | Seconds upper bound : 16195" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 500776677", - "2 | Seconds upper bound : 1410", + "1 | Proposal : 10118", + "2 | Seconds upper bound : 16195", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 214, + "index": 219, "name": "Democracy_Second", - "blob": "0d01dcdcd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01b6289630b6289630d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 55", - "2 | Seconds upper bound : 55", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Proposal : 203786797", + "2 | Seconds upper bound : 203786797", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 55", - "2 | Seconds upper bound : 55", + "1 | Proposal : 203786797", + "2 | Seconds upper bound : 203786797", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5091,24 +5238,22 @@ ] }, { - "index": 215, + "index": 220, "name": "Democracy_Second", - "blob": "0d0196fb6477dcd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01199eb6289630d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 500776677", - "2 | Seconds upper bound : 55", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Proposal : 10118", + "2 | Seconds upper bound : 203786797", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 500776677", - "2 | Seconds upper bound : 55", + "1 | Proposal : 10118", + "2 | Seconds upper bound : 203786797", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5116,17 +5261,17 @@ ] }, { - "index": 216, + "index": 221, "name": "Democracy_Emergency_cancel", - "blob": "0d0301000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d03b3e30100d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1", + "1 | Ref index : 123827", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1", + "1 | Ref index : 123827", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", @@ -5137,20 +5282,20 @@ ] }, { - "index": 217, + "index": 222, "name": "Democracy_Emergency_cancel", - "blob": "0d037b000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0300000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123", + "1 | Ref index : 0", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123", + "1 | Ref index : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -5160,20 +5305,20 @@ ] }, { - "index": 218, + "index": 223, "name": "Democracy_Emergency_cancel", - "blob": "0d03b3e30100d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d03ff030000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123827", - "2 | Tip : KSM 0.000055555555" + "1 | Ref index : 1023", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123827", + "1 | Ref index : 1023", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5181,20 +5326,20 @@ ] }, { - "index": 219, + "index": 224, "name": "Democracy_Emergency_cancel", - "blob": "0d037b000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d03ac350000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123", - "2 | Tip : KSM 0.000000000987" + "1 | Ref index : 13740", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123", + "1 | Ref index : 13740", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5202,19 +5347,19 @@ ] }, { - "index": 220, + "index": 225, "name": "Democracy_Emergency_cancel", - "blob": "0d0325010000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0300000000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 293", + "1 | Ref index : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 293", + "1 | Ref index : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -5223,20 +5368,20 @@ ] }, { - "index": 221, + "index": 226, "name": "Democracy_Cancel_referendum", - "blob": "0d090916d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d098cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410", + "1 | Ref index : 35", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410", + "1 | Ref index : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -5246,58 +5391,64 @@ ] }, { - "index": 222, + "index": 227, "name": "Democracy_Cancel_referendum", - "blob": "0d090916d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d09b6289630d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410" + "1 | Ref index : 203786797", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410", + "1 | Ref index : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 223, + "index": 228, "name": "Democracy_Cancel_referendum", - "blob": "0d090916d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d090dfdd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410" + "1 | Ref index : 16195", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 1410", + "1 | Ref index : 16195", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 224, + "index": 229, "name": "Democracy_Cancel_referendum", - "blob": "0d0996fb6477d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d090dfdd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 500776677", - "2 | Tip : KSM 0.00123456789" + "1 | Ref index : 16195", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 500776677", + "1 | Ref index : 16195", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5305,20 +5456,20 @@ ] }, { - "index": 225, + "index": 230, "name": "Democracy_Cancel_referendum", - "blob": "0d09f199d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d09b6289630d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 9852", - "2 | Tip : KSM 5.552342355555" + "1 | Ref index : 203786797", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 9852", + "1 | Ref index : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5326,54 +5477,81 @@ ] }, { - "index": 226, + "index": 231, "name": "Democracy_Cancel_queued", - "blob": "0d0a7b000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0ab3e30100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 123" + "1 | Which : 123827", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 123", + "1 | Which : 123827", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] }, { - "index": 227, + "index": 232, "name": "Democracy_Cancel_queued", - "blob": "0d0a25010000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0aff030000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 293" + "1 | Which : 1023", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", + "1 | Which : 1023", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 228, + "index": 233, + "name": "Democracy_Cancel_queued", + "blob": "0d0a25010000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Democracy : Cancel queued", + "1 | Which : 293", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Democracy : Cancel queued", + "1 | Which : 293", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 234, "name": "Democracy_Cancel_queued", - "blob": "0d0a7b000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a25010000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 123" + "1 | Which : 293" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 123", + "1 | Which : 293", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -5383,20 +5561,20 @@ ] }, { - "index": 229, + "index": 235, "name": "Democracy_Cancel_queued", - "blob": "0d0aff030000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a00000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | Which : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 1023", + "1 | Which : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5404,18 +5582,18 @@ ] }, { - "index": 230, - "name": "Democracy_Cancel_queued", - "blob": "0d0a25010000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 236, + "name": "Democracy_Undelegate", + "blob": "0d0cd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Cancel queued", - "1 | Which : 293" + "0 | Democracy : Undelegate", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Democracy : Cancel queued", - "1 | Which : 293", - "2 | Chain : Kusama", - "3 | Nonce : 50283", + "0 | Democracy : Undelegate", + "1 | Chain : Kusama", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5423,18 +5601,20 @@ ] }, { - "index": 231, + "index": 237, "name": "Democracy_Undelegate", - "blob": "0d0cd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 50283", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5442,9 +5622,9 @@ ] }, { - "index": 232, + "index": 238, "name": "Democracy_Undelegate", - "blob": "0d0cd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", "1 | Tip : KSM 0.000000000987" @@ -5452,7 +5632,7 @@ "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 0", "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -5461,18 +5641,18 @@ ] }, { - "index": 233, + "index": 239, "name": "Democracy_Undelegate", - "blob": "0d0cd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 1", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5480,20 +5660,18 @@ ] }, { - "index": 234, + "index": 240, "name": "Democracy_Undelegate", - "blob": "0d0cd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5501,37 +5679,35 @@ ] }, { - "index": 235, - "name": "Democracy_Undelegate", - "blob": "0d0cd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 241, + "name": "Democracy_Clear_public_proposals", + "blob": "0d0dd503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Undelegate", - "1 | Tip : KSM 0.00123456789" + "0 | Democracy : Clear public proposals" ], "output_expert": [ - "0 | Democracy : Undelegate", + "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 236, + "index": 242, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Tip : KSM 5.552342355555", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5539,30 +5715,26 @@ ] }, { - "index": 237, + "index": 243, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Clear public proposals", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Democracy : Clear public proposals" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 238, + "index": 244, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", "1 | Tip : KSM 0.000055555555" @@ -5570,7 +5742,7 @@ "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 100", + "2 | Nonce : 2339", "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -5579,35 +5751,18 @@ ] }, { - "index": 239, - "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Democracy : Clear public proposals" - ], - "output_expert": [ - "0 | Democracy : Clear public proposals", - "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 240, + "index": 245, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5615,26 +5770,26 @@ ] }, { - "index": 241, + "index": 246, "name": "Democracy_Note_preimage", - "blob": "0d0e010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", - "2 | Tip : KSM 0.00123456789" + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5642,32 +5797,32 @@ ] }, { - "index": 242, + "index": 247, "name": "Democracy_Note_preimage", - "blob": "0d0e0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5675,59 +5830,49 @@ ] }, { - "index": 243, + "index": 248, "name": "Democracy_Note_preimage", - "blob": "0d0e0101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e8086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", - "2 | Tip : KSM 0.00123456789" + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 244, + "index": 249, "name": "Democracy_Note_preimage", - "blob": "0d0e0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", - "2 | Tip : KSM 5.552342355555" + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5735,28 +5880,32 @@ ] }, { - "index": 245, + "index": 250, "name": "Democracy_Note_preimage", - "blob": "0d0e0101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e01025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5764,63 +5913,59 @@ ] }, { - "index": 246, + "index": 251, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f01028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909" + "1 | Encoded proposal [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Encoded proposal [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Encoded proposal [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Encoded proposal [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Encoded proposal [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Encoded proposal [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Encoded proposal [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Encoded proposal [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Encoded proposal [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Encoded proposal [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Encoded proposal [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Encoded proposal [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Encoded proposal [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Encoded proposal [7/7] : 317d6ee59e6d26dfa7fc9736abd1", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 247, + "index": 252, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5828,26 +5973,22 @@ ] }, { - "index": 248, + "index": 253, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f01013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f8086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", - "2 | Tip : KSM 5.552342355555" + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5855,28 +5996,32 @@ ] }, { - "index": 249, + "index": 254, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f01013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f01025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5884,34 +6029,26 @@ ] }, { - "index": 250, + "index": 255, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5919,34 +6056,32 @@ ] }, { - "index": 251, + "index": 256, "name": "Democracy_Note_imminent_preimage", - "blob": "0d1001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d100102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5954,32 +6089,28 @@ ] }, { - "index": 252, + "index": 257, "name": "Democracy_Note_imminent_preimage", - "blob": "0d1001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d10010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5987,32 +6118,26 @@ ] }, { - "index": 253, + "index": 258, "name": "Democracy_Note_imminent_preimage", - "blob": "0d100102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d10010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Encoded proposal [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Encoded proposal [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Encoded proposal [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Encoded proposal [4/4] : 244ccf5c5cf935", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Encoded proposal [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Encoded proposal [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Encoded proposal [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Encoded proposal [4/4] : 244ccf5c5cf935", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -6022,22 +6147,26 @@ ] }, { - "index": 254, + "index": 259, "name": "Democracy_Note_imminent_preimage", - "blob": "0d1080c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d10010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Encoded proposal [2/2] : 57257aca85a53c1f005b0f70f4", - "2 | Tip : KSM 5.552342355555" + "1 | Encoded proposal [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Encoded proposal [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Encoded proposal [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Encoded proposal [4/4] : 244ccf5c5cf935", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Encoded proposal [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Encoded proposal [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Encoded proposal [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Encoded proposal [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Encoded proposal [4/4] : 244ccf5c5cf935", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6045,26 +6174,32 @@ ] }, { - "index": 255, + "index": 260, "name": "Democracy_Note_imminent_preimage", - "blob": "0d10010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d100102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "1 | Encoded proposal [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Encoded proposal [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Encoded proposal [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Encoded proposal [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Encoded proposal [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Encoded proposal [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Encoded proposal [7/7] : 93343efd5c04534730aa76d8330f", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -6074,84 +6209,74 @@ ] }, { - "index": 256, + "index": 261, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d110101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d11010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Encoded proposal [4/4] : 6ef8294aecb62b", + "1 | Encoded proposal [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Encoded proposal [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Encoded proposal [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Encoded proposal [4/4] : b986de1760cbf4", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 257, + "index": 262, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d1101013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d11806191dc78bdcad9ac5d45618e4fd83cb4853e2e8a47421e257b817cd51fc186d7d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f" + "1 | Encoded proposal [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "1 | Encoded proposal [2/2] : 8a47421e257b817cd51fc186d7", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", + "1 | Encoded proposal [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "1 | Encoded proposal [2/2] : 8a47421e257b817cd51fc186d7", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 258, + "index": 263, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d110102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d118086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Encoded proposal [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Encoded proposal [2/2] : 30846f2c1805fdb80157f177f5", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6159,22 +6284,28 @@ ] }, { - "index": 259, + "index": 264, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d1180b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d110101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Encoded proposal [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Encoded proposal [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Encoded proposal [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Encoded proposal [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Encoded proposal [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Encoded proposal [4/4] : 357008265b2f65", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6182,26 +6313,34 @@ ] }, { - "index": 260, + "index": 265, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d11010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1101025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "1 | Encoded proposal [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Encoded proposal [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Encoded proposal [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Encoded proposal [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Encoded proposal [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Encoded proposal [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Encoded proposal [7/7] : 162f12115b630d72d559609e6688", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6209,62 +6348,58 @@ ] }, { - "index": 261, + "index": 266, "name": "Democracy_Remove_vote", - "blob": "0d14ff030000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1400000000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 0" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", + "1 | Index : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 262, + "index": 267, "name": "Democracy_Remove_vote", - "blob": "0d14ff030000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14b3e30100d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 123827" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", + "1 | Index : 123827", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 263, + "index": 268, "name": "Democracy_Remove_vote", - "blob": "0d14ac350000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d147b000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 13740", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 123", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 13740", + "1 | Index : 123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6272,19 +6407,19 @@ ] }, { - "index": 264, + "index": 269, "name": "Democracy_Remove_vote", - "blob": "0d14ac350000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1425010000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 13740", + "1 | Index : 293", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 13740", + "1 | Index : 293", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6293,20 +6428,20 @@ ] }, { - "index": 265, + "index": 270, "name": "Democracy_Remove_vote", - "blob": "0d14ff030000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1425010000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 293", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 1023", + "1 | Index : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6314,20 +6449,22 @@ ] }, { - "index": 266, + "index": 271, "name": "Democracy_Cancel_proposal", - "blob": "0d1896fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d18199ed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 500776677", - "2 | Tip : KSM 5.552342355555" + "1 | Prop index : 10118", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 500776677", + "1 | Prop index : 10118", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6335,41 +6472,41 @@ ] }, { - "index": 267, + "index": 272, "name": "Democracy_Cancel_proposal", - "blob": "0d18dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d18199ed503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 55", - "2 | Tip : KSM 0.000055555555" + "1 | Prop index : 10118" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 55", + "1 | Prop index : 10118", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 268, + "index": 273, "name": "Democracy_Cancel_proposal", - "blob": "0d180916d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d18b6289630d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 1410", - "2 | Tip : KSM 0.00123456789" + "1 | Prop index : 203786797", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 1410", + "1 | Prop index : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6377,20 +6514,20 @@ ] }, { - "index": 269, + "index": 274, "name": "Democracy_Cancel_proposal", - "blob": "0d180916d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d18b6289630d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 1410", - "2 | Tip : KSM 0.000000000987" + "1 | Prop index : 203786797", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 1410", + "1 | Prop index : 203786797", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6398,22 +6535,20 @@ ] }, { - "index": 270, + "index": 275, "name": "Democracy_Cancel_proposal", - "blob": "0d1896fb6477d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d180dfdd50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 500776677", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Prop index : 16195", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 500776677", + "1 | Prop index : 16195", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6421,51 +6556,55 @@ ] }, { - "index": 271, + "index": 276, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe091601d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe8c01d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", - "3 | Approve : True" + "2 | Index : 35", + "3 | Approve : True", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", + "2 | Index : 35", "3 | Approve : True", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 272, + "index": 277, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe091600d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb628963001d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", - "3 | Approve : False", - "4 | Tip : KSM 0.000055555555" + "2 | Index : 203786797", + "3 | Approve : True", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", - "3 | Approve : False", + "2 | Index : 203786797", + "3 | Approve : True", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.000055555555", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6473,42 +6612,40 @@ ] }, { - "index": 273, + "index": 278, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafedc00d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb628963000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 55", - "3 | Approve : False", - "4 | Tip : KSM 0.00123456789" + "2 | Index : 203786797", + "3 | Approve : False" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 55", + "2 | Index : 203786797", "3 | Approve : False", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 274, + "index": 279, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb647701d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe8c00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Approve : True", + "2 | Index : 35", + "3 | Approve : False", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], @@ -6516,10 +6653,10 @@ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Approve : True", + "2 | Index : 35", + "3 | Approve : False", "4 | Chain : Kusama", - "5 | Nonce : 100", + "5 | Nonce : 50283", "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", @@ -6529,25 +6666,25 @@ ] }, { - "index": 275, + "index": 280, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef19901d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb628963000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Approve : True", + "2 | Index : 203786797", + "3 | Approve : False", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Approve : True", + "2 | Index : 203786797", + "3 | Approve : False", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 2339", "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -6556,59 +6693,57 @@ ] }, { - "index": 276, + "index": 281, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb64779982dcd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb628963065a20dfdd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Proposal weight bound : 8358", - "4 | Length bound : 55", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789" + "2 | Index : 203786797", + "3 | Proposal weight bound : 10393", + "4 | Length bound : 16195" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Proposal weight bound : 8358", - "4 | Length bound : 55", + "2 | Index : 203786797", + "3 | Proposal weight bound : 10393", + "4 | Length bound : 16195", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 100", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 277, + "index": 282, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe0916a12396fb6477d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe8ca48cd5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", - "3 | Proposal weight bound : 2280", - "4 | Length bound : 500776677", - "5 | Tip : KSM 0.000055555555" + "2 | Index : 35", + "3 | Proposal weight bound : 41", + "4 | Length bound : 35", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 1410", - "3 | Proposal weight bound : 2280", - "4 | Length bound : 500776677", + "2 | Index : 35", + "3 | Proposal weight bound : 41", + "4 | Length bound : 35", "5 | Chain : Kusama", - "6 | Nonce : 100", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 0", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6616,28 +6751,28 @@ ] }, { - "index": 278, + "index": 283, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb647799820916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb62896300fd3f106f0882873199ed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Proposal weight bound : 8358", - "4 | Length bound : 1410", - "5 | Tip : KSM 0.000055555555" + "2 | Index : 203786797", + "3 | Proposal weight bound : 32414190929375699", + "4 | Length bound : 10118", + "5 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 500776677", - "3 | Proposal weight bound : 8358", - "4 | Length bound : 1410", + "2 | Index : 203786797", + "3 | Proposal weight bound : 32414190929375699", + "4 | Length bound : 10118", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 1", + "7 | Tip : KSM 0.000000000987", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6645,28 +6780,30 @@ ] }, { - "index": 279, + "index": 284, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef1990f51c48e78ce2aca96fb6477d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe8ca4199ed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Proposal weight bound : 56905011569804369", - "4 | Length bound : 500776677", - "5 | Tip : KSM 0.000000000987" + "2 | Index : 35", + "3 | Proposal weight bound : 41", + "4 | Length bound : 10118", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Proposal weight bound : 56905011569804369", - "4 | Length bound : 500776677", + "2 | Index : 35", + "3 | Proposal weight bound : 41", + "4 | Length bound : 10118", "5 | Chain : Kusama", "6 | Nonce : 0", - "7 | Tip : KSM 0.000000000987", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6674,28 +6811,28 @@ ] }, { - "index": 280, + "index": 285, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef1990f19a63a17f1e1cef199d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe199e6a3c2647b6289630d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Proposal weight bound : 58232270795482649", - "4 | Length bound : 9852", - "5 | Tip : KSM 0.000055555555" + "2 | Index : 10118", + "3 | Proposal weight bound : 298422042", + "4 | Length bound : 203786797", + "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 9852", - "3 | Proposal weight bound : 58232270795482649", - "4 | Length bound : 9852", + "2 | Index : 10118", + "3 | Proposal weight bound : 298422042", + "4 | Length bound : 203786797", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 100", + "7 | Tip : KSM 5.552342355555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6703,9 +6840,9 @@ ] }, { - "index": 281, + "index": 286, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6718,7 +6855,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -6728,22 +6865,24 @@ ] }, { - "index": 282, + "index": 287, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6751,22 +6890,22 @@ ] }, { - "index": 283, + "index": 288, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6774,24 +6913,22 @@ ] }, { - "index": 284, + "index": 289, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6799,22 +6936,22 @@ ] }, { - "index": 285, + "index": 290, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6822,14 +6959,14 @@ ] }, { - "index": 286, + "index": 291, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", @@ -6837,7 +6974,7 @@ "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6845,9 +6982,9 @@ ] }, { - "index": 287, + "index": 292, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6859,7 +6996,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6868,9 +7005,9 @@ ] }, { - "index": 288, + "index": 293, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6883,7 +7020,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -6893,49 +7030,43 @@ ] }, { - "index": 289, + "index": 294, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 290, + "index": 295, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6943,18 +7074,20 @@ ] }, { - "index": 291, + "index": 296, "name": "Phragmenelection_Remove_voter", - "blob": "1001d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6962,39 +7095,35 @@ ] }, { - "index": 292, + "index": 297, "name": "Phragmenelection_Remove_voter", - "blob": "1001d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 5.552342355555" + "0 | Phragmenelection : Remove voter" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 293, + "index": 298, "name": "Phragmenelection_Remove_voter", - "blob": "1001d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7002,18 +7131,18 @@ ] }, { - "index": 294, + "index": 299, "name": "Phragmenelection_Remove_voter", - "blob": "1001d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 0", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7021,36 +7150,38 @@ ] }, { - "index": 295, + "index": 300, "name": "Phragmenelection_Remove_voter", - "blob": "1001d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Phragmenelection : Remove voter" + "0 | Phragmenelection : Remove voter", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 296, + "index": 301, "name": "Phragmenelection_Submit_candidacy", - "blob": "1002dcd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002199ed503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55", + "1 | Candidate count : 10118", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55", + "1 | Candidate count : 10118", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7059,20 +7190,22 @@ ] }, { - "index": 297, + "index": 302, "name": "Phragmenelection_Submit_candidacy", - "blob": "10020916d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002b6289630d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 1410", - "2 | Tip : KSM 5.552342355555" + "1 | Candidate count : 203786797", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 1410", + "1 | Candidate count : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7080,20 +7213,20 @@ ] }, { - "index": 298, + "index": 303, "name": "Phragmenelection_Submit_candidacy", - "blob": "100296fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002b6289630d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 500776677", - "2 | Tip : KSM 5.552342355555" + "1 | Candidate count : 203786797", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 500776677", + "1 | Candidate count : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7101,89 +7234,64 @@ ] }, { - "index": 299, + "index": 304, "name": "Phragmenelection_Submit_candidacy", - "blob": "1002dcd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002199ed5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55", - "2 | Tip : KSM 0.00123456789" + "1 | Candidate count : 10118" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55", + "1 | Candidate count : 10118", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 300, + "index": 305, "name": "Phragmenelection_Submit_candidacy", - "blob": "1002dcd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002b6289630d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55" + "1 | Candidate count : 203786797", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 55", + "1 | Candidate count : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 301, + "index": 306, "name": "Phragmenelection_Remove_member", - "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Has replacement : False" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Has replacement : False", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | Has replacement : False", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 302, - "name": "Phragmenelection_Remove_member", - "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Has replacement : True", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" - ], - "output_expert": [ - "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Has replacement : True", - "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7191,47 +7299,49 @@ ] }, { - "index": 303, + "index": 307, "name": "Phragmenelection_Remove_member", - "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Has replacement : True" + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Has replacement : False", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", - "2 | Has replacement : True", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Has replacement : False", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 304, + "index": 308, "name": "Phragmenelection_Remove_member", - "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | Has replacement : False", - "3 | Tip : KSM 0.00123456789" + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | Has replacement : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7239,24 +7349,24 @@ ] }, { - "index": 305, + "index": 309, "name": "Phragmenelection_Remove_member", - "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | Has replacement : True", - "3 | Tip : KSM 0.000000000987" + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Who [2/2] : G1ft7ngXT", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", "2 | Has replacement : True", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7264,45 +7374,45 @@ ] }, { - "index": 306, - "name": "Phragmenelection_Clean_defunct_voters", - "blob": "10059d1c00009d1c0000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 310, + "name": "Phragmenelection_Remove_member", + "blob": "1004005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 7325", - "2 | Num defunct : 7325", - "3 | Tip : KSM 0.00123456789" + "0 | Phragmenelection : Remove member", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Has replacement : False" ], "output_expert": [ - "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 7325", - "2 | Num defunct : 7325", + "0 | Phragmenelection : Remove member", + "1 | Who [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Who [2/2] : bwPWshbc6", + "2 | Has replacement : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 307, + "index": 311, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "10050000000034300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1005f701000000000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 0", - "2 | Num defunct : 12340", - "3 | Tip : KSM 0.00123456789" + "1 | Num voters : 503", + "2 | Num defunct : 0", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 0", - "2 | Num defunct : 12340", + "1 | Num voters : 503", + "2 | Num defunct : 0", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7310,20 +7420,20 @@ ] }, { - "index": 308, + "index": 312, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "10050000000034300000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "100500000000f7010000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 12340" + "2 | Num defunct : 503" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 12340", + "2 | Num defunct : 503", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7331,22 +7441,22 @@ ] }, { - "index": 309, + "index": 313, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "1005f701000000000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10053430000000000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 503", + "1 | Num voters : 12340", "2 | Num defunct : 0", - "3 | Tip : KSM 0.000000000987" + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 503", + "1 | Num voters : 12340", "2 | Num defunct : 0", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7354,24 +7464,22 @@ ] }, { - "index": 310, + "index": 314, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "10053430000034300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10053430000034300000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 12340", "2 | Num defunct : 12340", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 12340", "2 | Num defunct : 12340", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7379,44 +7487,44 @@ ] }, { - "index": 311, - "name": "Technicalmembership_Add_member", - "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 315, + "name": "Phragmenelection_Clean_defunct_voters", + "blob": "1005f701000000000000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "0 | Phragmenelection : Clean defunct voters", + "1 | Num voters : 503", + "2 | Num defunct : 0", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Phragmenelection : Clean defunct voters", + "1 | Num voters : 503", + "2 | Num defunct : 0", + "3 | Chain : Kusama", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 312, + "index": 316, "name": "Technicalmembership_Add_member", - "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1100dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Who [2/2] : W2YqpsEiW", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Who [2/2] : W2YqpsEiW", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7425,19 +7533,19 @@ ] }, { - "index": 313, + "index": 317, "name": "Technicalmembership_Add_member", - "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1100e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", @@ -7448,22 +7556,22 @@ ] }, { - "index": 314, + "index": 318, "name": "Technicalmembership_Add_member", - "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "110064d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7471,45 +7579,43 @@ ] }, { - "index": 315, + "index": 319, "name": "Technicalmembership_Add_member", - "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1100f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 316, - "name": "Technicalmembership_Remove_member", - "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 320, + "name": "Technicalmembership_Add_member", + "blob": "1100e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "0 | Technicalmembership : Add member", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "0 | Technicalmembership : Add member", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7517,24 +7623,22 @@ ] }, { - "index": 317, + "index": 321, "name": "Technicalmembership_Remove_member", - "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1101e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7542,22 +7646,22 @@ ] }, { - "index": 318, + "index": 322, "name": "Technicalmembership_Remove_member", - "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "110164d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7565,22 +7669,22 @@ ] }, { - "index": 319, + "index": 323, "name": "Technicalmembership_Remove_member", - "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7588,21 +7692,21 @@ ] }, { - "index": 320, + "index": 324, "name": "Technicalmembership_Remove_member", - "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1101e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7611,24 +7715,22 @@ ] }, { - "index": 321, - "name": "Technicalmembership_Swap_member", - "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 325, + "name": "Technicalmembership_Remove_member", + "blob": "1101f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn" + "0 | Technicalmembership : Remove member", + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", - "3 | Chain : Kusama", - "4 | Nonce : 100", + "0 | Technicalmembership : Remove member", + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7636,28 +7738,26 @@ ] }, { - "index": 322, + "index": 326, "name": "Technicalmembership_Swap_member", - "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff09301364d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Remove [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Remove [2/2] : r9TQhU9HW", + "2 | Add [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Add [2/2] : TZdAHD41C", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", + "1 | Remove [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Remove [2/2] : r9TQhU9HW", + "2 | Add [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Add [2/2] : TZdAHD41C", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7665,25 +7765,25 @@ ] }, { - "index": 323, + "index": 327, "name": "Technicalmembership_Swap_member", - "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1102e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", + "1 | Remove [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Remove [2/2] : a8GkEuTYa", + "2 | Add [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Add [2/2] : 6JtYYhKnN", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", + "1 | Remove [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Remove [2/2] : a8GkEuTYa", + "2 | Add [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Add [2/2] : 6JtYYhKnN", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -7692,55 +7792,78 @@ ] }, { - "index": 324, + "index": 328, "name": "Technicalmembership_Swap_member", - "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1102f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Remove [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Remove [2/2] : 6JtYYhKnN", + "2 | Add [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Add [2/2] : W2YqpsEiW" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", + "1 | Remove [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Remove [2/2] : 6JtYYhKnN", + "2 | Add [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Add [2/2] : W2YqpsEiW", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 325, + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 329, "name": "Technicalmembership_Swap_member", - "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1102e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", - "3 | Tip : KSM 5.552342355555" + "1 | Remove [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Remove [2/2] : 3Ph4miYfg", + "2 | Add [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Add [2/2] : 6JtYYhKnN", + "3 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Technicalmembership : Swap member", + "1 | Remove [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Remove [2/2] : 3Ph4miYfg", + "2 | Add [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Add [2/2] : 6JtYYhKnN", + "3 | Chain : Kusama", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 330, + "name": "Technicalmembership_Swap_member", + "blob": "1102e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855364d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Technicalmembership : Swap member", + "1 | Remove [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Remove [2/2] : a8GkEuTYa", + "2 | Add [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Add [2/2] : TZdAHD41C", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Remove [2/2] : DyGtAWNbn", - "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Add [2/2] : DyGtAWNbn", + "1 | Remove [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Remove [2/2] : a8GkEuTYa", + "2 | Add [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Add [2/2] : TZdAHD41C", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7748,42 +7871,22 @@ ] }, { - "index": 326, + "index": 331, "name": "Technicalmembership_Reset_members", - "blob": "11031838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c504d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11030436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567dd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "1 | Members [2/12] : cvQWPpFkm", - "1 | Members [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "1 | Members [4/12] : CQAFseSbM", - "1 | Members [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "1 | Members [6/12] : fYV5bKw79", - "1 | Members [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "1 | Members [8/12] : G9LDWNMg4", - "1 | Members [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "1 | Members [10/12] : VGQhB9Yx2", - "1 | Members [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "1 | Members [12/12] : BwJyoET7z", - "2 | Tip : KSM 0.00123456789" + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "1 | Members [2/12] : cvQWPpFkm", - "1 | Members [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "1 | Members [4/12] : CQAFseSbM", - "1 | Members [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "1 | Members [6/12] : fYV5bKw79", - "1 | Members [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "1 | Members [8/12] : G9LDWNMg4", - "1 | Members [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "1 | Members [10/12] : VGQhB9Yx2", - "1 | Members [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "1 | Members [12/12] : BwJyoET7z", + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7791,48 +7894,42 @@ ] }, { - "index": 327, + "index": 332, "name": "Technicalmembership_Reset_members", - "blob": "11031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e272d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "110318accce8ad1521b8c7b1eb819dffae2d67d337c3e692c3b406f2c2d84c139f44234a9bd91885a9678e191258e544f1933cc96ce3bdaae2cd4036a3477595ec8b26c644d49c3960a5d23779154cf4689195b9e021c25102cf43d0dd492ccb7958549467e2be236bbbc93b5a17d53bfaa0de8b5702890c55202b367a2a0e0daf4057ae994574ab2dae2b5cfba89b00f82fa8d5286298ee01a4bb5c9eba7a1292e334765e933d854a008c0163d16bdb271c3beb68d805a65873f366ad615e342ef217d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "1 | Members [2/14] : Wdk6br5YQ", - "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "1 | Members [4/14] : BmoqLJxyA", - "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "1 | Members [6/14] : kVGQ3xjtt", - "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "1 | Members [8/14] : EjcU4JCyR", - "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "1 | Members [10/14] : KAv6rp1cu", - "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "1 | Members [12/14] : qd5iDUNuG", - "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "1 | Members [14/14] : wnihdWnXG", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Members [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "1 | Members [2/12] : j9choLBsj", + "1 | Members [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "1 | Members [4/12] : fprRgj1tm", + "1 | Members [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "1 | Members [6/12] : 7hyKscg4c", + "1 | Members [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "1 | Members [8/12] : m243DVkbB", + "1 | Members [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "1 | Members [10/12] : 7oHsh87Eh", + "1 | Members [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "1 | Members [12/12] : umhUSaEsE", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "1 | Members [2/14] : Wdk6br5YQ", - "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "1 | Members [4/14] : BmoqLJxyA", - "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "1 | Members [6/14] : kVGQ3xjtt", - "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "1 | Members [8/14] : EjcU4JCyR", - "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "1 | Members [10/14] : KAv6rp1cu", - "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "1 | Members [12/14] : qd5iDUNuG", - "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "1 | Members [14/14] : wnihdWnXG", + "1 | Members [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "1 | Members [2/12] : j9choLBsj", + "1 | Members [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "1 | Members [4/12] : fprRgj1tm", + "1 | Members [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "1 | Members [6/12] : 7hyKscg4c", + "1 | Members [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "1 | Members [8/12] : m243DVkbB", + "1 | Members [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "1 | Members [10/12] : 7oHsh87Eh", + "1 | Members [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "1 | Members [12/12] : umhUSaEsE", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7840,22 +7937,22 @@ ] }, { - "index": 328, + "index": 333, "name": "Technicalmembership_Reset_members", - "blob": "11030482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231cd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11030436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567dd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "1 | Members [2/2] : 263hGYSem", - "2 | Tip : KSM 0.00123456789" + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "1 | Members [2/2] : 263hGYSem", + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7863,85 +7960,71 @@ ] }, { - "index": 329, + "index": 334, "name": "Technicalmembership_Reset_members", - "blob": "1103149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e928d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "110320fa3af7871365e948f100706328d29fd1650919312374fd36739f7fa2cbd5776ffab6b3d52a1fed35af76b193dba18888b5dc061b8669aaef5aedf023d778e04c2ee2bc3c6f99894d5ef453769a994f82c92c1164766c1f1d96dabdb8d14d70186274f9bf25953160ad701e028c4e50c7ad9428f29c990701f3d10d9059167f0a687661321e17136d48472139980b2972767c0742e113a19c011ff0df964104631404df8f201374f84c0d1dc978caaaff36b938a9579ea274c1bb9692b95f1b4fb808d4d9620b7da1621045867c2562c2d85defc32eca683cb6cc5f1c5ef563173abb6622f24713ee0a357bdbffd7ca0e128cd4d059088914a5f7f0f4b38ca551d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "1 | Members [2/10] : nhmBqN68n", - "1 | Members [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "1 | Members [4/10] : auzMC5Tst", - "1 | Members [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "1 | Members [6/10] : 2opmno4dh", - "1 | Members [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "1 | Members [8/10] : 4Bw4jugnm", - "1 | Members [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "1 | Members [10/10] : tKP64yEmd", - "2 | Tip : KSM 5.552342355555" + "1 | Members [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "1 | Members [2/16] : k9bSeYCF8", + "1 | Members [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "1 | Members [4/16] : 5u3cVQvnd", + "1 | Members [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "1 | Members [6/16] : s1hZP8aqq", + "1 | Members [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "1 | Members [8/16] : WevrZjNbX", + "1 | Members [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "1 | Members [10/16] : sB4Vm2kif", + "1 | Members [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "1 | Members [12/16] : E7exKQypF", + "1 | Members [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "1 | Members [14/16] : R6DhuEKcg", + "1 | Members [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "1 | Members [16/16] : ZSdnRrvnC" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "1 | Members [2/10] : nhmBqN68n", - "1 | Members [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "1 | Members [4/10] : auzMC5Tst", - "1 | Members [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "1 | Members [6/10] : 2opmno4dh", - "1 | Members [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "1 | Members [8/10] : 4Bw4jugnm", - "1 | Members [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "1 | Members [10/10] : tKP64yEmd", + "1 | Members [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "1 | Members [2/16] : k9bSeYCF8", + "1 | Members [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "1 | Members [4/16] : 5u3cVQvnd", + "1 | Members [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "1 | Members [6/16] : s1hZP8aqq", + "1 | Members [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "1 | Members [8/16] : WevrZjNbX", + "1 | Members [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "1 | Members [10/16] : sB4Vm2kif", + "1 | Members [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "1 | Members [12/16] : E7exKQypF", + "1 | Members [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "1 | Members [14/16] : R6DhuEKcg", + "1 | Members [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "1 | Members [16/16] : ZSdnRrvnC", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 330, + "index": 335, "name": "Technicalmembership_Reset_members", - "blob": "11031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e272d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11030436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567dd5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "1 | Members [2/14] : Wdk6br5YQ", - "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "1 | Members [4/14] : BmoqLJxyA", - "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "1 | Members [6/14] : kVGQ3xjtt", - "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "1 | Members [8/14] : EjcU4JCyR", - "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "1 | Members [10/14] : KAv6rp1cu", - "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "1 | Members [12/14] : qd5iDUNuG", - "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "1 | Members [14/14] : wnihdWnXG", - "2 | Tip : KSM 0.000055555555" + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "1 | Members [2/14] : Wdk6br5YQ", - "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "1 | Members [4/14] : BmoqLJxyA", - "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "1 | Members [6/14] : kVGQ3xjtt", - "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "1 | Members [8/14] : EjcU4JCyR", - "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "1 | Members [10/14] : KAv6rp1cu", - "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "1 | Members [12/14] : qd5iDUNuG", - "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "1 | Members [14/14] : wnihdWnXG", + "1 | Members [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Members [2/2] : yHrAH3Tir", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7949,22 +8032,22 @@ ] }, { - "index": 331, + "index": 336, "name": "Technicalmembership_Change_key", - "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1104e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7972,22 +8055,22 @@ ] }, { - "index": 332, + "index": 337, "name": "Technicalmembership_Change_key", - "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11049cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | New [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | New [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", + "1 | New [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | New [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7995,68 +8078,68 @@ ] }, { - "index": 333, + "index": 338, "name": "Technicalmembership_Change_key", - "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1104e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn" + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", + "1 | New [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | New [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 334, + "index": 339, "name": "Technicalmembership_Change_key", - "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1104f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | New [2/2] : 6JtYYhKnN" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", + "1 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | New [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 335, + "index": 340, "name": "Technicalmembership_Change_key", - "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | New [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | New [2/2] : DyGtAWNbn", + "1 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | New [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8064,43 +8147,45 @@ ] }, { - "index": 336, + "index": 341, "name": "Technicalmembership_Set_prime", - "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn" + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 337, + "index": 342, "name": "Technicalmembership_Set_prime", - "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1105e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8108,22 +8193,22 @@ ] }, { - "index": 338, + "index": 343, "name": "Technicalmembership_Set_prime", - "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1105e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8131,24 +8216,22 @@ ] }, { - "index": 339, + "index": 344, "name": "Technicalmembership_Set_prime", - "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1105e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8156,21 +8239,21 @@ ] }, { - "index": 340, + "index": 345, "name": "Technicalmembership_Set_prime", - "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1105e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -8179,18 +8262,18 @@ ] }, { - "index": 341, + "index": 346, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8198,9 +8281,9 @@ ] }, { - "index": 342, + "index": 347, "name": "Technicalmembership_Clear_prime", - "blob": "1106d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", "1 | Tip : KSM 5.552342355555" @@ -8217,9 +8300,9 @@ ] }, { - "index": 343, + "index": 348, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -8228,7 +8311,7 @@ "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 100", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", @@ -8238,30 +8321,26 @@ ] }, { - "index": 344, + "index": 349, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Clear prime", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Technicalmembership : Clear prime" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 345, + "index": 350, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -8270,7 +8349,7 @@ "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 50283", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", @@ -8280,24 +8359,24 @@ ] }, { - "index": 346, + "index": 351, "name": "Treasury_Propose_spend", - "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120000005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 0.00123456789" + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8305,24 +8384,24 @@ ] }, { - "index": 347, + "index": 352, "name": "Treasury_Propose_spend", - "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12006d0f005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 0.000055555555" + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Treasury : Propose spend", "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8330,24 +8409,26 @@ ] }, { - "index": 348, + "index": 353, "name": "Treasury_Propose_spend", - "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12000b63ce64c10c05005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 5.552342355555", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Amount : KSM 5.552342355555", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8355,26 +8436,24 @@ ] }, { - "index": 349, + "index": 354, "name": "Treasury_Propose_spend", - "blob": "120033158139ae28a3dfaac5fe1560a5e9e05c006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120000005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8382,23 +8461,21 @@ ] }, { - "index": 350, + "index": 355, "name": "Treasury_Propose_spend", - "blob": "120033158139ae28a3dfaac5fe1560a5e9e05c006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120000005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Amount : KSM 0.0", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", "4 | Nonce : 100", "5 | Tip : KSM 0.00123456789", @@ -8409,39 +8486,18 @@ ] }, { - "index": 351, - "name": "Treasury_Reject_proposal", - "blob": "1201dcd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Treasury : Reject proposal", - "1 | Proposal id : 55", - "2 | Tip : KSM 0.000055555555" - ], - "output_expert": [ - "0 | Treasury : Reject proposal", - "1 | Proposal id : 55", - "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 352, + "index": 356, "name": "Treasury_Reject_proposal", - "blob": "120196fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12010dfdd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 500776677" + "1 | Proposal id : 16195" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 500776677", + "1 | Proposal id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8449,20 +8505,20 @@ ] }, { - "index": 353, + "index": 357, "name": "Treasury_Reject_proposal", - "blob": "1201f199d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201b6289630d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 9852", - "2 | Tip : KSM 0.00123456789" + "1 | Proposal id : 203786797", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 9852", + "1 | Proposal id : 203786797", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8470,18 +8526,18 @@ ] }, { - "index": 354, + "index": 358, "name": "Treasury_Reject_proposal", - "blob": "1201f199d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201199ed5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 9852" + "1 | Proposal id : 10118" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 9852", + "1 | Proposal id : 10118", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8489,22 +8545,39 @@ ] }, { - "index": 355, + "index": 359, "name": "Treasury_Reject_proposal", - "blob": "1201dcd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201b6289630d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 55", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Proposal id : 203786797" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 55", + "1 | Proposal id : 203786797", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 360, + "name": "Treasury_Reject_proposal", + "blob": "1201199ed503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Treasury : Reject proposal", + "1 | Proposal id : 10118", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Treasury : Reject proposal", + "1 | Proposal id : 10118", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8512,38 +8585,40 @@ ] }, { - "index": 356, + "index": 361, "name": "Treasury_Approve_proposal", - "blob": "12020916d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12020dfdd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 1410" + "1 | Proposal id : 16195", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 1410", + "1 | Proposal id : 16195", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 357, + "index": 362, "name": "Treasury_Approve_proposal", - "blob": "1202dcd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12020dfdd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 55", + "1 | Proposal id : 16195", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 55", + "1 | Proposal id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -8552,39 +8627,41 @@ ] }, { - "index": 358, + "index": 363, "name": "Treasury_Approve_proposal", - "blob": "120296fb6477d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1202199ed5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 500776677" + "1 | Proposal id : 10118", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 500776677", + "1 | Proposal id : 10118", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 359, + "index": 364, "name": "Treasury_Approve_proposal", - "blob": "1202dcd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12020dfdd503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 55", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 16195", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 55", + "1 | Proposal id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8592,20 +8669,22 @@ ] }, { - "index": 360, + "index": 365, "name": "Treasury_Approve_proposal", - "blob": "1202f199d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1202b6289630d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 9852", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 203786797", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 9852", + "1 | Proposal id : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8613,32 +8692,30 @@ ] }, { - "index": 361, + "index": 366, "name": "Claims_Claim", - "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec2d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1300b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68cf502896c8be8c65546bcea2401ca0e0afc9fd255e01702b2fbde04c4b9206f791656aed3694a16d2caaceafe7840daaff65da38c24ed7fdb1b93c202022f32a46d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : cf502896c8be8c65546bcea2401ca0e0afc9fd", + "2 | Ethereum signature [2/4] : 255e01702b2fbde04c4b9206f791656aed3694", + "2 | Ethereum signature [3/4] : a16d2caaceafe7840daaff65da38c24ed7fdb1", + "2 | Ethereum signature [4/4] : b93c202022f32a46", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : cf502896c8be8c65546bcea2401ca0e0afc9fd", + "2 | Ethereum signature [2/4] : 255e01702b2fbde04c4b9206f791656aed3694", + "2 | Ethereum signature [3/4] : a16d2caaceafe7840daaff65da38c24ed7fdb1", + "2 | Ethereum signature [4/4] : b93c202022f32a46", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8646,30 +8723,32 @@ ] }, { - "index": 362, + "index": 367, "name": "Claims_Claim", - "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd352409b3b7b1b3aa04e2c570183557a41332083bac99b19cdb44e3342eac56a791377f34b31f3c68cb7ad977f4536025f970c251c8719db98e6427b91cecce665d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1300f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86445435e63508ac05e59c914219f64cdef5ca29b63593f4d99df4d966aff388cec8253661841733302556f6402ad571f5976763036f3abb25ce384c8bdce3bbcff30d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", - "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", - "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", - "2 | Ethereum signature [4/4] : e6427b91cecce665", - "3 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", - "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", - "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", - "2 | Ethereum signature [4/4] : e6427b91cecce665", + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8677,32 +8756,30 @@ ] }, { - "index": 363, + "index": 368, "name": "Claims_Claim", - "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f77d19ee138a35fe76fa98ea72909966acb4e55ea55c4a78ccb734509fca5c64a12e114ef7a0e87ffc8ed62703356c049c9615310deaf4a30a3a659e9bccdd4a203d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1300b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68458f70e0493adebb02ee0922cc89866f067a996cc446eb27734716fd76a02c05dbf4ee83f52899201966eb31f2ba93ef7a0aadb26af531061af0f15abfae9a7f61d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", - "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", - "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", - "2 | Ethereum signature [4/4] : a659e9bccdd4a203", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : 458f70e0493adebb02ee0922cc89866f067a99", + "2 | Ethereum signature [2/4] : 6cc446eb27734716fd76a02c05dbf4ee83f528", + "2 | Ethereum signature [3/4] : 99201966eb31f2ba93ef7a0aadb26af531061a", + "2 | Ethereum signature [4/4] : f0f15abfae9a7f61", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", - "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", - "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", - "2 | Ethereum signature [4/4] : a659e9bccdd4a203", + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : 458f70e0493adebb02ee0922cc89866f067a99", + "2 | Ethereum signature [2/4] : 6cc446eb27734716fd76a02c05dbf4ee83f528", + "2 | Ethereum signature [3/4] : 99201966eb31f2ba93ef7a0aadb26af531061a", + "2 | Ethereum signature [4/4] : f0f15abfae9a7f61", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8710,30 +8787,30 @@ ] }, { - "index": 364, + "index": 369, "name": "Claims_Claim", - "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f77d19ee138a35fe76fa98ea72909966acb4e55ea55c4a78ccb734509fca5c64a12e114ef7a0e87ffc8ed62703356c049c9615310deaf4a30a3a659e9bccdd4a203d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1300e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36345435e63508ac05e59c914219f64cdef5ca29b63593f4d99df4d966aff388cec8253661841733302556f6402ad571f5976763036f3abb25ce384c8bdce3bbcff30d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", - "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", - "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", - "2 | Ethereum signature [4/4] : a659e9bccdd4a203", - "3 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dest [2/2] : 3Ph4miYfg", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", - "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", - "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", - "2 | Ethereum signature [4/4] : a659e9bccdd4a203", + "1 | Dest [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dest [2/2] : 3Ph4miYfg", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 100", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8741,30 +8818,32 @@ ] }, { - "index": 365, + "index": 370, "name": "Claims_Claim", - "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec2d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13009cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cbbd6bc002eb66a5cb87eb3b3dcf8276775f310da0925c7b05853c29713ceab68838556a426b2cc7e877e19627b71d7e4d1647b64df75447122ca58eae2c9f1fc85d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Dest [2/2] : Ho6PzgCdQ", + "2 | Ethereum signature [1/4] : bbd6bc002eb66a5cb87eb3b3dcf8276775f310", + "2 | Ethereum signature [2/4] : da0925c7b05853c29713ceab68838556a426b2", + "2 | Ethereum signature [3/4] : cc7e877e19627b71d7e4d1647b64df75447122", + "2 | Ethereum signature [4/4] : ca58eae2c9f1fc85", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "1 | Dest [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Dest [2/2] : Ho6PzgCdQ", + "2 | Ethereum signature [1/4] : bbd6bc002eb66a5cb87eb3b3dcf8276775f310", + "2 | Ethereum signature [2/4] : da0925c7b05853c29713ceab68838556a426b2", + "2 | Ethereum signature [3/4] : cc7e877e19627b71d7e4d1647b64df75447122", + "2 | Ethereum signature [4/4] : ca58eae2c9f1fc85", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8772,36 +8851,36 @@ ] }, { - "index": 366, + "index": 371, "name": "Claims_Claim_attest", - "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec201013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1302e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36345435e63508ac05e59c914219f64cdef5ca29b63593f4d99df4d966aff388cec8253661841733302556f6402ad571f5976763036f3abb25ce384c8bdce3bbcff30010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "3 | Statement [4/4] : 29e6b2f9890d9f" + "1 | Dest [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dest [2/2] : 3Ph4miYfg", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Statement [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "3 | Statement [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "3 | Statement [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "3 | Statement [4/4] : b986de1760cbf4" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "3 | Statement [4/4] : 29e6b2f9890d9f", + "1 | Dest [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dest [2/2] : 3Ph4miYfg", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Statement [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "3 | Statement [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "3 | Statement [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "3 | Statement [4/4] : b986de1760cbf4", "4 | Chain : Kusama", - "5 | Nonce : 1", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8809,34 +8888,44 @@ ] }, { - "index": 367, + "index": 372, "name": "Claims_Claim_attest", - "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd352409b3b7b1b3aa04e2c570183557a41332083bac99b19cdb44e3342eac56a791377f34b31f3c68cb7ad977f4536025f970c251c8719db98e6427b91cecce66580c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1302f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86450469a025dcc7d4a754a94a2c9cddb40453725682ff6713de8f925c5debbceb8654cf1386e46acd3ef58f0b0a15ba6b5a88cf7d94f3c94fdfd2cb48e6c092ecc93010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", - "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", - "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", - "2 | Ethereum signature [4/4] : e6427b91cecce665", - "3 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "3 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", - "4 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : 50469a025dcc7d4a754a94a2c9cddb40453725", + "2 | Ethereum signature [2/4] : 682ff6713de8f925c5debbceb8654cf1386e46", + "2 | Ethereum signature [3/4] : acd3ef58f0b0a15ba6b5a88cf7d94f3c94fdfd", + "2 | Ethereum signature [4/4] : 2cb48e6c092ecc93", + "3 | Statement [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Statement [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Statement [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Statement [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Statement [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Statement [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Statement [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", - "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", - "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", - "2 | Ethereum signature [4/4] : e6427b91cecce665", - "3 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "3 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : 50469a025dcc7d4a754a94a2c9cddb40453725", + "2 | Ethereum signature [2/4] : 682ff6713de8f925c5debbceb8654cf1386e46", + "2 | Ethereum signature [3/4] : acd3ef58f0b0a15ba6b5a88cf7d94f3c94fdfd", + "2 | Ethereum signature [4/4] : 2cb48e6c092ecc93", + "3 | Statement [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Statement [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Statement [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Statement [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Statement [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Statement [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Statement [7/7] : 317d6ee59e6d26dfa7fc9736abd1", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 1", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8844,43 +8933,43 @@ ] }, { - "index": 368, + "index": 373, "name": "Claims_Claim_attest", - "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fb60c261eb8b0154e58d0953cddfe53058354050e07ae01923e80ed306f825e24b379bce33bdf44b17ae48b1585e531e9d94576689f719ddc46634796c1108a710f0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1302f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864cf502896c8be8c65546bcea2401ca0e0afc9fd255e01702b2fbde04c4b9206f791656aed3694a16d2caaceafe7840daaff65da38c24ed7fdb1b93c202022f32a46010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : b60c261eb8b0154e58d0953cddfe5305835405", - "2 | Ethereum signature [2/4] : 0e07ae01923e80ed306f825e24b379bce33bdf", - "2 | Ethereum signature [3/4] : 44b17ae48b1585e531e9d94576689f719ddc46", - "2 | Ethereum signature [4/4] : 634796c1108a710f", - "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : cf502896c8be8c65546bcea2401ca0e0afc9fd", + "2 | Ethereum signature [2/4] : 255e01702b2fbde04c4b9206f791656aed3694", + "2 | Ethereum signature [3/4] : a16d2caaceafe7840daaff65da38c24ed7fdb1", + "2 | Ethereum signature [4/4] : b93c202022f32a46", + "3 | Statement [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Statement [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Statement [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Statement [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Statement [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Statement [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Statement [7/7] : 317d6ee59e6d26dfa7fc9736abd1", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : b60c261eb8b0154e58d0953cddfe5305835405", - "2 | Ethereum signature [2/4] : 0e07ae01923e80ed306f825e24b379bce33bdf", - "2 | Ethereum signature [3/4] : 44b17ae48b1585e531e9d94576689f719ddc46", - "2 | Ethereum signature [4/4] : 634796c1108a710f", - "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Dest [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Dest [2/2] : 6JtYYhKnN", + "2 | Ethereum signature [1/4] : cf502896c8be8c65546bcea2401ca0e0afc9fd", + "2 | Ethereum signature [2/4] : 255e01702b2fbde04c4b9206f791656aed3694", + "2 | Ethereum signature [3/4] : a16d2caaceafe7840daaff65da38c24ed7fdb1", + "2 | Ethereum signature [4/4] : b93c202022f32a46", + "3 | Statement [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Statement [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Statement [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Statement [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Statement [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Statement [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Statement [7/7] : 317d6ee59e6d26dfa7fc9736abd1", "4 | Chain : Kusama", - "5 | Nonce : 2339", + "5 | Nonce : 0", "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -8889,36 +8978,42 @@ ] }, { - "index": 369, + "index": 374, "name": "Claims_Claim_attest", - "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd09e927f79c27e5e0c835df76836296b00c1e07867eca7c5d1d639002465946baf8974f8c0ea66d4e9031e30cc3827a0a8ef5f6f5054fe9c86823e14b001adf8a601013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1302b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68458f70e0493adebb02ee0922cc89866f067a996cc446eb27734716fd76a02c05dbf4ee83f52899201966eb31f2ba93ef7a0aadb26af531061af0f15abfae9a7f610102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d09e927f79c27e5e0c835df76836296b00c1e0", - "2 | Ethereum signature [2/4] : 7867eca7c5d1d639002465946baf8974f8c0ea", - "2 | Ethereum signature [3/4] : 66d4e9031e30cc3827a0a8ef5f6f5054fe9c86", - "2 | Ethereum signature [4/4] : 823e14b001adf8a6", - "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "3 | Statement [4/4] : 29e6b2f9890d9f" + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : 458f70e0493adebb02ee0922cc89866f067a99", + "2 | Ethereum signature [2/4] : 6cc446eb27734716fd76a02c05dbf4ee83f528", + "2 | Ethereum signature [3/4] : 99201966eb31f2ba93ef7a0aadb26af531061a", + "2 | Ethereum signature [4/4] : f0f15abfae9a7f61", + "3 | Statement [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "3 | Statement [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "3 | Statement [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "3 | Statement [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "3 | Statement [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "3 | Statement [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "3 | Statement [7/7] : 93343efd5c04534730aa76d8330f" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : d09e927f79c27e5e0c835df76836296b00c1e0", - "2 | Ethereum signature [2/4] : 7867eca7c5d1d639002465946baf8974f8c0ea", - "2 | Ethereum signature [3/4] : 66d4e9031e30cc3827a0a8ef5f6f5054fe9c86", - "2 | Ethereum signature [4/4] : 823e14b001adf8a6", - "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "3 | Statement [4/4] : 29e6b2f9890d9f", + "1 | Dest [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dest [2/2] : PuqtMGste", + "2 | Ethereum signature [1/4] : 458f70e0493adebb02ee0922cc89866f067a99", + "2 | Ethereum signature [2/4] : 6cc446eb27734716fd76a02c05dbf4ee83f528", + "2 | Ethereum signature [3/4] : 99201966eb31f2ba93ef7a0aadb26af531061a", + "2 | Ethereum signature [4/4] : f0f15abfae9a7f61", + "3 | Statement [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "3 | Statement [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "3 | Statement [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "3 | Statement [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "3 | Statement [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "3 | Statement [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "3 | Statement [7/7] : 93343efd5c04534730aa76d8330f", "4 | Chain : Kusama", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8926,43 +9021,33 @@ ] }, { - "index": 370, + "index": 375, "name": "Claims_Claim_attest", - "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec20102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1302dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe073645435e63508ac05e59c914219f64cdef5ca29b63593f4d99df4d966aff388cec8253661841733302556f6402ad571f5976763036f3abb25ce384c8bdce3bbcff308086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Dest [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Dest [2/2] : W2YqpsEiW", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Statement [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "3 | Statement [2/2] : 30846f2c1805fdb80157f177f5", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dest [2/2] : DyGtAWNbn", - "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", - "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", - "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", - "2 | Ethereum signature [4/4] : cd8ddff799088ec2", - "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Dest [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Dest [2/2] : W2YqpsEiW", + "2 | Ethereum signature [1/4] : 45435e63508ac05e59c914219f64cdef5ca29b", + "2 | Ethereum signature [2/4] : 63593f4d99df4d966aff388cec825366184173", + "2 | Ethereum signature [3/4] : 3302556f6402ad571f5976763036f3abb25ce3", + "2 | Ethereum signature [4/4] : 84c8bdce3bbcff30", + "3 | Statement [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "3 | Statement [2/2] : 30846f2c1805fdb80157f177f5", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 100", "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -8971,20 +9056,24 @@ ] }, { - "index": 371, + "index": 376, "name": "Claims_Attest", - "blob": "130380b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1303010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Statement [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Statement [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Statement [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Statement [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Statement [4/4] : 244ccf5c5cf935", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Statement [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Statement [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Statement [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Statement [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Statement [4/4] : 244ccf5c5cf935", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -8996,26 +9085,32 @@ ] }, { - "index": 372, + "index": 377, "name": "Claims_Attest", - "blob": "1303010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130301025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Statement [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Statement [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Statement [4/4] : 683807d2d3ef09", - "2 | Tip : KSM 5.552342355555" + "1 | Statement [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Statement [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Statement [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Statement [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Statement [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Statement [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Statement [7/7] : 162f12115b630d72d559609e6688", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Statement [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Statement [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Statement [4/4] : 683807d2d3ef09", + "1 | Statement [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "1 | Statement [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "1 | Statement [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "1 | Statement [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "1 | Statement [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "1 | Statement [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "1 | Statement [7/7] : 162f12115b630d72d559609e6688", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9023,32 +9118,22 @@ ] }, { - "index": 373, + "index": 378, "name": "Claims_Attest", - "blob": "13030102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13038086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Statement [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Statement [2/2] : 30846f2c1805fdb80157f177f5", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Statement [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Statement [2/2] : 30846f2c1805fdb80157f177f5", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -9058,32 +9143,34 @@ ] }, { - "index": 374, + "index": 379, "name": "Claims_Attest", - "blob": "130301028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13030102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Statement [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Statement [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Statement [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Statement [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Statement [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Statement [7/7] : 981e2df7f997de23b266e33ef909", - "2 | Tip : KSM 5.552342355555" + "1 | Statement [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Statement [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Statement [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Statement [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Statement [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Statement [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Statement [7/7] : 93343efd5c04534730aa76d8330f", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "1 | Statement [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "1 | Statement [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "1 | Statement [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "1 | Statement [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "1 | Statement [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "1 | Statement [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Statement [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "1 | Statement [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "1 | Statement [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "1 | Statement [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "1 | Statement [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "1 | Statement [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "1 | Statement [7/7] : 93343efd5c04534730aa76d8330f", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9091,22 +9178,28 @@ ] }, { - "index": 375, + "index": 380, "name": "Claims_Attest", - "blob": "130380c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13030101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", - "2 | Tip : KSM 0.000055555555" + "1 | Statement [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Statement [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Statement [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Statement [4/4] : 357008265b2f65", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Statement [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Statement [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Statement [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Statement [4/4] : 357008265b2f65", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9114,30 +9207,32 @@ ] }, { - "index": 376, + "index": 381, "name": "Claims_Move_claim", - "blob": "1304dd5acebaa66e8678ecc60eb5bee5db93df89de78a55d8d438e000120c5b8b0efb19c2539138b52a701225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304dc707358711272978c022755081254b876dff6914ca96582408ab1be628e3f7d02c86db848b0468d019227bd4d600b8d58e8325dd788459d2a47ecd9ec2cfb533a16ddcf4deccded3dd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "1 | Old [2/2] : 78", - "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "2 | New [2/2] : a7", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", - "4 | Tip : KSM 5.552342355555" + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : FsxKAgJDsVC2qHMbAWhKEJGpDqtiMBuywbR6nA", + "3 | Maybe preclaim [2/2] : z2APGkMcg", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "1 | Old [2/2] : 78", - "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "2 | New [2/2] : a7", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : FsxKAgJDsVC2qHMbAWhKEJGpDqtiMBuywbR6nA", + "3 | Maybe preclaim [2/2] : z2APGkMcg", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 1", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9145,59 +9240,57 @@ ] }, { - "index": 377, + "index": 382, "name": "Claims_Move_claim", - "blob": "130409ae2ea7bab14903772cf2a308f2b5794ef08d60dd5acebaa66e8678ecc60eb5bee5db93df89de7801a446fcfed44ca42415bae3a342a6997f52ce5ffda832b748d41dd5e12b9b3351d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304dc707358711272978c022755081254b876dff691dc707358711272978c022755081254b876dff69101debb7ba5ff83199ec45d7b700cf16a8a19efcffddf0ff3a401ed71d3aeb5b365d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "1 | Old [2/2] : 60", - "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "2 | New [2/2] : 78", - "3 | Maybe preclaim [1/2] : GHiTZeGA2bgPzHbabRzwyfXZJUFZDhAtZ9hqDG", - "3 | Maybe preclaim [2/2] : bfGsLzMe2", - "4 | Tip : KSM 0.000055555555" + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : dc707358711272978c022755081254b876dff6", + "2 | New [2/2] : 91", + "3 | Maybe preclaim [1/2] : HcMqofY8jYUWDkVGfqsQdXUXtSjiVMv7eXixdZ", + "3 | Maybe preclaim [2/2] : 33VnRqbEf" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "1 | Old [2/2] : 60", - "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "2 | New [2/2] : 78", - "3 | Maybe preclaim [1/2] : GHiTZeGA2bgPzHbabRzwyfXZJUFZDhAtZ9hqDG", - "3 | Maybe preclaim [2/2] : bfGsLzMe2", + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : dc707358711272978c022755081254b876dff6", + "2 | New [2/2] : 91", + "3 | Maybe preclaim [1/2] : HcMqofY8jYUWDkVGfqsQdXUXtSjiVMv7eXixdZ", + "3 | Maybe preclaim [2/2] : 33VnRqbEf", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000055555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 378, + "index": 383, "name": "Claims_Move_claim", - "blob": "1304a55d8d438e000120c5b8b0efb19c2539138b52a709ae2ea7bab14903772cf2a308f2b5794ef08d6001225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304dc707358711272978c022755081254b876dff6914ca96582408ab1be628e3f7d02c86db848b0468d01f27838dd986239359ec0d000c9e0faf76f225b0f09de2b607eb337ed3af5d126d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "1 | Old [2/2] : a7", - "2 | New [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "2 | New [2/2] : 60", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : J4EpUSAoiWiuUxyBkj6siHhi76UCN4czByrfUB", + "3 | Maybe preclaim [2/2] : kw3NodVFK", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "1 | Old [2/2] : a7", - "2 | New [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "2 | New [2/2] : 60", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "1 | Old [1/2] : dc707358711272978c022755081254b876dff6", + "1 | Old [2/2] : 91", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : J4EpUSAoiWiuUxyBkj6siHhi76UCN4czByrfUB", + "3 | Maybe preclaim [2/2] : kw3NodVFK", "4 | Chain : Kusama", "5 | Nonce : 1", "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -9209,59 +9302,61 @@ ] }, { - "index": 379, + "index": 384, "name": "Claims_Move_claim", - "blob": "130409ae2ea7bab14903772cf2a308f2b5794ef08d60dd5acebaa66e8678ecc60eb5bee5db93df89de780130ad37ba0695f10977db3488627adc44e4921e0cd764331b7fa5fefa7f1bf523d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13048daabdad848f334950fa9f5c69ab856a2085b24adc707358711272978c022755081254b876dff69101b03b8a10395d9920c7cf4fe435e36356e04f00794587d5e0eeeff4826e69eb0bd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "1 | Old [2/2] : 60", - "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "2 | New [2/2] : 78", - "3 | Maybe preclaim [1/2] : Dg9GmT8jfnsCYojkqPE3KN6r5d6tRk8NB2G9bP", - "3 | Maybe preclaim [2/2] : 3f84yWCiv" + "1 | Old [1/2] : 8daabdad848f334950fa9f5c69ab856a2085b2", + "1 | Old [2/2] : 4a", + "2 | New [1/2] : dc707358711272978c022755081254b876dff6", + "2 | New [2/2] : 91", + "3 | Maybe preclaim [1/2] : GZPddXFSa5UjizcAckzP9SHpe9GS6cWfj71Daa", + "3 | Maybe preclaim [2/2] : RRKNyrqin", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", - "1 | Old [2/2] : 60", - "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "2 | New [2/2] : 78", - "3 | Maybe preclaim [1/2] : Dg9GmT8jfnsCYojkqPE3KN6r5d6tRk8NB2G9bP", - "3 | Maybe preclaim [2/2] : 3f84yWCiv", + "1 | Old [1/2] : 8daabdad848f334950fa9f5c69ab856a2085b2", + "1 | Old [2/2] : 4a", + "2 | New [1/2] : dc707358711272978c022755081254b876dff6", + "2 | New [2/2] : 91", + "3 | Maybe preclaim [1/2] : GZPddXFSa5UjizcAckzP9SHpe9GS6cWfj71Daa", + "3 | Maybe preclaim [2/2] : RRKNyrqin", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 380, + "index": 385, "name": "Claims_Move_claim", - "blob": "1304dd5acebaa66e8678ecc60eb5bee5db93df89de78a55d8d438e000120c5b8b0efb19c2539138b52a701225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13044ca96582408ab1be628e3f7d02c86db848b0468d4ca96582408ab1be628e3f7d02c86db848b0468d0148eb8b56a50e47e151f0f02c3f3203f8f8e3d4805c6dff1d4a67fa23ed8bd31fd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "1 | Old [2/2] : 78", - "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "2 | New [2/2] : a7", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", - "4 | Tip : KSM 0.000000000987" + "1 | Old [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "1 | Old [2/2] : 8d", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : EDvwHVbeXGEFsgwqNbwgt9s3YoNzfiLYgJG74K", + "3 | Maybe preclaim [2/2] : 92qnYsaVQ", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", - "1 | Old [2/2] : 78", - "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", - "2 | New [2/2] : a7", - "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", - "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "1 | Old [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "1 | Old [2/2] : 8d", + "2 | New [1/2] : 4ca96582408ab1be628e3f7d02c86db848b046", + "2 | New [2/2] : 8d", + "3 | Maybe preclaim [1/2] : EDvwHVbeXGEFsgwqNbwgt9s3YoNzfiLYgJG74K", + "3 | Maybe preclaim [2/2] : 92qnYsaVQ", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9269,24 +9364,22 @@ ] }, { - "index": 381, + "index": 386, "name": "Utility_Batch", - "blob": "18000400002c000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18000400002c000000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Utility : Batch", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9294,16 +9387,16 @@ ] }, { - "index": 382, + "index": 387, "name": "Utility_Batch", - "blob": "18000800002c000000000058000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18000800002c000000000058000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", "1 | Calls [1/4] : Fill block", "1 | Calls [2/4] : 0.0000044%", "1 | Calls [3/4] : Fill block", "1 | Calls [4/4] : 0.0000088%", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Utility : Batch", @@ -9312,8 +9405,8 @@ "1 | Calls [3/4] : Fill block", "1 | Calls [4/4] : 0.0000088%", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9321,9 +9414,9 @@ ] }, { - "index": 383, + "index": 388, "name": "Utility_Batch", - "blob": "18001000002c0000000000580000000000840000000000b0000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18001000002c0000000000580000000000840000000000b0000000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", "1 | Calls [1/8] : Fill block", @@ -9334,7 +9427,7 @@ "1 | Calls [6/8] : 0.0000132%", "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Utility : Batch", @@ -9347,8 +9440,8 @@ "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9356,26 +9449,34 @@ ] }, { - "index": 384, + "index": 389, "name": "Utility_Batch", - "blob": "18000800002c000000000058000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18001000002c0000000000580000000000840000000000b0000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", - "2 | Tip : KSM 0.000000000987" + "1 | Calls [1/8] : Fill block", + "1 | Calls [2/8] : 0.0000044%", + "1 | Calls [3/8] : Fill block", + "1 | Calls [4/8] : 0.0000088%", + "1 | Calls [5/8] : Fill block", + "1 | Calls [6/8] : 0.0000132%", + "1 | Calls [7/8] : Fill block", + "1 | Calls [8/8] : 0.0000176%", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", + "1 | Calls [1/8] : Fill block", + "1 | Calls [2/8] : 0.0000044%", + "1 | Calls [3/8] : Fill block", + "1 | Calls [4/8] : 0.0000088%", + "1 | Calls [5/8] : Fill block", + "1 | Calls [6/8] : 0.0000132%", + "1 | Calls [7/8] : Fill block", + "1 | Calls [8/8] : 0.0000176%", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9383,51 +9484,55 @@ ] }, { - "index": 385, + "index": 390, "name": "Utility_Batch", - "blob": "18000800002c000000000058000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18001000002c0000000000580000000000840000000000b0000000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Calls [1/8] : Fill block", + "1 | Calls [2/8] : 0.0000044%", + "1 | Calls [3/8] : Fill block", + "1 | Calls [4/8] : 0.0000088%", + "1 | Calls [5/8] : Fill block", + "1 | Calls [6/8] : 0.0000132%", + "1 | Calls [7/8] : Fill block", + "1 | Calls [8/8] : 0.0000176%" ], "output_expert": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", + "1 | Calls [1/8] : Fill block", + "1 | Calls [2/8] : 0.0000044%", + "1 | Calls [3/8] : Fill block", + "1 | Calls [4/8] : 0.0000088%", + "1 | Calls [5/8] : Fill block", + "1 | Calls [6/8] : 0.0000132%", + "1 | Calls [7/8] : Fill block", + "1 | Calls [8/8] : 0.0000176%", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 386, + "index": 391, "name": "Utility_Batch_all", - "blob": "18020400002c000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020400002c000000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9435,9 +9540,9 @@ ] }, { - "index": 387, + "index": 392, "name": "Utility_Batch_all", - "blob": "18020400002c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020400002c000000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", @@ -9450,7 +9555,7 @@ "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -9460,14 +9565,15 @@ ] }, { - "index": 388, + "index": 393, "name": "Utility_Batch_all", - "blob": "18020400002c000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020400002c000000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Utility : Batch all", @@ -9475,7 +9581,8 @@ "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9483,9 +9590,9 @@ ] }, { - "index": 389, + "index": 394, "name": "Utility_Batch_all", - "blob": "18021000002c0000000000580000000000840000000000b0000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18021000002c0000000000580000000000840000000000b0000000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/8] : Fill block", @@ -9496,7 +9603,7 @@ "1 | Calls [6/8] : 0.0000132%", "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Utility : Batch all", @@ -9509,8 +9616,8 @@ "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9518,16 +9625,15 @@ ] }, { - "index": 390, + "index": 395, "name": "Utility_Batch_all", - "blob": "18020800002c000000000058000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020800002c000000000058000000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/4] : Fill block", "1 | Calls [2/4] : 0.0000044%", "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", - "2 | Tip : KSM 0.000055555555" + "1 | Calls [4/4] : 0.0000088%" ], "output_expert": [ "0 | Utility : Batch all", @@ -9536,31 +9642,30 @@ "1 | Calls [3/4] : Fill block", "1 | Calls [4/4] : 0.0000088%", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 391, + "index": 396, "name": "Identity_Add_registrar", - "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19009cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9568,22 +9673,22 @@ ] }, { - "index": 392, + "index": 397, "name": "Identity_Add_registrar", - "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19009cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9591,22 +9696,22 @@ ] }, { - "index": 393, + "index": 398, "name": "Identity_Add_registrar", - "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1900f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9614,24 +9719,22 @@ ] }, { - "index": 394, + "index": 399, "name": "Identity_Add_registrar", - "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1900e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Account [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Account [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Account [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9639,22 +9742,22 @@ ] }, { - "index": 395, + "index": 400, "name": "Identity_Add_registrar", - "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1900f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9662,86 +9765,102 @@ ] }, { - "index": 396, + "index": 401, "name": "Identity_Clear_identity", - "blob": "1903d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity" + "0 | Identity : Clear identity", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 397, + "index": 402, "name": "Identity_Clear_identity", - "blob": "1903d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity" + "0 | Identity : Clear identity", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 398, + "index": 403, "name": "Identity_Clear_identity", - "blob": "1903d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity" + "0 | Identity : Clear identity", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 399, + "index": 404, "name": "Identity_Clear_identity", - "blob": "1903d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity" + "0 | Identity : Clear identity", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 400, + "index": 405, "name": "Identity_Clear_identity", - "blob": "1903d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Clear identity", - "1 | Tip : KSM 5.552342355555" - ], + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" + ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9749,22 +9868,24 @@ ] }, { - "index": 401, + "index": 406, "name": "Identity_Request_judgement", - "blob": "1904dc821c2f4dd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19040dfd4ae37d4fd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 55", - "2 | Max fee : 323733280", - "3 | Tip : KSM 0.000000000987" + "1 | Reg index : 16195", + "2 | Max fee : 333412562", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 55", - "2 | Max fee : 323733280", + "1 | Reg index : 16195", + "2 | Max fee : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9772,22 +9893,22 @@ ] }, { - "index": 402, + "index": 407, "name": "Identity_Request_judgement", - "blob": "190409169a505dbfd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19048c4ae37d4fd503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 1410", - "2 | Max fee : 802640934", - "3 | Tip : KSM 5.552342355555" + "1 | Reg index : 35", + "2 | Max fee : 333412562", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 1410", - "2 | Max fee : 802640934", + "1 | Reg index : 35", + "2 | Max fee : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9795,21 +9916,21 @@ ] }, { - "index": 403, + "index": 408, "name": "Identity_Request_judgement", - "blob": "1904f19939c9d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19040dfd4ae37d4fd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 9852", - "2 | Max fee : 12878", + "1 | Reg index : 16195", + "2 | Max fee : 333412562", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 9852", - "2 | Max fee : 12878", + "1 | Reg index : 16195", + "2 | Max fee : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 0", "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -9818,24 +9939,22 @@ ] }, { - "index": 404, + "index": 409, "name": "Identity_Request_judgement", - "blob": "190496fb647739c9d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19048cb5f8d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 500776677", - "2 | Max fee : 12878", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Reg index : 35", + "2 | Max fee : 15917", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 500776677", - "2 | Max fee : 12878", + "1 | Reg index : 35", + "2 | Max fee : 15917", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9843,41 +9962,45 @@ ] }, { - "index": 405, + "index": 410, "name": "Identity_Request_judgement", - "blob": "1904091639c9d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19040dfd4ae37d4fd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 1410", - "2 | Max fee : 12878" + "1 | Reg index : 16195", + "2 | Max fee : 333412562", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 1410", - "2 | Max fee : 12878", + "1 | Reg index : 16195", + "2 | Max fee : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 406, + "index": 411, "name": "Identity_Cancel_request", - "blob": "190500000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1905b3e30100d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 0", - "2 | Tip : KSM 0.000055555555" + "1 | Reg index : 123827", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 0", + "1 | Reg index : 123827", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9885,22 +10008,20 @@ ] }, { - "index": 407, + "index": 412, "name": "Identity_Cancel_request", - "blob": "1905ac350000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1905b3e30100d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 13740", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Reg index : 123827", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 13740", + "1 | Reg index : 123827", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9908,20 +10029,22 @@ ] }, { - "index": 408, + "index": 413, "name": "Identity_Cancel_request", - "blob": "19057b000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19057b000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", "1 | Reg index : 123", - "2 | Tip : KSM 5.552342355555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Cancel request", "1 | Reg index : 123", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9929,20 +10052,20 @@ ] }, { - "index": 409, + "index": 414, "name": "Identity_Cancel_request", - "blob": "19057b000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1905b3e30100d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 123", - "2 | Tip : KSM 0.000055555555" + "1 | Reg index : 123827", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 123", + "1 | Reg index : 123827", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9950,22 +10073,20 @@ ] }, { - "index": 410, + "index": 415, "name": "Identity_Cancel_request", - "blob": "190501000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190501000000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", "1 | Reg index : 1", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Cancel request", "1 | Reg index : 1", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9973,22 +10094,22 @@ ] }, { - "index": 411, + "index": 416, "name": "Identity_Set_fee", - "blob": "1906dc9a505dbfd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1906199e40d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 55", - "2 | Fee : 802640934", - "3 | Tip : KSM 0.000055555555" + "1 | Index : 10118", + "2 | Fee : 16", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 55", - "2 | Fee : 802640934", + "1 | Index : 10118", + "2 | Fee : 16", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9996,42 +10117,44 @@ ] }, { - "index": 412, + "index": 417, "name": "Identity_Set_fee", - "blob": "19060916c9bfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19060dfd40d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 1410", - "2 | Fee : 12274" + "1 | Index : 16195", + "2 | Fee : 16", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 1410", - "2 | Fee : 12274", + "1 | Index : 16195", + "2 | Fee : 16", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 413, + "index": 418, "name": "Identity_Set_fee", - "blob": "190609169a505dbfd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19068c4ae37d4fd503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 1410", - "2 | Fee : 802640934", + "1 | Index : 35", + "2 | Fee : 333412562", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 1410", - "2 | Fee : 802640934", + "1 | Index : 35", + "2 | Fee : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -10040,22 +10163,22 @@ ] }, { - "index": 414, + "index": 419, "name": "Identity_Set_fee", - "blob": "1906dc39c9d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1906b628963040d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 55", - "2 | Fee : 12878", - "3 | Tip : KSM 5.552342355555" + "1 | Index : 203786797", + "2 | Fee : 16", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 55", - "2 | Fee : 12878", + "1 | Index : 203786797", + "2 | Fee : 16", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10063,45 +10186,51 @@ ] }, { - "index": 415, + "index": 420, "name": "Identity_Set_fee", - "blob": "190696fb6477821c2f4dd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19060dfdbd37d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 500776677", - "2 | Fee : 323733280" + "1 | Index : 16195", + "2 | Fee : 3567", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 500776677", - "2 | Fee : 323733280", + "1 | Index : 16195", + "2 | Fee : 3567", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 416, + "index": 421, "name": "Identity_Set_account_id", - "blob": "190796fb64776a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19078cb8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 500776677", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.00123456789" + "1 | Index : 35", + "2 | New [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | New [2/2] : PuqtMGste", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 500776677", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 35", + "2 | New [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | New [2/2] : PuqtMGste", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10109,24 +10238,24 @@ ] }, { - "index": 417, + "index": 422, "name": "Identity_Set_account_id", - "blob": "1907f1996a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19078c6a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 9852", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", - "3 | Tip : KSM 5.552342355555" + "1 | Index : 35", + "2 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | New [2/2] : r9TQhU9HW", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 9852", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 35", + "2 | New [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | New [2/2] : r9TQhU9HW", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10134,24 +10263,24 @@ ] }, { - "index": 418, + "index": 423, "name": "Identity_Set_account_id", - "blob": "1907f1996a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19078cdc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 9852", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.000000000987" + "1 | Index : 35", + "2 | New [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | New [2/2] : W2YqpsEiW", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 9852", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 35", + "2 | New [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | New [2/2] : W2YqpsEiW", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10159,24 +10288,26 @@ ] }, { - "index": 419, + "index": 424, "name": "Identity_Set_account_id", - "blob": "190709166a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1907b6289630f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 1410", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.000000000987" + "1 | Index : 203786797", + "2 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | New [2/2] : 6JtYYhKnN", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 1410", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 203786797", + "2 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | New [2/2] : 6JtYYhKnN", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10184,23 +10315,23 @@ ] }, { - "index": 420, + "index": 425, "name": "Identity_Set_account_id", - "blob": "190796fb64776a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1907199ef4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 500776677", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 10118", + "2 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | New [2/2] : 6JtYYhKnN", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 500776677", - "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | New [2/2] : DyGtAWNbn", + "1 | Index : 10118", + "2 | New [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | New [2/2] : 6JtYYhKnN", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -10209,22 +10340,22 @@ ] }, { - "index": 421, + "index": 426, "name": "Identity_Kill_identity", - "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.000000000987" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10232,22 +10363,24 @@ ] }, { - "index": 422, + "index": 427, "name": "Identity_Kill_identity", - "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.000055555555" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10255,22 +10388,22 @@ ] }, { - "index": 423, + "index": 428, "name": "Identity_Kill_identity", - "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.00123456789" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10278,21 +10411,21 @@ ] }, { - "index": 424, + "index": 429, "name": "Identity_Kill_identity", - "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -10301,22 +10434,22 @@ ] }, { - "index": 425, + "index": 430, "name": "Identity_Kill_identity", - "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.000000000987" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10324,22 +10457,22 @@ ] }, { - "index": 426, + "index": 431, "name": "Identity_Remove_sub", - "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", - "2 | Tip : KSM 5.552342355555" + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10347,44 +10480,42 @@ ] }, { - "index": 427, + "index": 432, "name": "Identity_Remove_sub", - "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", - "2 | Tip : KSM 5.552342355555" + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 428, + "index": 433, "name": "Identity_Remove_sub", - "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -10393,21 +10524,21 @@ ] }, { - "index": 429, + "index": 434, "name": "Identity_Remove_sub", - "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -10416,22 +10547,22 @@ ] }, { - "index": 430, + "index": 435, "name": "Identity_Remove_sub", - "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.00123456789" + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Sub [2/2] : G1ft7ngXT", + "1 | Sub [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Sub [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10439,18 +10570,20 @@ ] }, { - "index": 431, + "index": 436, "name": "Identity_Quit_sub", - "blob": "190ed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", - "1 | Tip : KSM 0.000000000987" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 50283", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10458,18 +10591,20 @@ ] }, { - "index": 432, + "index": 437, "name": "Identity_Quit_sub", - "blob": "190ed503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 1", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10477,45 +10612,45 @@ ] }, { - "index": 433, + "index": 438, "name": "Identity_Quit_sub", - "blob": "190ed503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Quit sub", - "1 | Tip : KSM 0.000000000987" + "0 | Identity : Quit sub" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 434, + "index": 439, "name": "Identity_Quit_sub", - "blob": "190ed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Quit sub" + "0 | Identity : Quit sub", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 435, + "index": 440, "name": "Identity_Quit_sub", - "blob": "190ed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", "1 | Tip : KSM 0.000055555555" @@ -10523,7 +10658,7 @@ "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 100", + "2 | Nonce : 0", "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -10532,22 +10667,22 @@ ] }, { - "index": 436, + "index": 441, "name": "Society_Bid", - "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a00d9e97f6cb3e6ddba89b3325f131424cad503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", - "2 | Tip : KSM 0.00123456789" + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10555,60 +10690,64 @@ ] }, { - "index": 437, + "index": 442, "name": "Society_Bid", - "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a00d9e97f6cb3e6ddba89b3325f131424cad503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676" + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 438, + "index": 443, "name": "Society_Bid", - "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a00d9e97f6cb3e6ddba89b3325f131424cad503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676" + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 439, + "index": 444, "name": "Society_Bid", - "blob": "1a008c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a00d9e97f6cb3e6ddba89b3325f131424cad503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676" + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Era Phase : 61", @@ -10618,41 +10757,45 @@ ] }, { - "index": 440, + "index": 445, "name": "Society_Bid", - "blob": "1a008c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a00d9e97f6cb3e6ddba89b3325f131424cad503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676" + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "1 | Amount [2/2] : 017676", + "1 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "1 | Amount [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 441, + "index": 446, "name": "Society_Unbid", - "blob": "1a01d3040000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0100000000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 1235", - "2 | Tip : KSM 0.000000000987" + "1 | Pos : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 1235", + "1 | Pos : 0", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10660,20 +10803,20 @@ ] }, { - "index": 442, + "index": 447, "name": "Society_Unbid", - "blob": "1a01f7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0100000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 503", - "2 | Tip : KSM 0.000000000987" + "1 | Pos : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 503", + "1 | Pos : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10681,22 +10824,20 @@ ] }, { - "index": 443, + "index": 448, "name": "Society_Unbid", - "blob": "1a01d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a019d1c0000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Pos : 7325", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 1235", + "1 | Pos : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10704,68 +10845,74 @@ ] }, { - "index": 444, + "index": 449, "name": "Society_Unbid", - "blob": "1a019d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01d3040000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 7325" + "1 | Pos : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 7325", + "1 | Pos : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 445, + "index": 450, "name": "Society_Unbid", - "blob": "1a01f7010000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 503" + "1 | Pos : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unbid", "1 | Pos : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 446, + "index": 451, "name": "Society_Vouch", - "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d9e97f6cb3e6ddba89b3325f131424cad9e97f6cb3e6ddba89b3325f131424cad503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", - "4 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10773,32 +10920,30 @@ ] }, { - "index": 447, + "index": 452, "name": "Society_Vouch", - "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d9e97f6cb3e6ddba89b3325f131424cad9e97f6cb3e6ddba89b3325f131424cad503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", + "1 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Who [2/2] : r9TQhU9HW", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10806,32 +10951,30 @@ ] }, { - "index": 448, + "index": 453, "name": "Society_Vouch", - "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a02e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d9e97f6cb3e6ddba89b3325f131424cad9e97f6cb3e6ddba89b3325f131424cad503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10839,59 +10982,61 @@ ] }, { - "index": 449, + "index": 454, "name": "Society_Vouch", - "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0264d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d9e97f6cb3e6ddba89b3325f131424cad9e97f6cb3e6ddba89b3325f131424cad503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676" + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 450, + "index": 455, "name": "Society_Vouch", - "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a02e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d9e97f6cb3e6ddba89b3325f131424cad9e97f6cb3e6ddba89b3325f131424cad503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", - "4 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", - "2 | Amount [2/2] : 017676", - "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", - "3 | Tip [2/2] : 017676", + "1 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Who [2/2] : MCzmwrXrR", + "2 | Amount [1/2] : KSM 268691385018449790993905074.138335", + "2 | Amount [2/2] : 144409", + "3 | Tip [1/2] : KSM 268691385018449790993905074.138335", + "3 | Tip [2/2] : 144409", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 1", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10899,60 +11044,62 @@ ] }, { - "index": 451, + "index": 456, "name": "Society_Unvouch", - "blob": "1a0300000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03d3040000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 0" + "1 | Pos : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 0", + "1 | Pos : 1235", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 452, + "index": 457, "name": "Society_Unvouch", - "blob": "1a0300000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0300000000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 0", - "2 | Tip : KSM 5.552342355555" + "1 | Pos : 0" ], "output_expert": [ "0 | Society : Unvouch", "1 | Pos : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] }, { - "index": 453, + "index": 458, "name": "Society_Unvouch", - "blob": "1a03d3040000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", "1 | Pos : 1235", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unvouch", "1 | Pos : 1235", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10960,20 +11107,20 @@ ] }, { - "index": 454, + "index": 459, "name": "Society_Unvouch", - "blob": "1a03d3040000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03f7010000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 1235", - "2 | Tip : KSM 5.552342355555" + "1 | Pos : 503", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 1235", + "1 | Pos : 503", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10981,20 +11128,20 @@ ] }, { - "index": 455, + "index": 460, "name": "Society_Unvouch", - "blob": "1a0300000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03d3040000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 0", - "2 | Tip : KSM 0.000000000987" + "1 | Pos : 1235", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 0", + "1 | Pos : 1235", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11002,24 +11149,24 @@ ] }, { - "index": 456, + "index": 461, "name": "Society_Vote", - "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", - "2 | Approve : False", - "3 | Tip : KSM 0.000000000987" + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", + "2 | Approve : True", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", - "2 | Approve : False", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", + "2 | Approve : True", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11027,47 +11174,49 @@ ] }, { - "index": 457, + "index": 462, "name": "Society_Vote", - "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", - "2 | Approve : False" + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", + "2 | Approve : True", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", - "2 | Approve : False", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", + "2 | Approve : True", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 458, + "index": 463, "name": "Society_Vote", - "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", - "3 | Tip : KSM 0.00123456789" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.00123456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11075,20 +11224,20 @@ ] }, { - "index": 459, + "index": 464, "name": "Society_Vote", - "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", "3 | Chain : Kusama", "4 | Nonce : 100", @@ -11100,23 +11249,23 @@ ] }, { - "index": 460, + "index": 465, "name": "Society_Vote", - "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1401d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Candidate [2/2] : G1ft7ngXT", + "1 | Candidate [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Candidate [2/2] : bwPWshbc6", "2 | Approve : True", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -11125,22 +11274,20 @@ ] }, { - "index": 461, + "index": 466, "name": "Society_Defender_vote", - "blob": "1a0500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", "1 | Approve : False", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Defender vote", "1 | Approve : False", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11148,20 +11295,20 @@ ] }, { - "index": 462, + "index": 467, "name": "Society_Defender_vote", - "blob": "1a0500d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0501d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : False", - "2 | Tip : KSM 5.552342355555" + "1 | Approve : True", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : False", + "1 | Approve : True", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11169,20 +11316,20 @@ ] }, { - "index": 463, + "index": 468, "name": "Society_Defender_vote", - "blob": "1a0500d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", "1 | Approve : False", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Defender vote", "1 | Approve : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11190,92 +11337,98 @@ ] }, { - "index": 464, + "index": 469, "name": "Society_Defender_vote", - "blob": "1a0500d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0501d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : False" + "1 | Approve : True", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : False", + "1 | Approve : True", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 465, + "index": 470, "name": "Society_Defender_vote", - "blob": "1a0501d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0501d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : True", - "2 | Tip : KSM 5.552342355555" + "1 | Approve : True" ], "output_expert": [ "0 | Society : Defender vote", "1 | Approve : True", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 466, + "index": 471, "name": "Society_Payout", - "blob": "1a06d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Payout" + "0 | Society : Payout", + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Tip : KSM 5.552342355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 467, + "index": 472, "name": "Society_Payout", - "blob": "1a06d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Payout" + "0 | Society : Payout", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 468, + "index": 473, "name": "Society_Payout", - "blob": "1a06d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11283,9 +11436,9 @@ ] }, { - "index": 469, + "index": 474, "name": "Society_Payout", - "blob": "1a06d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout", "1 | Tip : KSM 0.000000000987" @@ -11293,7 +11446,7 @@ "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 0", "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -11302,18 +11455,18 @@ ] }, { - "index": 470, + "index": 475, "name": "Society_Payout", - "blob": "1a06d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11321,32 +11474,32 @@ ] }, { - "index": 471, + "index": 476, "name": "Society_Found", - "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a07b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68343000000101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", + "1 | Founder [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Founder [2/2] : PuqtMGste", "2 | Max members : 12340", - "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "3 | Rules [4/4] : 683807d2d3ef09", - "4 | Tip : KSM 5.552342355555" + "3 | Rules [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "3 | Rules [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "3 | Rules [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "3 | Rules [4/4] : 357008265b2f65", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", + "1 | Founder [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Founder [2/2] : PuqtMGste", "2 | Max members : 12340", - "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "3 | Rules [4/4] : 683807d2d3ef09", + "3 | Rules [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "3 | Rules [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "3 | Rules [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "3 | Rules [4/4] : 357008265b2f65", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 5.552342355555", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11354,38 +11507,28 @@ ] }, { - "index": 472, + "index": 477, "name": "Society_Found", - "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f000000000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0764d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d30400008086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 0", - "3 | Rules [1/7] : b1949666437de73950d06473ca806a691e91e0", - "3 | Rules [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "3 | Rules [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "3 | Rules [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "3 | Rules [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "3 | Rules [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "3 | Rules [7/7] : 15ed00d70e7bb9161e10557d44c4", - "4 | Tip : KSM 5.552342355555" + "1 | Founder [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Founder [2/2] : TZdAHD41C", + "2 | Max members : 1235", + "3 | Rules [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "3 | Rules [2/2] : 30846f2c1805fdb80157f177f5", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 0", - "3 | Rules [1/7] : b1949666437de73950d06473ca806a691e91e0", - "3 | Rules [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "3 | Rules [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "3 | Rules [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "3 | Rules [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "3 | Rules [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "3 | Rules [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Founder [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Founder [2/2] : TZdAHD41C", + "2 | Max members : 1235", + "3 | Rules [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "3 | Rules [2/2] : 30846f2c1805fdb80157f177f5", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11393,32 +11536,38 @@ ] }, { - "index": 473, + "index": 478, "name": "Society_Found", - "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff70100000101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013f7010000010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", + "1 | Founder [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Founder [2/2] : r9TQhU9HW", "2 | Max members : 503", - "3 | Rules [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "3 | Rules [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "3 | Rules [3/4] : a229ebf7524d08566ca15014598d9328723941", - "3 | Rules [4/4] : 6ef8294aecb62b", - "4 | Tip : KSM 0.00123456789" + "3 | Rules [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Rules [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Rules [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Rules [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Rules [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Rules [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Rules [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", + "1 | Founder [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Founder [2/2] : r9TQhU9HW", "2 | Max members : 503", - "3 | Rules [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "3 | Rules [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "3 | Rules [3/4] : a229ebf7524d08566ca15014598d9328723941", - "3 | Rules [4/4] : 6ef8294aecb62b", + "3 | Rules [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "3 | Rules [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "3 | Rules [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "3 | Rules [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "3 | Rules [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "3 | Rules [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "3 | Rules [7/7] : 317d6ee59e6d26dfa7fc9736abd1", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 100", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11426,32 +11575,34 @@ ] }, { - "index": 474, + "index": 479, "name": "Society_Found", - "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a07e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363f7010000010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 7325", - "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "3 | Rules [4/4] : 683807d2d3ef09", - "4 | Tip : KSM 0.00123456789" + "1 | Founder [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Founder [2/2] : 3Ph4miYfg", + "2 | Max members : 503", + "3 | Rules [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "3 | Rules [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "3 | Rules [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "3 | Rules [4/4] : 244ccf5c5cf935", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 7325", - "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "3 | Rules [4/4] : 683807d2d3ef09", + "1 | Founder [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Founder [2/2] : 3Ph4miYfg", + "2 | Max members : 503", + "3 | Rules [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "3 | Rules [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "3 | Rules [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "3 | Rules [4/4] : 244ccf5c5cf935", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip : KSM 0.00123456789", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11459,38 +11610,32 @@ ] }, { - "index": 475, + "index": 480, "name": "Society_Found", - "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff701000001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a079cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd30400000101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 503", - "3 | Rules [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "3 | Rules [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "3 | Rules [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "3 | Rules [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "3 | Rules [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "3 | Rules [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "3 | Rules [7/7] : 981e2df7f997de23b266e33ef909", - "4 | Tip : KSM 0.000000000987" + "1 | Founder [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Founder [2/2] : Ho6PzgCdQ", + "2 | Max members : 1235", + "3 | Rules [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "3 | Rules [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "3 | Rules [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "3 | Rules [4/4] : 357008265b2f65", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Founder [2/2] : DyGtAWNbn", - "2 | Max members : 503", - "3 | Rules [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "3 | Rules [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "3 | Rules [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "3 | Rules [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "3 | Rules [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "3 | Rules [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "3 | Rules [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Founder [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Founder [2/2] : Ho6PzgCdQ", + "2 | Max members : 1235", + "3 | Rules [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "3 | Rules [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "3 | Rules [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "3 | Rules [4/4] : 357008265b2f65", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 50283", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11498,18 +11643,20 @@ ] }, { - "index": 476, + "index": 481, "name": "Society_Unfound", - "blob": "1a08d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", - "1 | Tip : KSM 5.552342355555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11517,18 +11664,20 @@ ] }, { - "index": 477, + "index": 482, "name": "Society_Unfound", - "blob": "1a08d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", - "1 | Tip : KSM 5.552342355555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 100", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11536,58 +11685,52 @@ ] }, { - "index": 478, + "index": 483, "name": "Society_Unfound", - "blob": "1a08d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Unfound", - "1 | Tip : KSM 5.552342355555" + "0 | Society : Unfound" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 479, + "index": 484, "name": "Society_Unfound", - "blob": "1a08d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Unfound", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Society : Unfound" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 480, + "index": 485, "name": "Society_Unfound", - "blob": "1a08d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11595,24 +11738,24 @@ ] }, { - "index": 481, + "index": 486, "name": "Society_Judge_suspended_member", - "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a09e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36301d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Forgive : False", - "3 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Forgive : True", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Forgive : False", + "1 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Who [2/2] : 3Ph4miYfg", + "2 | Forgive : True", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11620,24 +11763,24 @@ ] }, { - "index": 482, + "index": 487, "name": "Society_Judge_suspended_member", - "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a09f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86401d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN", "2 | Forgive : True", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Who [2/2] : 6JtYYhKnN", "2 | Forgive : True", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -11647,24 +11790,24 @@ ] }, { - "index": 483, + "index": 488, "name": "Society_Judge_suspended_member", - "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a09b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e6801d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Who [2/2] : PuqtMGste", "2 | Forgive : True", - "3 | Tip : KSM 0.000000000987" + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Who [2/2] : PuqtMGste", "2 | Forgive : True", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11672,24 +11815,24 @@ ] }, { - "index": 484, + "index": 489, "name": "Society_Judge_suspended_member", - "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a09e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855300d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Forgive : True", - "3 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", + "2 | Forgive : False", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", - "2 | Forgive : True", + "1 | Who [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Who [2/2] : a8GkEuTYa", + "2 | Forgive : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11697,24 +11840,24 @@ ] }, { - "index": 485, + "index": 490, "name": "Society_Judge_suspended_member", - "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0964d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d3100d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", "2 | Forgive : False", - "3 | Tip : KSM 0.000055555555" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Who [2/2] : DyGtAWNbn", + "1 | Who [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Who [2/2] : TZdAHD41C", "2 | Forgive : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11722,39 +11865,41 @@ ] }, { - "index": 486, + "index": 491, "name": "Society_Set_max_members", - "blob": "1a0b34300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b00000000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 12340" + "1 | Max : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 12340", + "1 | Max : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 487, + "index": 492, "name": "Society_Set_max_members", - "blob": "1a0b00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0bf7010000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 0", + "1 | Max : 503", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 0", + "1 | Max : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -11764,9 +11909,9 @@ ] }, { - "index": 488, + "index": 493, "name": "Society_Set_max_members", - "blob": "1a0bf7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0bf7010000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", "1 | Max : 503", @@ -11776,7 +11921,7 @@ "0 | Society : Set max members", "1 | Max : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -11785,20 +11930,20 @@ ] }, { - "index": 489, + "index": 494, "name": "Society_Set_max_members", - "blob": "1a0b00000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b34300000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 0", - "2 | Tip : KSM 0.000000000987" + "1 | Max : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 0", + "1 | Max : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11806,20 +11951,22 @@ ] }, { - "index": 490, + "index": 495, "name": "Society_Set_max_members", - "blob": "1a0b34300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0bd3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | Max : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 12340", + "1 | Max : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11827,23 +11974,23 @@ ] }, { - "index": 491, + "index": 496, "name": "Recovery_Set_recovered", - "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b01b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Lost [2/2] : PuqtMGste", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Lost [2/2] : PuqtMGste", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", "3 | Chain : Kusama", "4 | Nonce : 2339", "5 | Tip : KSM 0.000055555555", @@ -11854,28 +12001,26 @@ ] }, { - "index": 492, + "index": 497, "name": "Recovery_Set_recovered", - "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b01e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Lost [2/2] : a8GkEuTYa", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Lost [2/2] : a8GkEuTYa", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11883,26 +12028,28 @@ ] }, { - "index": 493, + "index": 498, "name": "Recovery_Set_recovered", - "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.00123456789" + "1 | Lost [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Lost [2/2] : r9TQhU9HW", + "2 | Rescuer [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | Rescuer [2/2] : PuqtMGste", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Lost [2/2] : r9TQhU9HW", + "2 | Rescuer [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | Rescuer [2/2] : PuqtMGste", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11910,26 +12057,26 @@ ] }, { - "index": 494, + "index": 499, "name": "Recovery_Set_recovered", - "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b01dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe07369cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.000000000987" + "1 | Lost [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Lost [2/2] : W2YqpsEiW", + "2 | Rescuer [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "2 | Rescuer [2/2] : Ho6PzgCdQ", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Lost [2/2] : W2YqpsEiW", + "2 | Rescuer [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "2 | Rescuer [2/2] : Ho6PzgCdQ", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11937,28 +12084,26 @@ ] }, { - "index": 495, + "index": 500, "name": "Recovery_Set_recovered", - "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0164d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11966,42 +12111,40 @@ ] }, { - "index": 496, + "index": 501, "name": "Recovery_Initiate_recovery", - "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0364d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Account [2/2] : TZdAHD41C" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Account [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 497, + "index": 502, "name": "Recovery_Initiate_recovery", - "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b03e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", @@ -12012,22 +12155,22 @@ ] }, { - "index": 498, + "index": 503, "name": "Recovery_Initiate_recovery", - "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Account [2/2] : r9TQhU9HW", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Account [2/2] : r9TQhU9HW", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12035,22 +12178,22 @@ ] }, { - "index": 499, + "index": 504, "name": "Recovery_Initiate_recovery", - "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b03e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12058,22 +12201,22 @@ ] }, { - "index": 500, + "index": 505, "name": "Recovery_Initiate_recovery", - "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Account [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Account [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12081,28 +12224,26 @@ ] }, { - "index": 501, + "index": 506, "name": "Recovery_Vouch_recovery", - "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b04e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Lost [2/2] : 3Ph4miYfg", + "2 | Rescuer [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "2 | Rescuer [2/2] : a8GkEuTYa", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Lost [2/2] : 3Ph4miYfg", + "2 | Rescuer [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "2 | Rescuer [2/2] : a8GkEuTYa", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12110,79 +12251,77 @@ ] }, { - "index": 502, + "index": 507, "name": "Recovery_Vouch_recovery", - "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0464d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Rescuer [2/2] : 3Ph4miYfg", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 503, + "index": 508, "name": "Recovery_Vouch_recovery", - "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b04e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn" + "1 | Lost [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Lost [2/2] : 3Ph4miYfg", + "2 | Rescuer [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Rescuer [2/2] : 6JtYYhKnN", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Lost [2/2] : 3Ph4miYfg", + "2 | Rescuer [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Rescuer [2/2] : 6JtYYhKnN", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 504, + "index": 509, "name": "Recovery_Vouch_recovery", - "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b04e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Lost [2/2] : a8GkEuTYa", + "2 | Rescuer [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Rescuer [2/2] : MCzmwrXrR", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Lost [2/2] : a8GkEuTYa", + "2 | Rescuer [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Rescuer [2/2] : MCzmwrXrR", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -12191,26 +12330,26 @@ ] }, { - "index": 505, + "index": 510, "name": "Recovery_Vouch_recovery", - "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0464d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d316a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", - "3 | Tip : KSM 5.552342355555" + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | Rescuer [2/2] : r9TQhU9HW", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lost [2/2] : DyGtAWNbn", - "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Rescuer [2/2] : DyGtAWNbn", + "1 | Lost [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lost [2/2] : TZdAHD41C", + "2 | Rescuer [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | Rescuer [2/2] : r9TQhU9HW", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12218,43 +12357,45 @@ ] }, { - "index": 506, + "index": 511, "name": "Recovery_Claim_recovery", - "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0564d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn" + "1 | Account [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Account [2/2] : TZdAHD41C", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Account [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 507, + "index": 512, "name": "Recovery_Claim_recovery", - "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b05f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -12264,24 +12405,22 @@ ] }, { - "index": 508, + "index": 513, "name": "Recovery_Claim_recovery", - "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b05e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Account [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Account [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Account [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12289,43 +12428,45 @@ ] }, { - "index": 509, + "index": 514, "name": "Recovery_Claim_recovery", - "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b05e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn" + "1 | Account [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Account [2/2] : a8GkEuTYa", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Account [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 510, + "index": 515, "name": "Recovery_Claim_recovery", - "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b059cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12333,24 +12474,22 @@ ] }, { - "index": 511, + "index": 516, "name": "Recovery_Close_recovery", - "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b06f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Rescuer [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Rescuer [2/2] : 6JtYYhKnN", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Rescuer [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12358,22 +12497,22 @@ ] }, { - "index": 512, + "index": 517, "name": "Recovery_Close_recovery", - "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b06e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Rescuer [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Rescuer [2/2] : a8GkEuTYa", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Rescuer [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12381,19 +12520,19 @@ ] }, { - "index": 513, + "index": 518, "name": "Recovery_Close_recovery", - "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b06b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Rescuer [2/2] : PuqtMGste", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Rescuer [2/2] : PuqtMGste", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", @@ -12404,22 +12543,22 @@ ] }, { - "index": 514, + "index": 519, "name": "Recovery_Close_recovery", - "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0664d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000055555555" + "1 | Rescuer [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Rescuer [2/2] : TZdAHD41C", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Rescuer [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12427,24 +12566,22 @@ ] }, { - "index": 515, + "index": 520, "name": "Recovery_Close_recovery", - "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b0664d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Rescuer [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Rescuer [2/2] : TZdAHD41C", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Rescuer [2/2] : DyGtAWNbn", + "1 | Rescuer [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Rescuer [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12452,18 +12589,18 @@ ] }, { - "index": 516, + "index": 521, "name": "Recovery_Remove_recovery", - "blob": "1b07d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Remove recovery", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip : KSM 0.000000000987", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12471,54 +12608,56 @@ ] }, { - "index": 517, + "index": 522, "name": "Recovery_Remove_recovery", - "blob": "1b07d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Recovery : Remove recovery" + "0 | Recovery : Remove recovery", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 518, + "index": 523, "name": "Recovery_Remove_recovery", - "blob": "1b07d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Recovery : Remove recovery", - "1 | Tip : KSM 0.00123456789" + "0 | Recovery : Remove recovery" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 519, + "index": 524, "name": "Recovery_Remove_recovery", - "blob": "1b07d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Remove recovery", - "1 | Tip : KSM 0.000000000987" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12526,41 +12665,41 @@ ] }, { - "index": 520, + "index": 525, "name": "Recovery_Remove_recovery", - "blob": "1b07d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Recovery : Remove recovery", - "1 | Tip : KSM 0.000000000987" + "0 | Recovery : Remove recovery" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 521, + "index": 526, "name": "Recovery_Cancel_recovered", - "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b08f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Account [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12568,42 +12707,40 @@ ] }, { - "index": 522, + "index": 527, "name": "Recovery_Cancel_recovered", - "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b08e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Account [2/2] : a8GkEuTYa" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Account [2/2] : a8GkEuTYa", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 523, + "index": 528, "name": "Recovery_Cancel_recovered", - "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b08e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Account [2/2] : MCzmwrXrR", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip : KSM 0.00123456789", @@ -12614,21 +12751,21 @@ ] }, { - "index": 524, + "index": 529, "name": "Recovery_Cancel_recovered", - "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b08dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Account [2/2] : W2YqpsEiW", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Account [2/2] : W2YqpsEiW", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -12637,22 +12774,22 @@ ] }, { - "index": 525, + "index": 530, "name": "Recovery_Cancel_recovered", - "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b089cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Account [2/2] : DyGtAWNbn", + "1 | Account [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Account [2/2] : Ho6PzgCdQ", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12660,28 +12797,26 @@ ] }, { - "index": 526, + "index": 531, "name": "Vesting_Vest", - "blob": "1c00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Vesting : Vest", - "1 | Tip : KSM 0.000000000987" + "0 | Vesting : Vest" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 527, + "index": 532, "name": "Vesting_Vest", - "blob": "1c00d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", "1 | Tip : KSM 5.552342355555" @@ -12689,7 +12824,7 @@ "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 0", + "2 | Nonce : 100", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -12698,18 +12833,20 @@ ] }, { - "index": 528, + "index": 533, "name": "Vesting_Vest", - "blob": "1c00d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12717,18 +12854,18 @@ ] }, { - "index": 529, + "index": 534, "name": "Vesting_Vest", - "blob": "1c00d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12736,18 +12873,18 @@ ] }, { - "index": 530, + "index": 535, "name": "Vesting_Vest", - "blob": "1c00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 0.000055555555", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12755,22 +12892,22 @@ ] }, { - "index": 531, + "index": 536, "name": "Vesting_Vest_other", - "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.000000000987" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12778,24 +12915,22 @@ ] }, { - "index": 532, + "index": 537, "name": "Vesting_Vest_other", - "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12803,22 +12938,22 @@ ] }, { - "index": 533, + "index": 538, "name": "Vesting_Vest_other", - "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", - "2 | Tip : KSM 0.00123456789" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12826,43 +12961,47 @@ ] }, { - "index": 534, + "index": 539, "name": "Vesting_Vest_other", - "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT" + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 535, + "index": 540, "name": "Vesting_Vest_other", - "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "1 | Target [2/2] : G1ft7ngXT", + "1 | Target [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "1 | Target [2/2] : bwPWshbc6", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -12872,22 +13011,24 @@ ] }, { - "index": 536, + "index": 541, "name": "Vesting_Merge_schedules", - "blob": "1c049d1c0000d3040000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c043430000034300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", - "2 | Schedule2 index : 1235", - "3 | Tip : KSM 0.000000000987" + "1 | Schedule1 index : 12340", + "2 | Schedule2 index : 12340", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", - "2 | Schedule2 index : 1235", + "1 | Schedule1 index : 12340", + "2 | Schedule2 index : 12340", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12895,43 +13036,45 @@ ] }, { - "index": 537, + "index": 542, "name": "Vesting_Merge_schedules", - "blob": "1c049d1c00009d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c04000000009d1c0000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", - "2 | Schedule2 index : 7325" + "1 | Schedule1 index : 0", + "2 | Schedule2 index : 7325", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", + "1 | Schedule1 index : 0", "2 | Schedule2 index : 7325", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 538, + "index": 543, "name": "Vesting_Merge_schedules", - "blob": "1c0400000000d3040000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c04d30400009d1c0000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 0", - "2 | Schedule2 index : 1235", - "3 | Tip : KSM 0.00123456789" + "1 | Schedule1 index : 1235", + "2 | Schedule2 index : 7325", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 0", - "2 | Schedule2 index : 1235", + "1 | Schedule1 index : 1235", + "2 | Schedule2 index : 7325", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12939,22 +13082,22 @@ ] }, { - "index": 539, + "index": 544, "name": "Vesting_Merge_schedules", - "blob": "1c0400000000f7010000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c04f7010000d3040000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 0", - "2 | Schedule2 index : 503", - "3 | Tip : KSM 5.552342355555" + "1 | Schedule1 index : 503", + "2 | Schedule2 index : 1235", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 0", - "2 | Schedule2 index : 503", + "1 | Schedule1 index : 503", + "2 | Schedule2 index : 1235", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12962,20 +13105,20 @@ ] }, { - "index": 540, + "index": 545, "name": "Vesting_Merge_schedules", - "blob": "1c04d3040000d3040000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c04d304000000000000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", "1 | Schedule1 index : 1235", - "2 | Schedule2 index : 1235" + "2 | Schedule2 index : 0" ], "output_expert": [ "0 | Vesting : Merge schedules", "1 | Schedule1 index : 1235", - "2 | Schedule2 index : 1235", + "2 | Schedule2 index : 0", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12983,28 +13126,28 @@ ] }, { - "index": 541, + "index": 546, "name": "Proxy_Proxy", - "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e00e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363010100002c000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Real [2/2] : 3Ph4miYfg", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.00123456789" + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Real [2/2] : 3Ph4miYfg", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13012,57 +13155,55 @@ ] }, { - "index": 542, + "index": 547, "name": "Proxy_Proxy", - "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010000002c000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e009cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461c010000002c000000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", + "1 | Real [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Real [2/2] : Ho6PzgCdQ", "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", - "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.00123456789" + "3 | Call [2/2] : 0.0000044%" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", + "1 | Real [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Real [2/2] : Ho6PzgCdQ", "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 543, + "index": 548, "name": "Proxy_Proxy", - "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e00f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864010100002c000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Real [2/2] : 6JtYYhKnN", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.000000000987" + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Real [2/2] : 6JtYYhKnN", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 1", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13070,55 +13211,57 @@ ] }, { - "index": 544, + "index": 549, "name": "Proxy_Proxy", - "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010000002c000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013010100002c000000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Any", + "1 | Real [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Real [2/2] : r9TQhU9HW", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", - "3 | Call [2/2] : 0.0000044%" + "3 | Call [2/2] : 0.0000044%", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Any", + "1 | Real [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Real [2/2] : r9TQhU9HW", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 545, + "index": 550, "name": "Proxy_Proxy", - "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e00e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553010100002c000000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Real [2/2] : a8GkEuTYa", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.000000000987" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Real [2/2] : DyGtAWNbn", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Real [2/2] : a8GkEuTYa", + "2 | Force proxy type : NonTransfer", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 0", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13126,25 +13269,25 @@ ] }, { - "index": 546, + "index": 551, "name": "Proxy_Add_proxy", - "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f02ff030000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e01e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855300b3e30100d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 1023", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : Any", + "3 | Delay : 123827", "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 1023", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : Any", + "3 | Delay : 123827", "4 | Chain : Kusama", - "5 | Nonce : 100", + "5 | Nonce : 1", "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13153,53 +13296,51 @@ ] }, { - "index": 547, + "index": 552, "name": "Proxy_Add_proxy", - "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01ac350000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e01e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855301b3e30100d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", "2 | Proxy type : NonTransfer", - "3 | Delay : 13740", - "4 | Tip : KSM 0.00123456789" + "3 | Delay : 123827" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", "2 | Proxy type : NonTransfer", - "3 | Delay : 13740", + "3 | Delay : 123827", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 548, + "index": 553, "name": "Proxy_Add_proxy", - "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f027b000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e01e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36300ac350000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 123", - "4 | Tip : KSM 0.000000000987" + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", + "2 | Proxy type : Any", + "3 | Delay : 13740", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 123", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", + "2 | Proxy type : Any", + "3 | Delay : 13740", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 1", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13207,26 +13348,26 @@ ] }, { - "index": 549, + "index": 554, "name": "Proxy_Add_proxy", - "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f02ff030000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e01e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36302ac350000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", "2 | Proxy type : Governance", - "3 | Delay : 1023", - "4 | Tip : KSM 0.000055555555" + "3 | Delay : 13740", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", "2 | Proxy type : Governance", - "3 | Delay : 1023", + "3 | Delay : 13740", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 2339", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13234,24 +13375,24 @@ ] }, { - "index": 550, + "index": 555, "name": "Proxy_Add_proxy", - "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f027b000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e01e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e485530100000000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 123" + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : NonTransfer", + "3 | Delay : 0" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Delay : 123", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : NonTransfer", + "3 | Delay : 0", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13259,51 +13400,57 @@ ] }, { - "index": 551, + "index": 556, "name": "Proxy_Remove_proxy", - "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0325010000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e02e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36302ac350000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Staking", - "3 | Delay : 293" + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", + "2 | Proxy type : Governance", + "3 | Delay : 13740", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Staking", - "3 | Delay : 293", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", + "2 | Proxy type : Governance", + "3 | Delay : 13740", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 552, + "index": 557, "name": "Proxy_Remove_proxy", - "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f007b000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e02e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855302ac350000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Any", - "3 | Delay : 123", - "4 | Tip : KSM 0.000055555555" + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : Governance", + "3 | Delay : 13740", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Any", - "3 | Delay : 123", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Proxy type : Governance", + "3 | Delay : 13740", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 100", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13311,26 +13458,26 @@ ] }, { - "index": 553, + "index": 558, "name": "Proxy_Remove_proxy", - "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0100000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e02e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a3630100000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", "2 | Proxy type : NonTransfer", "3 | Delay : 0", - "4 | Tip : KSM 5.552342355555" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Delegate [2/2] : 3Ph4miYfg", "2 | Proxy type : NonTransfer", "3 | Delay : 0", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip : KSM 5.552342355555", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13338,25 +13485,25 @@ ] }, { - "index": 554, + "index": 559, "name": "Proxy_Remove_proxy", - "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0325010000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e02e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d67401ac350000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Staking", - "3 | Delay : 293", + "1 | Delegate [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Delegate [2/2] : MCzmwrXrR", + "2 | Proxy type : NonTransfer", + "3 | Delay : 13740", "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : Staking", - "3 | Delay : 293", + "1 | Delegate [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Delegate [2/2] : MCzmwrXrR", + "2 | Proxy type : NonTransfer", + "3 | Delay : 13740", "4 | Chain : Kusama", - "5 | Nonce : 2339", + "5 | Nonce : 50283", "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13365,26 +13512,26 @@ ] }, { - "index": 555, + "index": 560, "name": "Proxy_Remove_proxy", - "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0101000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff09301302b3e30100d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : NonTransfer", - "3 | Delay : 1", - "4 | Tip : KSM 0.000055555555" + "1 | Delegate [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Delegate [2/2] : r9TQhU9HW", + "2 | Proxy type : Governance", + "3 | Delay : 123827", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Proxy type : NonTransfer", - "3 | Delay : 1", + "1 | Delegate [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Delegate [2/2] : r9TQhU9HW", + "2 | Proxy type : Governance", + "3 | Delay : 123827", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 1", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13392,18 +13539,18 @@ ] }, { - "index": 556, + "index": 561, "name": "Proxy_Remove_proxies", - "blob": "1e03d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13411,35 +13558,37 @@ ] }, { - "index": 557, + "index": 562, "name": "Proxy_Remove_proxies", - "blob": "1e03d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Proxy : Remove proxies" + "0 | Proxy : Remove proxies", + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 558, + "index": 563, "name": "Proxy_Remove_proxies", - "blob": "1e03d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13447,26 +13596,28 @@ ] }, { - "index": 559, + "index": 564, "name": "Proxy_Remove_proxies", - "blob": "1e03d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Proxy : Remove proxies" + "0 | Proxy : Remove proxies", + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 560, + "index": 565, "name": "Proxy_Remove_proxies", - "blob": "1e03d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", "1 | Tip : KSM 0.00123456789" @@ -13483,47 +13634,53 @@ ] }, { - "index": 561, + "index": 566, "name": "Proxy_Anonymous", - "blob": "1e0400010000004e03d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0402b3e301000004d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Any", - "2 | Delay : 1", - "3 | Index : 846" + "1 | Proxy type : Governance", + "2 | Delay : 123827", + "3 | Index : 1024", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Any", - "2 | Delay : 1", - "3 | Index : 846", + "1 | Proxy type : Governance", + "2 | Delay : 123827", + "3 | Index : 1024", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 562, + "index": 567, "name": "Proxy_Anonymous", - "blob": "1e0402b3e301005c00d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400250100005c00d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Governance", - "2 | Delay : 123827", + "1 | Proxy type : Any", + "2 | Delay : 293", "3 | Index : 92", - "4 | Tip : KSM 0.00123456789" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Governance", - "2 | Delay : 123827", + "1 | Proxy type : Any", + "2 | Delay : 293", "3 | Index : 92", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 100", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13531,47 +13688,51 @@ ] }, { - "index": 563, + "index": 568, "name": "Proxy_Anonymous", - "blob": "1e0400250100000100d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0402ac3500002c01d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Any", - "2 | Delay : 293", - "3 | Index : 1" + "1 | Proxy type : Governance", + "2 | Delay : 13740", + "3 | Index : 300", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Any", - "2 | Delay : 293", - "3 | Index : 1", + "1 | Proxy type : Governance", + "2 | Delay : 13740", + "3 | Index : 300", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Tip : KSM 5.552342355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 564, + "index": 569, "name": "Proxy_Anonymous", - "blob": "1e0400010000000100d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400010000000004d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", "2 | Delay : 1", - "3 | Index : 1", - "4 | Tip : KSM 0.00123456789" + "3 | Index : 1024", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", "2 | Delay : 1", - "3 | Index : 1", + "3 | Index : 1024", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 1", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13579,26 +13740,24 @@ ] }, { - "index": 565, + "index": 570, "name": "Proxy_Anonymous", - "blob": "1e0400010000002c01d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400250100002c01d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", - "2 | Delay : 1", + "2 | Delay : 293", "3 | Index : 300", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", - "2 | Delay : 1", + "2 | Delay : 293", "3 | Index : 300", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 1", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13606,61 +13765,59 @@ ] }, { - "index": 566, + "index": 571, "name": "Proxy_Kill_anonymous", - "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f020004dc0916d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e05f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864005c008c8cd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Index : 1024", - "4 | Height : 55", - "5 | Ext index : 1410", - "6 | Tip : KSM 5.552342355555" + "1 | Spawner [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Spawner [2/2] : 6JtYYhKnN", + "2 | Proxy type : Any", + "3 | Index : 92", + "4 | Height : 35", + "5 | Ext index : 35" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Index : 1024", - "4 | Height : 55", - "5 | Ext index : 1410", + "1 | Spawner [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Spawner [2/2] : 6JtYYhKnN", + "2 | Proxy type : Any", + "3 | Index : 92", + "4 | Height : 35", + "5 | Ext index : 35", "6 | Chain : Kusama", "7 | Nonce : 1", - "8 | Tip : KSM 5.552342355555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "11 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 567, + "index": 572, "name": "Proxy_Kill_anonymous", - "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f035c00091696fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e059cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461c0301000dfd199ed5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", + "1 | Spawner [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Spawner [2/2] : Ho6PzgCdQ", "2 | Proxy type : Staking", - "3 | Index : 92", - "4 | Height : 1410", - "5 | Ext index : 500776677", - "6 | Tip : KSM 5.552342355555" + "3 | Index : 1", + "4 | Height : 16195", + "5 | Ext index : 10118", + "6 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", + "1 | Spawner [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Spawner [2/2] : Ho6PzgCdQ", "2 | Proxy type : Staking", - "3 | Index : 92", - "4 | Height : 1410", - "5 | Ext index : 500776677", + "3 | Index : 1", + "4 | Height : 16195", + "5 | Ext index : 10118", "6 | Chain : Kusama", - "7 | Nonce : 100", - "8 | Tip : KSM 5.552342355555", + "7 | Nonce : 2339", + "8 | Tip : KSM 0.000055555555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13668,61 +13825,59 @@ ] }, { - "index": 568, + "index": 573, "name": "Proxy_Kill_anonymous", - "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f022c01f1990916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013034e03b62896300dfdd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Index : 300", - "4 | Height : 9852", - "5 | Ext index : 1410", - "6 | Tip : KSM 0.00123456789" + "1 | Spawner [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Spawner [2/2] : r9TQhU9HW", + "2 | Proxy type : Staking", + "3 | Index : 846", + "4 | Height : 203786797", + "5 | Ext index : 16195" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : Governance", - "3 | Index : 300", - "4 | Height : 9852", - "5 | Ext index : 1410", + "1 | Spawner [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Spawner [2/2] : r9TQhU9HW", + "2 | Proxy type : Staking", + "3 | Index : 846", + "4 | Height : 203786797", + "5 | Ext index : 16195", "6 | Chain : Kusama", "7 | Nonce : 1", - "8 | Tip : KSM 0.00123456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "11 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 569, + "index": 574, "name": "Proxy_Kill_anonymous", - "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f005c00f199dcd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e059cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461c005c00199eb6289630d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", + "1 | Spawner [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Spawner [2/2] : Ho6PzgCdQ", "2 | Proxy type : Any", "3 | Index : 92", - "4 | Height : 9852", - "5 | Ext index : 55", - "6 | Tip : KSM 0.000000000987" + "4 | Height : 10118", + "5 | Ext index : 203786797", + "6 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", + "1 | Spawner [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Spawner [2/2] : Ho6PzgCdQ", "2 | Proxy type : Any", "3 | Index : 92", - "4 | Height : 9852", - "5 | Ext index : 55", + "4 | Height : 10118", + "5 | Ext index : 203786797", "6 | Chain : Kusama", "7 | Nonce : 2339", - "8 | Tip : KSM 0.000000000987", + "8 | Tip : KSM 0.000055555555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13730,29 +13885,29 @@ ] }, { - "index": 570, + "index": 575, "name": "Proxy_Kill_anonymous", - "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f014e0396fb6477f199d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e05b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68025c008cb6289630d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : NonTransfer", - "3 | Index : 846", - "4 | Height : 500776677", - "5 | Ext index : 9852", + "1 | Spawner [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Spawner [2/2] : PuqtMGste", + "2 | Proxy type : Governance", + "3 | Index : 92", + "4 | Height : 35", + "5 | Ext index : 203786797", "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Spawner [2/2] : DyGtAWNbn", - "2 | Proxy type : NonTransfer", - "3 | Index : 846", - "4 | Height : 500776677", - "5 | Ext index : 9852", + "1 | Spawner [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Spawner [2/2] : PuqtMGste", + "2 | Proxy type : Governance", + "3 | Index : 92", + "4 | Height : 35", + "5 | Ext index : 203786797", "6 | Chain : Kusama", - "7 | Nonce : 1", + "7 | Nonce : 0", "8 | Tip : KSM 0.00123456789", "9 | Era Phase : 61", "10 | Era Period : 64", @@ -13761,32 +13916,32 @@ ] }, { - "index": 571, + "index": 576, "name": "Proxy_Proxy_announced", - "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e09dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736010300002c000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Delegate [2/2] : W2YqpsEiW", + "2 | Real [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Real [2/2] : W2YqpsEiW", "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Tip : KSM 5.552342355555" + "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", + "1 | Delegate [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Delegate [2/2] : W2YqpsEiW", + "2 | Real [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Real [2/2] : W2YqpsEiW", "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 2339", + "7 | Tip : KSM 0.000055555555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13794,34 +13949,32 @@ ] }, { - "index": 572, + "index": 577, "name": "Proxy_Proxy_announced", - "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e09e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e4855364d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31010000002c000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Real [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Real [2/2] : TZdAHD41C", + "3 | Force proxy type : Any", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789" + "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Real [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "2 | Real [2/2] : TZdAHD41C", + "3 | Force proxy type : Any", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 0", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789", + "6 | Nonce : 50283", + "7 | Tip : KSM 5.552342355555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13829,27 +13982,27 @@ ] }, { - "index": 573, + "index": 578, "name": "Proxy_Proxy_announced", - "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e09e2bee4eebadbed9fa502a28fdf0f2bba5c810eb8835cbf0e3e99444cf7e48553e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363010300002c000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Real [2/2] : 3Ph4miYfg", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : Hhd3gwJb7ujyXSN54Z6w43q8Gr9sUq73zywHiV", + "1 | Delegate [2/2] : a8GkEuTYa", + "2 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Real [2/2] : 3Ph4miYfg", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", @@ -13862,98 +14015,341 @@ ] }, { - "index": 574, + "index": 579, "name": "Proxy_Proxy_announced", - "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e09f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363010100002c000000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Staking", + "1 | Delegate [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Delegate [2/2] : 6JtYYhKnN", + "2 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Real [2/2] : 3Ph4miYfg", + "3 | Force proxy type : NonTransfer", "4 | Call [1/2] : Fill block", - "4 | Call [2/2] : 0.0000044%" + "4 | Call [2/2] : 0.0000044%", + "5 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Staking", + "1 | Delegate [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Delegate [2/2] : 6JtYYhKnN", + "2 | Real [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Real [2/2] : 3Ph4miYfg", + "3 | Force proxy type : NonTransfer", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 100", + "7 | Tip : KSM 0.00123456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 575, + "index": 580, "name": "Proxy_Proxy_announced", - "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e09e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674010100002c000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Staking", + "1 | Delegate [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Delegate [2/2] : MCzmwrXrR", + "2 | Real [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Real [2/2] : MCzmwrXrR", + "3 | Force proxy type : NonTransfer", "4 | Call [1/2] : Fill block", - "4 | Call [2/2] : 0.0000044%" + "4 | Call [2/2] : 0.0000044%", + "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Delegate [2/2] : DyGtAWNbn", - "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Real [2/2] : DyGtAWNbn", - "3 | Force proxy type : Staking", + "1 | Delegate [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Delegate [2/2] : MCzmwrXrR", + "2 | Real [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Real [2/2] : MCzmwrXrR", + "3 | Force proxy type : NonTransfer", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 1", + "7 | Tip : KSM 0.000055555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 576, - "name": "Multisig_As_multi", - "blob": "1f0101000482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa700000102700001800002c000000012362000000000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", - "3 | Maybe timepoint [1/2] : 28842", + "index": 581, + "name": "Multisig_As_multi_threshold_1", + "blob": "1f001484a7b31b523f24825b21545dd8b187cfb9cccd3d8174372bfec0218a90ba1d24ace85db68af83817a10e4b3f19cee77cf9c5cc4cb85ff34f7bdf95f70581a4194e985a9602e38b68958992e06d513d21b281a5819356c85fda9733aaaea850130e482ab2f300a8c5aeb2fd2eb4e529c06a1c620712716a75ca6581813c093e05d8fdd3f8de055cb061b1ac230af79489924bd4fb6e8f64f7ac9e1d256dd6080100002c000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "1 | Other signatories [2/10] : 9NghUjYZM", + "1 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "1 | Other signatories [4/10] : 4bxjJhDni", + "1 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "1 | Other signatories [6/10] : JbLjArNSv", + "1 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "1 | Other signatories [8/10] : dPAHZ2auQ", + "1 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "1 | Other signatories [10/10] : oABM1BRbs", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "1 | Other signatories [2/10] : 9NghUjYZM", + "1 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "1 | Other signatories [4/10] : 4bxjJhDni", + "1 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "1 | Other signatories [6/10] : JbLjArNSv", + "1 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "1 | Other signatories [8/10] : dPAHZ2auQ", + "1 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "1 | Other signatories [10/10] : oABM1BRbs", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Chain : Kusama", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 582, + "name": "Multisig_As_multi_threshold_1", + "blob": "1f0020fa3af7871365e948f100706328d29fd1650919312374fd36739f7fa2cbd5776ffab6b3d52a1fed35af76b193dba18888b5dc061b8669aaef5aedf023d778e04c2ee2bc3c6f99894d5ef453769a994f82c92c1164766c1f1d96dabdb8d14d70186274f9bf25953160ad701e028c4e50c7ad9428f29c990701f3d10d9059167f0a687661321e17136d48472139980b2972767c0742e113a19c011ff0df964104631404df8f201374f84c0d1dc978caaaff36b938a9579ea274c1bb9692b95f1b4fb808d4d9620b7da1621045867c2562c2d85defc32eca683cb6cc5f1c5ef563173abb6622f24713ee0a357bdbffd7ca0e128cd4d059088914a5f7f0f4b38ca55100002c000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "1 | Other signatories [2/16] : k9bSeYCF8", + "1 | Other signatories [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "1 | Other signatories [4/16] : 5u3cVQvnd", + "1 | Other signatories [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "1 | Other signatories [6/16] : s1hZP8aqq", + "1 | Other signatories [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "1 | Other signatories [8/16] : WevrZjNbX", + "1 | Other signatories [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "1 | Other signatories [10/16] : sB4Vm2kif", + "1 | Other signatories [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "1 | Other signatories [12/16] : E7exKQypF", + "1 | Other signatories [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "1 | Other signatories [14/16] : R6DhuEKcg", + "1 | Other signatories [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "1 | Other signatories [16/16] : ZSdnRrvnC", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "1 | Other signatories [2/16] : k9bSeYCF8", + "1 | Other signatories [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "1 | Other signatories [4/16] : 5u3cVQvnd", + "1 | Other signatories [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "1 | Other signatories [6/16] : s1hZP8aqq", + "1 | Other signatories [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "1 | Other signatories [8/16] : WevrZjNbX", + "1 | Other signatories [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "1 | Other signatories [10/16] : sB4Vm2kif", + "1 | Other signatories [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "1 | Other signatories [12/16] : E7exKQypF", + "1 | Other signatories [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "1 | Other signatories [14/16] : R6DhuEKcg", + "1 | Other signatories [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "1 | Other signatories [16/16] : ZSdnRrvnC", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Chain : Kusama", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 583, + "name": "Multisig_As_multi_threshold_1", + "blob": "1f0018accce8ad1521b8c7b1eb819dffae2d67d337c3e692c3b406f2c2d84c139f44234a9bd91885a9678e191258e544f1933cc96ce3bdaae2cd4036a3477595ec8b26c644d49c3960a5d23779154cf4689195b9e021c25102cf43d0dd492ccb7958549467e2be236bbbc93b5a17d53bfaa0de8b5702890c55202b367a2a0e0daf4057ae994574ab2dae2b5cfba89b00f82fa8d5286298ee01a4bb5c9eba7a1292e334765e933d854a008c0163d16bdb271c3beb68d805a65873f366ad615e342ef21700002c000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "1 | Other signatories [2/12] : j9choLBsj", + "1 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "1 | Other signatories [4/12] : fprRgj1tm", + "1 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "1 | Other signatories [6/12] : 7hyKscg4c", + "1 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "1 | Other signatories [8/12] : m243DVkbB", + "1 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "1 | Other signatories [10/12] : 7oHsh87Eh", + "1 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "1 | Other signatories [12/12] : umhUSaEsE", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "1 | Other signatories [2/12] : j9choLBsj", + "1 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "1 | Other signatories [4/12] : fprRgj1tm", + "1 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "1 | Other signatories [6/12] : 7hyKscg4c", + "1 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "1 | Other signatories [8/12] : m243DVkbB", + "1 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "1 | Other signatories [10/12] : 7oHsh87Eh", + "1 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "1 | Other signatories [12/12] : umhUSaEsE", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Chain : Kusama", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 584, + "name": "Multisig_As_multi_threshold_1", + "blob": "1f000436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567d00002c000000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Other signatories [2/2] : yHrAH3Tir", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%" + ], + "output_expert": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "1 | Other signatories [2/2] : yHrAH3Tir", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Chain : Kusama", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 585, + "name": "Multisig_As_multi_threshold_1", + "blob": "1f00104a297f300eeb1933fcdc6901b50c0fd34e28da78979f3e33a3b2b9d2a0009f582e4af6544cf94d1cad946300cc170711fc80e0afdc1d4d741d18e782516a8b2c12dd17d0f2456b52d6140570ab46f1409926597ca8aeeb3189d0942ef74970177416ff94d5e73c4ab62b8c9bd87a615670674ebd702f82fac71120aeb277f50f00002c000000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "1 | Other signatories [2/8] : h3b5phhgg", + "1 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "1 | Other signatories [4/8] : TTjvacPbQ", + "1 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "1 | Other signatories [6/8] : XgUCqoC4t", + "1 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "1 | Other signatories [8/8] : gJqeYooFD", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Multisig : As multi threshold 1", + "1 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "1 | Other signatories [2/8] : h3b5phhgg", + "1 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "1 | Other signatories [4/8] : TTjvacPbQ", + "1 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "1 | Other signatories [6/8] : XgUCqoC4t", + "1 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "1 | Other signatories [8/8] : gJqeYooFD", + "2 | Call [1/2] : Fill block", + "2 | Call [2/2] : 0.0000044%", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 586, + "name": "Multisig_As_multi", + "blob": "1f015c0020fa3af7871365e948f100706328d29fd1650919312374fd36739f7fa2cbd5776ffab6b3d52a1fed35af76b193dba18888b5dc061b8669aaef5aedf023d778e04c2ee2bc3c6f99894d5ef453769a994f82c92c1164766c1f1d96dabdb8d14d70186274f9bf25953160ad701e028c4e50c7ad9428f29c990701f3d10d9059167f0a687661321e17136d48472139980b2972767c0742e113a19c011ff0df964104631404df8f201374f84c0d1dc978caaaff36b938a9579ea274c1bb9692b95f1b4fb808d4d9620b7da1621045867c2562c2d85defc32eca683cb6cc5f1c5ef563173abb6622f24713ee0a357bdbffd7ca0e128cd4d059088914a5f7f0f4b38ca55101aa700000102700001800002c000000002362000000000000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Multisig : As multi", + "1 | Threshold : 92", + "2 | Other signatories [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "2 | Other signatories [2/16] : k9bSeYCF8", + "2 | Other signatories [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "2 | Other signatories [4/16] : 5u3cVQvnd", + "2 | Other signatories [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "2 | Other signatories [6/16] : s1hZP8aqq", + "2 | Other signatories [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "2 | Other signatories [8/16] : WevrZjNbX", + "2 | Other signatories [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "2 | Other signatories [10/16] : sB4Vm2kif", + "2 | Other signatories [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "2 | Other signatories [12/16] : E7exKQypF", + "2 | Other signatories [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "2 | Other signatories [14/16] : R6DhuEKcg", + "2 | Other signatories [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "2 | Other signatories [16/16] : ZSdnRrvnC", + "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", + "5 | Store call : False", "6 | Max weight : 25123", - "7 | Tip : KSM 0.000055555555" + "7 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 92", + "2 | Other signatories [1/16] : JER1HjazUqJz51UniAszDDK1nPYV1Z1xkk559i", + "2 | Other signatories [2/16] : k9bSeYCF8", + "2 | Other signatories [3/16] : JF3mCktBYxvenV9CQbCEMf8FBztBEiD6sAe8LE", + "2 | Other signatories [4/16] : 5u3cVQvnd", + "2 | Other signatories [5/16] : Ddo5JLAhSCaSjcxTCfEMgHwKs6LsKx4FHmctBG", + "2 | Other signatories [6/16] : s1hZP8aqq", + "2 | Other signatories [7/16] : EoQxbyeweh8w4cufT6Y6iDNB5qqpeT5jioQRsP", + "2 | Other signatories [8/16] : WevrZjNbX", + "2 | Other signatories [9/16] : EwHfTcyuxC2Gx39DfYShbbWm24W8UnbgZ2wgKL", + "2 | Other signatories [10/16] : sB4Vm2kif", + "2 | Other signatories [11/16] : D2ZvViPxZMoUfYG5phGy5Gnz1z8zG4q8wztSED", + "2 | Other signatories [12/16] : E7exKQypF", + "2 | Other signatories [13/16] : GjcxAyU48SWBWLukq2Xah7aioMsNjoGUNVxD2Z", + "2 | Other signatories [14/16] : R6DhuEKcg", + "2 | Other signatories [15/16] : DuKxstg4RkgtfDmBtJMZ9kJk8ur9G4komBbzRz", + "2 | Other signatories [16/16] : ZSdnRrvnC", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", + "5 | Store call : False", "6 | Max weight : 25123", "7 | Chain : Kusama", - "8 | Nonce : 1", - "9 | Tip : KSM 0.000055555555", + "8 | Nonce : 0", + "9 | Tip : KSM 0.00123456789", "10 | Era Phase : 61", "11 | Era Period : 64", "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13961,32 +14357,52 @@ ] }, { - "index": 577, + "index": 587, "name": "Multisig_As_multi", - "blob": "1f0101000482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa700000102700001800002c000000012362000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f014e0318accce8ad1521b8c7b1eb819dffae2d67d337c3e692c3b406f2c2d84c139f44234a9bd91885a9678e191258e544f1933cc96ce3bdaae2cd4036a3477595ec8b26c644d49c3960a5d23779154cf4689195b9e021c25102cf43d0dd492ccb7958549467e2be236bbbc93b5a17d53bfaa0de8b5702890c55202b367a2a0e0daf4057ae994574ab2dae2b5cfba89b00f82fa8d5286298ee01a4bb5c9eba7a1292e334765e933d854a008c0163d16bdb271c3beb68d805a65873f366ad615e342ef21701aa700000102700001800002c000000000000000000000000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", - "6 | Max weight : 25123" + "5 | Store call : False", + "6 | Max weight : 0" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", - "6 | Max weight : 25123", + "5 | Store call : False", + "6 | Max weight : 0", "7 | Chain : Kusama", "8 | Nonce : 1", "9 | Era Phase : 61", @@ -13996,55 +14412,47 @@ ] }, { - "index": 578, + "index": 588, "name": "Multisig_As_multi", - "blob": "1f015c001838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700001800002c000000010000000000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f010100104a297f300eeb1933fcdc6901b50c0fd34e28da78979f3e33a3b2b9d2a0009f582e4af6544cf94d1cad946300cc170711fc80e0afdc1d4d741d18e782516a8b2c12dd17d0f2456b52d6140570ab46f1409926597ca8aeeb3189d0942ef74970177416ff94d5e73c4ab62b8c9bd87a615670674ebd702f82fac71120aeb277f50f01aa700000102700001800002c000000012362000000000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 92", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 1", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", + "6 | Max weight : 25123", "7 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 92", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 1", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", + "6 | Max weight : 25123", "7 | Chain : Kusama", - "8 | Nonce : 0", + "8 | Nonce : 1", "9 | Tip : KSM 0.000000000987", "10 | Era Phase : 61", "11 | Era Period : 64", @@ -14053,119 +14461,87 @@ ] }, { - "index": 579, + "index": 589, "name": "Multisig_As_multi", - "blob": "1f014e031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e27201aa700000102700001800002c000000002362000000000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f014e030436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567d01aa700000102700001800002c000000000000000000000000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", "1 | Threshold : 846", - "2 | Other signatories [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "2 | Other signatories [2/14] : Wdk6br5YQ", - "2 | Other signatories [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "2 | Other signatories [4/14] : BmoqLJxyA", - "2 | Other signatories [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "2 | Other signatories [6/14] : kVGQ3xjtt", - "2 | Other signatories [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "2 | Other signatories [8/14] : EjcU4JCyR", - "2 | Other signatories [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "2 | Other signatories [10/14] : KAv6rp1cu", - "2 | Other signatories [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "2 | Other signatories [12/14] : qd5iDUNuG", - "2 | Other signatories [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "2 | Other signatories [14/14] : wnihdWnXG", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : False", - "6 | Max weight : 25123", - "7 | Tip : KSM 0.00123456789" + "6 | Max weight : 0" ], "output_expert": [ "0 | Multisig : As multi", "1 | Threshold : 846", - "2 | Other signatories [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", - "2 | Other signatories [2/14] : Wdk6br5YQ", - "2 | Other signatories [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", - "2 | Other signatories [4/14] : BmoqLJxyA", - "2 | Other signatories [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", - "2 | Other signatories [6/14] : kVGQ3xjtt", - "2 | Other signatories [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", - "2 | Other signatories [8/14] : EjcU4JCyR", - "2 | Other signatories [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", - "2 | Other signatories [10/14] : KAv6rp1cu", - "2 | Other signatories [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", - "2 | Other signatories [12/14] : qd5iDUNuG", - "2 | Other signatories [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", - "2 | Other signatories [14/14] : wnihdWnXG", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : False", - "6 | Max weight : 25123", + "6 | Max weight : 0", "7 | Chain : Kusama", - "8 | Nonce : 0", - "9 | Tip : KSM 0.00123456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "12 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Nonce : 1", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 580, + "index": 590, "name": "Multisig_As_multi", - "blob": "1f014e031838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700001800002c000000010000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f014e031484a7b31b523f24825b21545dd8b187cfb9cccd3d8174372bfec0218a90ba1d24ace85db68af83817a10e4b3f19cee77cf9c5cc4cb85ff34f7bdf95f70581a4194e985a9602e38b68958992e06d513d21b281a5819356c85fda9733aaaea850130e482ab2f300a8c5aeb2fd2eb4e529c06a1c620712716a75ca6581813c093e05d8fdd3f8de055cb061b1ac230af79489924bd4fb6e8f64f7ac9e1d256dd6080101aa700000102700001800002c000000012362000000000000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", "1 | Threshold : 846", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "2 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "2 | Other signatories [2/10] : 9NghUjYZM", + "2 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "2 | Other signatories [4/10] : 4bxjJhDni", + "2 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "2 | Other signatories [6/10] : JbLjArNSv", + "2 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "2 | Other signatories [8/10] : dPAHZ2auQ", + "2 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "2 | Other signatories [10/10] : oABM1BRbs", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789" + "6 | Max weight : 25123", + "7 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Multisig : As multi", "1 | Threshold : 846", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "2 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "2 | Other signatories [2/10] : 9NghUjYZM", + "2 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "2 | Other signatories [4/10] : 4bxjJhDni", + "2 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "2 | Other signatories [6/10] : JbLjArNSv", + "2 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "2 | Other signatories [8/10] : dPAHZ2auQ", + "2 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "2 | Other signatories [10/10] : oABM1BRbs", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", + "6 | Max weight : 25123", "7 | Chain : Kusama", - "8 | Nonce : 2339", - "9 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "9 | Tip [2/2] : 456789", + "8 | Nonce : 0", + "9 | Tip : KSM 0.000055555555", "10 | Era Phase : 61", "11 | Era Period : 64", "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14173,95 +14549,81 @@ ] }, { - "index": 581, + "index": 591, "name": "Multisig_Approve_as_multi", - "blob": "1f022c010482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0201000436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567d01aa70000010270000be7c1e4c47071b99439b936ab3c219a2d1886b85fb28122ce9a520169ceebd8d2362000000000000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Max weight : 0" + "4 | Call hash [1/2] : be7c1e4c47071b99439b936ab3c219a2d1886b", + "4 | Call hash [2/2] : 85fb28122ce9a520169ceebd8d", + "5 | Max weight : 25123", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Max weight : 0", + "4 | Call hash [1/2] : be7c1e4c47071b99439b936ab3c219a2d1886b", + "4 | Call hash [2/2] : 85fb28122ce9a520169ceebd8d", + "5 | Max weight : 25123", "6 | Chain : Kusama", "7 | Nonce : 1", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Tip : KSM 5.552342355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 582, + "index": 592, "name": "Multisig_Approve_as_multi", - "blob": "1f024e032080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7d01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f020004104a297f300eeb1933fcdc6901b50c0fd34e28da78979f3e33a3b2b9d2a0009f582e4af6544cf94d1cad946300cc170711fc80e0afdc1d4d741d18e782516a8b2c12dd17d0f2456b52d6140570ab46f1409926597ca8aeeb3189d0942ef74970177416ff94d5e73c4ab62b8c9bd87a615670674ebd702f82fac71120aeb277f50f01aa7000001027000087a181b9bede0380329d02ee819bcd266ae49dfd7dec7cd635a8c4a1a4a1bbbb0000000000000000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "1 | Threshold : 1024", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", "5 | Max weight : 0", - "6 | Tip : KSM 0.00123456789" + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "1 | Threshold : 1024", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", "5 | Max weight : 0", "6 | Chain : Kusama", "7 | Nonce : 2339", - "8 | Tip : KSM 0.00123456789", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14269,50 +14631,34 @@ ] }, { - "index": 583, + "index": 593, "name": "Multisig_Approve_as_multi", - "blob": "1f025c00149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e92801aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf082362000000000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0201000436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567d01aa70000010270000bd5caea4543be302999a28897a62589d496494ff834db701027aa90259d2796d2362000000000000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 92", - "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "2 | Other signatories [2/10] : nhmBqN68n", - "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "2 | Other signatories [4/10] : auzMC5Tst", - "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "2 | Other signatories [6/10] : 2opmno4dh", - "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "2 | Other signatories [8/10] : 4Bw4jugnm", - "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "2 | Other signatories [10/10] : tKP64yEmd", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : bd5caea4543be302999a28897a62589d496494", + "4 | Call hash [2/2] : ff834db701027aa90259d2796d", "5 | Max weight : 25123", - "6 | Tip : KSM 5.552342355555" + "6 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 92", - "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "2 | Other signatories [2/10] : nhmBqN68n", - "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "2 | Other signatories [4/10] : auzMC5Tst", - "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "2 | Other signatories [6/10] : 2opmno4dh", - "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "2 | Other signatories [8/10] : 4Bw4jugnm", - "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "2 | Other signatories [10/10] : tKP64yEmd", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : bd5caea4543be302999a28897a62589d496494", + "4 | Call hash [2/2] : ff834db701027aa90259d2796d", "5 | Max weight : 25123", "6 | Chain : Kusama", - "7 | Nonce : 100", - "8 | Tip : KSM 5.552342355555", + "7 | Nonce : 50283", + "8 | Tip : KSM 0.000000000987", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14320,54 +14666,54 @@ ] }, { - "index": 584, + "index": 594, "name": "Multisig_Approve_as_multi", - "blob": "1f0200041838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf082362000000000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f024e0318accce8ad1521b8c7b1eb819dffae2d67d337c3e692c3b406f2c2d84c139f44234a9bd91885a9678e191258e544f1933cc96ce3bdaae2cd4036a3477595ec8b26c644d49c3960a5d23779154cf4689195b9e021c25102cf43d0dd492ccb7958549467e2be236bbbc93b5a17d53bfaa0de8b5702890c55202b367a2a0e0daf4057ae994574ab2dae2b5cfba89b00f82fa8d5286298ee01a4bb5c9eba7a1292e334765e933d854a008c0163d16bdb271c3beb68d805a65873f366ad615e342ef21701aa70000010270000117cc877288463751b5c96ba15f2d93088f2e9b33049f3f34e44f0d4271b940f2362000000000000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", "5 | Max weight : 25123", - "6 | Tip : KSM 5.552342355555" + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", "5 | Max weight : 25123", "6 | Chain : Kusama", "7 | Nonce : 2339", - "8 | Tip : KSM 5.552342355555", + "8 | Tip : KSM 0.00123456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14375,62 +14721,46 @@ ] }, { - "index": 585, + "index": 595, "name": "Multisig_Approve_as_multi", - "blob": "1f0201002080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7d01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f020100104a297f300eeb1933fcdc6901b50c0fd34e28da78979f3e33a3b2b9d2a0009f582e4af6544cf94d1cad946300cc170711fc80e0afdc1d4d741d18e782516a8b2c12dd17d0f2456b52d6140570ab46f1409926597ca8aeeb3189d0942ef74970177416ff94d5e73c4ab62b8c9bd87a615670674ebd702f82fac71120aeb277f50f01aa70000010270000bd5caea4543be302999a28897a62589d496494ff834db701027aa90259d2796d2362000000000000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", "1 | Threshold : 1", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Max weight : 0", - "6 | Tip : KSM 0.00123456789" + "4 | Call hash [1/2] : bd5caea4543be302999a28897a62589d496494", + "4 | Call hash [2/2] : ff834db701027aa90259d2796d", + "5 | Max weight : 25123", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Approve as multi", "1 | Threshold : 1", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "2 | Other signatories [1/8] : EFZPUnSRK9YmLuB7ExDE2JmKCkJGiSHBHuj33m", + "2 | Other signatories [2/8] : h3b5phhgg", + "2 | Other signatories [3/8] : Dd1zJxauBG3efFfuTJt87J34uJCGXJg8v3FfUk", + "2 | Other signatories [4/8] : TTjvacPbQ", + "2 | Other signatories [5/8] : D144KZjZdH25ybbBTMufYtTxDqPuZLQaBk84fF", + "2 | Other signatories [6/8] : XgUCqoC4t", + "2 | Other signatories [7/8] : FCXuQVh1YCBmKxnRjcfzdZ1qw96zzdp6FxyyvM", + "2 | Other signatories [8/8] : gJqeYooFD", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Max weight : 0", + "4 | Call hash [1/2] : bd5caea4543be302999a28897a62589d496494", + "4 | Call hash [2/2] : ff834db701027aa90259d2796d", + "5 | Max weight : 25123", "6 | Chain : Kusama", "7 | Nonce : 100", - "8 | Tip : KSM 0.00123456789", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14438,60 +14768,32 @@ ] }, { - "index": 586, + "index": 596, "name": "Multisig_Cancel_as_multi", - "blob": "1f0300042080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7daa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0300040436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567daa7000001027000087a181b9bede0380329d02ee819bcd266ae49dfd7dec7cd635a8c4a1a4a1bbbbd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 1024", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Tip : KSM 5.552342355555" + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", + "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 1024", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 0", + "7 | Tip : KSM 0.000055555555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14499,60 +14801,34 @@ ] }, { - "index": 587, + "index": 597, "name": "Multisig_Cancel_as_multi", - "blob": "1f0301002080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7daa70000010270000bc1f4378ab31896bf73f945c9300c36489ae79c68cdea4b7ea49d6604eba610bd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f034e030436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567daa70000010270000117cc877288463751b5c96ba15f2d93088f2e9b33049f3f34e44f0d4271b940fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "1 | Threshold : 846", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : bc1f4378ab31896bf73f945c9300c36489ae79", - "4 | Call hash [2/2] : c68cdea4b7ea49d6604eba610b", - "5 | Tip : KSM 5.552342355555" + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", - "2 | Other signatories [2/16] : cPE9HNZtC", - "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", - "2 | Other signatories [4/16] : d9zfkoLPG", - "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", - "2 | Other signatories [6/16] : kPRyCgHWG", - "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", - "2 | Other signatories [8/16] : ihc3wMX7R", - "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", - "2 | Other signatories [10/16] : 4VDSd2fVA", - "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", - "2 | Other signatories [12/16] : kQZ2XjNoV", - "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", - "2 | Other signatories [14/16] : 2bm5TtoKh", - "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", - "2 | Other signatories [16/16] : 36FMd9BdM", + "1 | Threshold : 846", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : bc1f4378ab31896bf73f945c9300c36489ae79", - "4 | Call hash [2/2] : c68cdea4b7ea49d6604eba610b", + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", "5 | Chain : Kusama", - "6 | Nonce : 1", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 50283", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14560,47 +14836,47 @@ ] }, { - "index": 588, + "index": 598, "name": "Multisig_Cancel_as_multi", - "blob": "1f032c01149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e928aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf08d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f032c011484a7b31b523f24825b21545dd8b187cfb9cccd3d8174372bfec0218a90ba1d24ace85db68af83817a10e4b3f19cee77cf9c5cc4cb85ff34f7bdf95f70581a4194e985a9602e38b68958992e06d513d21b281a5819356c85fda9733aaaea850130e482ab2f300a8c5aeb2fd2eb4e529c06a1c620712716a75ca6581813c093e05d8fdd3f8de055cb061b1ac230af79489924bd4fb6e8f64f7ac9e1d256dd60801aa7000001027000087a181b9bede0380329d02ee819bcd266ae49dfd7dec7cd635a8c4a1a4a1bbbbd5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 300", - "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "2 | Other signatories [2/10] : nhmBqN68n", - "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "2 | Other signatories [4/10] : auzMC5Tst", - "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "2 | Other signatories [6/10] : 2opmno4dh", - "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "2 | Other signatories [8/10] : 4Bw4jugnm", - "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "2 | Other signatories [10/10] : tKP64yEmd", + "2 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "2 | Other signatories [2/10] : 9NghUjYZM", + "2 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "2 | Other signatories [4/10] : 4bxjJhDni", + "2 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "2 | Other signatories [6/10] : JbLjArNSv", + "2 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "2 | Other signatories [8/10] : dPAHZ2auQ", + "2 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "2 | Other signatories [10/10] : oABM1BRbs", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", "5 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 300", - "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", - "2 | Other signatories [2/10] : nhmBqN68n", - "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", - "2 | Other signatories [4/10] : auzMC5Tst", - "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", - "2 | Other signatories [6/10] : 2opmno4dh", - "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", - "2 | Other signatories [8/10] : 4Bw4jugnm", - "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", - "2 | Other signatories [10/10] : tKP64yEmd", + "2 | Other signatories [1/10] : FaFezF4oTFjkBTZYshMZRFaEXP8HWQxqRubqbo", + "2 | Other signatories [2/10] : 9NghUjYZM", + "2 | Other signatories [3/10] : GV2nFrbMPEGaXPD5jToH1opKqfbmuX19ABMD31", + "2 | Other signatories [4/10] : 4bxjJhDni", + "2 | Other signatories [5/10] : EMNWcQBbeEPzUY4XmXGFv14HTqqaNz5e1yDXq9", + "2 | Other signatories [6/10] : JbLjArNSv", + "2 | Other signatories [7/10] : Cu3dGkCu63WYuCXzv6iYDUvhJb6BmqQ4KC1dn2", + "2 | Other signatories [8/10] : dPAHZ2auQ", + "2 | Other signatories [9/10] : HUqGEqtC2xcMn8br6ChapM71UR5xdtHTQ7xbkU", + "2 | Other signatories [10/10] : oABM1BRbs", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", - "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "4 | Call hash [1/2] : 87a181b9bede0380329d02ee819bcd266ae49d", + "4 | Call hash [2/2] : fd7dec7cd635a8c4a1a4a1bbbb", "5 | Chain : Kusama", - "6 | Nonce : 2339", + "6 | Nonce : 1", "7 | Tip : KSM 0.00123456789", "8 | Era Phase : 61", "9 | Era Period : 64", @@ -14609,52 +14885,32 @@ ] }, { - "index": 589, + "index": 599, "name": "Multisig_Cancel_as_multi", - "blob": "1f0301001838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c504aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f035c000436106b0f8ad197d6166691e62c0bd5c2c82e8a985c2f1064492d7a28ea6a567daa70000010270000be7c1e4c47071b99439b936ab3c219a2d1886b85fb28122ce9a520169ceebd8dd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 92", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Tip : KSM 0.000000000987" + "4 | Call hash [1/2] : be7c1e4c47071b99439b936ab3c219a2d1886b", + "4 | Call hash [2/2] : 85fb28122ce9a520169ceebd8d", + "5 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", - "2 | Other signatories [2/12] : cvQWPpFkm", - "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", - "2 | Other signatories [4/12] : CQAFseSbM", - "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", - "2 | Other signatories [6/12] : fYV5bKw79", - "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", - "2 | Other signatories [8/12] : G9LDWNMg4", - "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", - "2 | Other signatories [10/12] : VGQhB9Yx2", - "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", - "2 | Other signatories [12/12] : BwJyoET7z", + "1 | Threshold : 92", + "2 | Other signatories [1/2] : DoCyqceoGHdwC1fUuiyYVKYuLsJW22YrPBTajd", + "2 | Other signatories [2/2] : yHrAH3Tir", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "4 | Call hash [1/2] : be7c1e4c47071b99439b936ab3c219a2d1886b", + "4 | Call hash [2/2] : 85fb28122ce9a520169ceebd8d", "5 | Chain : Kusama", "6 | Nonce : 2339", - "7 | Tip : KSM 0.000000000987", + "7 | Tip : KSM 0.00123456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14662,32 +14918,52 @@ ] }, { - "index": 590, + "index": 600, "name": "Multisig_Cancel_as_multi", - "blob": "1f0300040482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231caa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f035c0018accce8ad1521b8c7b1eb819dffae2d67d337c3e692c3b406f2c2d84c139f44234a9bd91885a9678e191258e544f1933cc96ce3bdaae2cd4036a3477595ec8b26c644d49c3960a5d23779154cf4689195b9e021c25102cf43d0dd492ccb7958549467e2be236bbbc93b5a17d53bfaa0de8b5702890c55202b367a2a0e0daf4057ae994574ab2dae2b5cfba89b00f82fa8d5286298ee01a4bb5c9eba7a1292e334765e933d854a008c0163d16bdb271c3beb68d805a65873f366ad615e342ef217aa70000010270000117cc877288463751b5c96ba15f2d93088f2e9b33049f3f34e44f0d4271b940fd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 92", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", - "5 | Tip : KSM 5.552342355555" + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", + "5 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", - "2 | Other signatories [2/2] : 263hGYSem", + "1 | Threshold : 92", + "2 | Other signatories [1/12] : GUtdBSX3RU2xh3UdDY8RbinHST8WjYUhgVXvvM", + "2 | Other signatories [2/12] : j9choLBsj", + "2 | Other signatories [3/12] : EG9MhrZtUhJjc1tkWfyKhSV2b3mELaw16NxQ17", + "2 | Other signatories [4/12] : fprRgj1tm", + "2 | Other signatories [5/12] : H4HSpDwcX8enHUHQRCqjTZVYwmGjb214EphvHu", + "2 | Other signatories [6/12] : 7hyKscg4c", + "2 | Other signatories [7/12] : FvuTwGbHfxn1WXg6LNQx3NjnWetGWBJzMhPEsm", + "2 | Other signatories [8/12] : m243DVkbB", + "2 | Other signatories [9/12] : GXFP3K2iE4nSK8hYhGLPLEGrq4P7MheKcT3yJq", + "2 | Other signatories [10/12] : 7oHsh87Eh", + "2 | Other signatories [11/12] : FFXGCYtCnoWWVLiTcCHDJBfLU9X9XorsgxkhP9", + "2 | Other signatories [12/12] : umhUSaEsE", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", - "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "4 | Call hash [1/2] : 117cc877288463751b5c96ba15f2d93088f2e9", + "4 | Call hash [2/2] : b33049f3f34e44f0d4271b940f", "5 | Chain : Kusama", - "6 | Nonce : 100", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 2339", + "7 | Tip : KSM 0.00123456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14695,55 +14971,26 @@ ] }, { - "index": 591, + "index": 601, "name": "Preimage_Note_preimage", - "blob": "2000100e2a0c49d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2000100c293435d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" - ], - "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 : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 592, - "name": "Preimage_Note_preimage", - "blob": "200010200b200bd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "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 : KSM 5.552342355555" + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", + "2 | Tip : KSM 0.000000000987" ], "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", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14751,17 +14998,16 @@ ] }, { - "index": 593, + "index": 602, "name": "Preimage_Note_preimage", - "blob": "2000100c293435d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2000100c293435d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Preimage : Note preimage", @@ -14770,9 +15016,8 @@ "1 | Bytes [3/4] : 52", "1 | Bytes [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14780,17 +15025,15 @@ ] }, { - "index": 594, + "index": 603, "name": "Preimage_Note_preimage", - "blob": "2000100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2000100c293435d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Bytes [4/4] : 53" ], "output_expert": [ "0 | Preimage : Note preimage", @@ -14799,9 +15042,34 @@ "1 | Bytes [3/4] : 52", "1 | Bytes [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 604, + "name": "Preimage_Note_preimage", + "blob": "200010200b200bd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "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 : KSM 0.00123456789" + ], + "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 : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14809,24 +15077,24 @@ ] }, { - "index": 595, + "index": 605, "name": "Preimage_Note_preimage", - "blob": "2000100e2a0c49d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2000100c293435d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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" + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53" ], "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", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14834,24 +15102,22 @@ ] }, { - "index": 596, + "index": 606, "name": "Preimage_Unnote_preimage", - "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14859,66 +15125,68 @@ ] }, { - "index": 597, + "index": 607, "name": "Preimage_Unnote_preimage", - "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 598, + "index": 608, "name": "Preimage_Unnote_preimage", - "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 599, + "index": 609, "name": "Preimage_Unnote_preimage", - "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14926,45 +15194,45 @@ ] }, { - "index": 600, + "index": 610, "name": "Preimage_Unnote_preimage", - "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ "0 | Preimage : Unnote preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 601, + "index": 611, "name": "Preimage_Request_preimage", - "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.00123456789" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14972,9 +15240,9 @@ ] }, { - "index": 602, + "index": 612, "name": "Preimage_Request_preimage", - "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14995,9 +15263,9 @@ ] }, { - "index": 603, + "index": 613, "name": "Preimage_Request_preimage", - "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15008,7 +15276,7 @@ "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15016,9 +15284,9 @@ ] }, { - "index": 604, + "index": 614, "name": "Preimage_Request_preimage", - "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15037,22 +15305,22 @@ ] }, { - "index": 605, + "index": 615, "name": "Preimage_Request_preimage", - "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Preimage : Request preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15060,9 +15328,9 @@ ] }, { - "index": 606, + "index": 616, "name": "Preimage_Unrequest_preimage", - "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15083,22 +15351,22 @@ ] }, { - "index": 607, + "index": 617, "name": "Preimage_Unrequest_preimage", - "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15106,22 +15374,22 @@ ] }, { - "index": 608, + "index": 618, "name": "Preimage_Unrequest_preimage", - "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15129,22 +15397,22 @@ ] }, { - "index": 609, + "index": 619, "name": "Preimage_Unrequest_preimage", - "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15152,9 +15420,9 @@ ] }, { - "index": 610, + "index": 620, "name": "Preimage_Unrequest_preimage", - "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Preimage : Unrequest preimage", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15167,7 +15435,7 @@ "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -15177,33 +15445,27 @@ ] }, { - "index": 611, + "index": 621, "name": "Bounties_Propose_bounty", - "blob": "2300000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23000b63ce64c10c050101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.0", - "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Amount : KSM 5.552342355555", + "2 | Description [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "2 | Description [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "2 | Description [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "2 | Description [4/4] : 357008265b2f65", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.0", - "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Amount : KSM 5.552342355555", + "2 | Description [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "2 | Description [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "2 | Description [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "2 | Description [4/4] : 357008265b2f65", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -15212,27 +15474,33 @@ ] }, { - "index": 612, + "index": 622, "name": "Bounties_Propose_bounty", - "blob": "230003d202964901013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23006d0f0102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "2 | Description [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "2 | Description [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "2 | Description [4/4] : 29e6b2f9890d9f", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "2 | Description [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "2 | Description [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "2 | Description [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "2 | Description [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "2 | Description [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "2 | Description [7/7] : 93343efd5c04534730aa76d8330f", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "2 | Description [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "2 | Description [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "2 | Description [4/4] : 29e6b2f9890d9f", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "2 | Description [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "2 | Description [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "2 | Description [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "2 | Description [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "2 | Description [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "2 | Description [7/7] : 93343efd5c04534730aa76d8330f", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -15241,24 +15509,24 @@ ] }, { - "index": 613, + "index": 623, "name": "Bounties_Propose_bounty", - "blob": "23006d0f80b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23000b63ce64c10c05806191dc78bdcad9ac5d45618e4fd83cb4853e2e8a47421e257b817cd51fc186d7d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.000000000987", - "2 | Description [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Description [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "3 | Tip : KSM 0.000000000987" + "1 | Amount : KSM 5.552342355555", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.000000000987", - "2 | Description [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Description [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Amount : KSM 5.552342355555", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15266,70 +15534,46 @@ ] }, { - "index": 614, + "index": 624, "name": "Bounties_Propose_bounty", - "blob": "23008ed73e0d0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "230003d2029649806191dc78bdcad9ac5d45618e4fd83cb4853e2e8a47421e257b817cd51fc186d7d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.000055555555", - "2 | Description [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "2 | Description [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "2 | Description [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "2 | Description [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "2 | Description [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "2 | Description [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "2 | Description [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "3 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.00123456789", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7" ], "output_expert": [ "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.000055555555", - "2 | Description [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "2 | Description [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "2 | Description [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "2 | Description [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "2 | Description [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "2 | Description [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "2 | Description [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "1 | Amount : KSM 0.00123456789", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 615, + "index": 625, "name": "Bounties_Propose_bounty", - "blob": "230033158139ae28a3dfaac5fe1560a5e9e05c0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23006d0f806191dc78bdcad9ac5d45618e4fd83cb4853e2e8a47421e257b817cd51fc186d7d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", - "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/2] : 6191dc78bdcad9ac5d45618e4fd83cb4853e2e", + "2 | Description [2/2] : 8a47421e257b817cd51fc186d7", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -15338,20 +15582,20 @@ ] }, { - "index": 616, + "index": 626, "name": "Bounties_Approve_bounty", - "blob": "230196fb6477d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23010dfdd5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 500776677", - "2 | Tip : KSM 5.552342355555" + "1 | Bounty id : 16195", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 500776677", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15359,41 +15603,39 @@ ] }, { - "index": 617, + "index": 627, "name": "Bounties_Approve_bounty", - "blob": "23010916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23018cd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 1410", - "2 | Tip : KSM 0.000055555555" + "1 | Bounty id : 35" ], "output_expert": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 1410", + "1 | Bounty id : 35", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 618, + "index": 628, "name": "Bounties_Approve_bounty", - "blob": "2301dcd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23018cd503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 55", - "2 | Tip : KSM 0.000000000987" + "1 | Bounty id : 35", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 55", + "1 | Bounty id : 35", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15401,20 +15643,20 @@ ] }, { - "index": 619, + "index": 629, "name": "Bounties_Approve_bounty", - "blob": "230196fb6477d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23018cd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 500776677", - "2 | Tip : KSM 0.00123456789" + "1 | Bounty id : 35", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 500776677", + "1 | Bounty id : 35", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15422,20 +15664,20 @@ ] }, { - "index": 620, + "index": 630, "name": "Bounties_Approve_bounty", - "blob": "23010916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23018cd5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 1410", - "2 | Tip : KSM 0.00123456789" + "1 | Bounty id : 35", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Approve bounty", - "1 | Bounty id : 1410", + "1 | Bounty id : 35", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15443,26 +15685,26 @@ ] }, { - "index": 621, + "index": 631, "name": "Bounties_Propose_curator", - "blob": "2302f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23028c005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 9852", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 5.552342355555", - "4 | Tip : KSM 0.000000000987" + "1 | Bounty id : 35", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 9852", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 5.552342355555", + "1 | Bounty id : 35", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.000055555555", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15470,53 +15712,53 @@ ] }, { - "index": 622, + "index": 632, "name": "Bounties_Propose_curator", - "blob": "2302f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2302199e005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d146d0fd5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 9852", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.000055555555", - "4 | Tip : KSM 5.552342355555" + "1 | Bounty id : 10118", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.000000000987" ], "output_expert": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 9852", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.000055555555", + "1 | Bounty id : 10118", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.000000000987", "4 | Chain : Kusama", "5 | Nonce : 1", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 623, + "index": 633, "name": "Bounties_Propose_curator", - "blob": "230296fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23020dfd005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1433158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 500776677", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.00123456789", + "1 | Bounty id : 16195", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee [1/2] : KSM 123456789012345678901234567.890123", + "3 | Fee [2/2] : 456789", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 500776677", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.00123456789", + "1 | Bounty id : 16195", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee [1/2] : KSM 123456789012345678901234567.890123", + "3 | Fee [2/2] : 456789", "4 | Chain : Kusama", - "5 | Nonce : 0", + "5 | Nonce : 2339", "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", @@ -15526,28 +15768,26 @@ ] }, { - "index": 624, + "index": 634, "name": "Bounties_Propose_curator", - "blob": "23020916006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2302199e005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d148ed73e0dd5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 1410", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", + "1 | Bounty id : 10118", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", "3 | Fee : KSM 0.000055555555", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 1410", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", + "1 | Bounty id : 10118", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", "3 | Fee : KSM 0.000055555555", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 1", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15555,26 +15795,28 @@ ] }, { - "index": 625, + "index": 635, "name": "Bounties_Propose_curator", - "blob": "230296fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2302b6289630005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d1400d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 500776677", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.000000000987", - "4 | Tip : KSM 0.00123456789" + "1 | Bounty id : 203786797", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Propose curator", - "1 | Bounty id : 500776677", - "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Curator [2/2] : G1ft7ngXT", - "3 | Fee : KSM 0.000000000987", + "1 | Bounty id : 203786797", + "2 | Curator [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Curator [2/2] : bwPWshbc6", + "3 | Fee : KSM 0.0", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 100", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15582,18 +15824,18 @@ ] }, { - "index": 626, + "index": 636, "name": "Bounties_Unassign_curator", - "blob": "2303f199d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2303b6289630d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 9852", + "1 | Bounty id : 203786797", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 9852", + "1 | Bounty id : 203786797", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -15605,39 +15847,43 @@ ] }, { - "index": 627, + "index": 637, "name": "Bounties_Unassign_curator", - "blob": "230396fb6477d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23038cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677" + "1 | Bounty id : 35", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 628, + "index": 638, "name": "Bounties_Unassign_curator", - "blob": "230396fb6477d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2303199ed503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677", - "2 | Tip : KSM 0.00123456789" + "1 | Bounty id : 10118", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 10118", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15645,58 +15891,41 @@ ] }, { - "index": 629, + "index": 639, "name": "Bounties_Unassign_curator", - "blob": "230396fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2303b6289630d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677" + "1 | Bounty id : 203786797", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 630, + "index": 640, "name": "Bounties_Unassign_curator", - "blob": "230396fb6477d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23030dfdd503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677" + "1 | Bounty id : 16195", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Unassign curator", - "1 | Bounty id : 500776677", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 631, - "name": "Bounties_Accept_curator", - "blob": "230496fb6477d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 500776677", - "2 | Tip : KSM 0.000000000987" - ], - "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15704,22 +15933,20 @@ ] }, { - "index": 632, + "index": 641, "name": "Bounties_Accept_curator", - "blob": "23040916d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2304199ed503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 1410", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Bounty id : 10118", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 1410", + "1 | Bounty id : 10118", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15727,19 +15954,19 @@ ] }, { - "index": 633, + "index": 642, "name": "Bounties_Accept_curator", - "blob": "230496fb6477d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2304b6289630d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 203786797", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 500776677", + "1 | Bounty id : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -15748,39 +15975,37 @@ ] }, { - "index": 634, + "index": 643, "name": "Bounties_Accept_curator", - "blob": "23040916d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23040dfdd503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 1410", - "2 | Tip : KSM 0.00123456789" + "1 | Bounty id : 16195" ], "output_expert": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 1410", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 635, + "index": 644, "name": "Bounties_Accept_curator", - "blob": "2304dcd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23040dfdd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 55" + "1 | Bounty id : 16195" ], "output_expert": [ "0 | Bounties : Accept curator", - "1 | Bounty id : 55", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15788,51 +16013,45 @@ ] }, { - "index": 636, - "name": "Bounties_Award_bounty", - "blob": "230596fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 645, + "name": "Bounties_Accept_curator", + "blob": "2304b6289630d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 500776677", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Bounties : Accept curator", + "1 | Bounty id : 203786797", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 500776677", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Accept curator", + "1 | Bounty id : 203786797", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 637, + "index": 646, "name": "Bounties_Award_bounty", - "blob": "2305f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23050dfd005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 9852", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 0.000000000987" + "1 | Bounty id : 16195", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 9852", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Bounty id : 16195", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15840,24 +16059,24 @@ ] }, { - "index": 638, + "index": 647, "name": "Bounties_Award_bounty", - "blob": "2305dc006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23050dfd005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 55", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Bounty id : 16195", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 55", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Bounty id : 16195", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -15867,24 +16086,24 @@ ] }, { - "index": 639, + "index": 648, "name": "Bounties_Award_bounty", - "blob": "230596fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2305199e005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 500776677", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 0.00123456789" + "1 | Bounty id : 10118", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 500776677", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Bounty id : 10118", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15892,24 +16111,24 @@ ] }, { - "index": 640, + "index": 649, "name": "Bounties_Award_bounty", - "blob": "2305dc006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2305b6289630005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 55", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", - "3 | Tip : KSM 5.552342355555" + "1 | Bounty id : 203786797", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Award bounty", - "1 | Bounty id : 55", - "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", - "2 | Beneficiary [2/2] : G1ft7ngXT", + "1 | Bounty id : 203786797", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15917,20 +16136,22 @@ ] }, { - "index": 641, - "name": "Bounties_Claim_bounty", - "blob": "230696fb6477d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 650, + "name": "Bounties_Award_bounty", + "blob": "2305b6289630005acc856cb8bf246744660d3caa7f52c6412050d64bffd940b0284eb239143d14d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 500776677", - "2 | Tip : KSM 0.000055555555" + "0 | Bounties : Award bounty", + "1 | Bounty id : 203786797", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 500776677", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "0 | Bounties : Award bounty", + "1 | Bounty id : 203786797", + "2 | Beneficiary [1/2] : EdNam733tBqbgVJYxjBbVRJcmNYe7ibPdALWfo", + "2 | Beneficiary [2/2] : bwPWshbc6", + "3 | Chain : Kusama", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15938,20 +16159,22 @@ ] }, { - "index": 642, + "index": 651, "name": "Bounties_Claim_bounty", - "blob": "2306f199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2306b6289630d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 9852", - "2 | Tip : KSM 0.000055555555" + "1 | Bounty id : 203786797", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 9852", + "1 | Bounty id : 203786797", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15959,59 +16182,59 @@ ] }, { - "index": 643, + "index": 652, "name": "Bounties_Claim_bounty", - "blob": "2306dcd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23060dfdd503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 55", - "2 | Tip : KSM 5.552342355555" + "1 | Bounty id : 16195" ], "output_expert": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 55", + "1 | Bounty id : 16195", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 644, + "index": 653, "name": "Bounties_Claim_bounty", - "blob": "23060916d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23060dfdd503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 1410" + "1 | Bounty id : 16195", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 1410", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 645, + "index": 654, "name": "Bounties_Claim_bounty", - "blob": "2306dcd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2306199ed5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 55", + "1 | Bounty id : 10118", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bounties : Claim bounty", - "1 | Bounty id : 55", + "1 | Bounty id : 10118", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -16020,20 +16243,20 @@ ] }, { - "index": 646, - "name": "Bounties_Close_bounty", - "blob": "2307f199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 655, + "name": "Bounties_Claim_bounty", + "blob": "2306199ed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 9852", - "2 | Tip : KSM 0.000055555555" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 10118", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 9852", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 10118", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16041,20 +16264,20 @@ ] }, { - "index": 647, + "index": 656, "name": "Bounties_Close_bounty", - "blob": "23070916d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2307b6289630d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 1410", + "1 | Bounty id : 203786797", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 1410", + "1 | Bounty id : 203786797", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -16064,39 +16287,41 @@ ] }, { - "index": 648, + "index": 657, "name": "Bounties_Close_bounty", - "blob": "230796fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23070dfdd503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 500776677" + "1 | Bounty id : 16195", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 500776677", + "1 | Bounty id : 16195", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 649, + "index": 658, "name": "Bounties_Close_bounty", - "blob": "2307dcd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2307199ed503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 55", - "2 | Tip : KSM 0.000000000987" + "1 | Bounty id : 10118", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 55", + "1 | Bounty id : 10118", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16104,20 +16329,41 @@ ] }, { - "index": 650, + "index": 659, + "name": "Bounties_Close_bounty", + "blob": "23070dfdd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Close bounty", + "1 | Bounty id : 16195", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Bounties : Close bounty", + "1 | Bounty id : 16195", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 660, "name": "Bounties_Close_bounty", - "blob": "230796fb6477d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2307199ed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 500776677", + "1 | Bounty id : 10118", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Close bounty", - "1 | Bounty id : 500776677", + "1 | Bounty id : 10118", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -16127,23 +16373,33 @@ ] }, { - "index": 651, + "index": 661, "name": "Bounties_Extend_bounty_expiry", - "blob": "2308f19980c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2308b628963001025bed146db21f5a694a404688748f737abba9af8fe96d415586ee2f90f73f6ff48988a0762d496889b7baa3dbc94561136fda5d6b86bfaf27ad34ccaca8f1b508d0a06c06cbfcc2d48989ca0f9f33cdf0f03f882d2d214db9584547caac209ad7d504ebea0e9ace909b8e3f2a9bb66e754f09162f12115b630d72d559609e6688d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 9852", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Bounty id : 203786797", + "2 | Remark [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "2 | Remark [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "2 | Remark [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "2 | Remark [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "2 | Remark [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "2 | Remark [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "2 | Remark [7/7] : 162f12115b630d72d559609e6688", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 9852", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Bounty id : 203786797", + "2 | Remark [1/7] : 5bed146db21f5a694a404688748f737abba9af", + "2 | Remark [2/7] : 8fe96d415586ee2f90f73f6ff48988a0762d49", + "2 | Remark [3/7] : 6889b7baa3dbc94561136fda5d6b86bfaf27ad", + "2 | Remark [4/7] : 34ccaca8f1b508d0a06c06cbfcc2d48989ca0f", + "2 | Remark [5/7] : 9f33cdf0f03f882d2d214db9584547caac209a", + "2 | Remark [6/7] : d7d504ebea0e9ace909b8e3f2a9bb66e754f09", + "2 | Remark [7/7] : 162f12115b630d72d559609e6688", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -16152,24 +16408,30 @@ ] }, { - "index": 652, + "index": 662, "name": "Bounties_Extend_bounty_expiry", - "blob": "230896fb647780c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2308b6289630010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 500776677", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", - "3 | Tip : KSM 0.000055555555" + "1 | Bounty id : 203786797", + "2 | Remark [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "2 | Remark [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "2 | Remark [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "2 | Remark [4/4] : 244ccf5c5cf935", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 500776677", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Bounty id : 203786797", + "2 | Remark [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "2 | Remark [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "2 | Remark [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "2 | Remark [4/4] : 244ccf5c5cf935", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16177,34 +16439,26 @@ ] }, { - "index": 653, + "index": 663, "name": "Bounties_Extend_bounty_expiry", - "blob": "2308dc01028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "23080dfd8086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 55", - "2 | Remark [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "2 | Remark [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "2 | Remark [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "2 | Remark [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "2 | Remark [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "2 | Remark [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "2 | Remark [7/7] : 981e2df7f997de23b266e33ef909", - "3 | Tip : KSM 0.000055555555" + "1 | Bounty id : 16195", + "2 | Remark [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "2 | Remark [2/2] : 30846f2c1805fdb80157f177f5", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 55", - "2 | Remark [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", - "2 | Remark [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", - "2 | Remark [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", - "2 | Remark [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", - "2 | Remark [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", - "2 | Remark [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", - "2 | Remark [7/7] : 981e2df7f997de23b266e33ef909", + "1 | Bounty id : 16195", + "2 | Remark [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "2 | Remark [2/2] : 30846f2c1805fdb80157f177f5", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16212,83 +16466,97 @@ ] }, { - "index": 654, + "index": 664, "name": "Bounties_Extend_bounty_expiry", - "blob": "2308f19980b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2308b6289630010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 9852", - "2 | Remark [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Remark [2/2] : 54c8c31cf7ef8c895cc744c6f5" + "1 | Bounty id : 203786797", + "2 | Remark [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "2 | Remark [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "2 | Remark [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "2 | Remark [4/4] : b986de1760cbf4", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 9852", - "2 | Remark [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "2 | Remark [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "1 | Bounty id : 203786797", + "2 | Remark [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "2 | Remark [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "2 | Remark [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "2 | Remark [4/4] : b986de1760cbf4", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 655, + "index": 665, "name": "Bounties_Extend_bounty_expiry", - "blob": "2308dc80c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2308b62896300102c01d39d359a48f6c97c2e72f01b5471101cffca85e9c75aab614bf68377d3d5afbad64a26c9436eb031424dbb562f335cff43f0daf8628204943ceb8ef36dd1eac701dba90aa141ecb4a0edb8138b4fb61e029082dd69713cedf3ec71de1a49426755033c6a468d5d6d34b87e79d7b776e3093343efd5c04534730aa76d8330fd5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 55", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", - "3 | Tip : KSM 0.00123456789" + "1 | Bounty id : 203786797", + "2 | Remark [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "2 | Remark [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "2 | Remark [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "2 | Remark [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "2 | Remark [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "2 | Remark [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "2 | Remark [7/7] : 93343efd5c04534730aa76d8330f" ], "output_expert": [ "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 55", - "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "1 | Bounty id : 203786797", + "2 | Remark [1/7] : c01d39d359a48f6c97c2e72f01b5471101cffc", + "2 | Remark [2/7] : a85e9c75aab614bf68377d3d5afbad64a26c94", + "2 | Remark [3/7] : 36eb031424dbb562f335cff43f0daf86282049", + "2 | Remark [4/7] : 43ceb8ef36dd1eac701dba90aa141ecb4a0edb", + "2 | Remark [5/7] : 8138b4fb61e029082dd69713cedf3ec71de1a4", + "2 | Remark [6/7] : 9426755033c6a468d5d6d34b87e79d7b776e30", + "2 | Remark [7/7] : 93343efd5c04534730aa76d8330f", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 656, + "index": 666, "name": "Tips_Report_awesome", - "blob": "24000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c46a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2400010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Report awesome", - "1 | Reason [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Reason [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Reason [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Reason [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Reason [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Reason [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Reason [7/7] : 15ed00d70e7bb9161e10557d44c4", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Who [2/2] : W2YqpsEiW", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Report awesome", - "1 | Reason [1/7] : b1949666437de73950d06473ca806a691e91e0", - "1 | Reason [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", - "1 | Reason [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", - "1 | Reason [4/7] : 8a652a916e551458233f2e8b494dd93811a283", - "1 | Reason [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", - "1 | Reason [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", - "1 | Reason [7/7] : 15ed00d70e7bb9161e10557d44c4", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "2 | Who [2/2] : W2YqpsEiW", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -16297,84 +16565,92 @@ ] }, { - "index": 657, + "index": 667, "name": "Tips_Report_awesome", - "blob": "2400010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2400010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd16a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Report awesome", - "1 | Reason [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Reason [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Reason [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Reason [4/4] : 683807d2d3ef09", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | Who [2/2] : r9TQhU9HW" ], "output_expert": [ "0 | Tips : Report awesome", - "1 | Reason [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", - "1 | Reason [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", - "1 | Reason [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", - "1 | Reason [4/4] : 683807d2d3ef09", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "2 | Who [2/2] : r9TQhU9HW", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 658, + "index": 668, "name": "Tips_Report_awesome", - "blob": "240080b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "24008086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn" + "1 | Reason [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Reason [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Who [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | Who [2/2] : PuqtMGste", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Reason [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Who [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "2 | Who [2/2] : PuqtMGste", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 659, + "index": 669, "name": "Tips_Report_awesome", - "blob": "240080b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "24000101df12bd1bdcdf418f370846b3ef7875eb2545f06e4e9bca3163d7e2d202101c4ad0ada0a98cea6c8ec23c53f288c9fdf8555fb2b176e4c9df42357008265b2f65e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip : KSM 5.552342355555" + "1 | Reason [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Reason [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Reason [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Reason [4/4] : 357008265b2f65", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/4] : df12bd1bdcdf418f370846b3ef7875eb2545f0", + "1 | Reason [2/4] : 6e4e9bca3163d7e2d202101c4ad0ada0a98cea", + "1 | Reason [3/4] : 6c8ec23c53f288c9fdf8555fb2b176e4c9df42", + "1 | Reason [4/4] : 357008265b2f65", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16382,26 +16658,30 @@ ] }, { - "index": 660, + "index": 670, "name": "Tips_Report_awesome", - "blob": "240080c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f46a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2400010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Reason [2/2] : 57257aca85a53c1f005b0f70f4", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip : KSM 0.00123456789" + "1 | Reason [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Reason [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Reason [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Reason [4/4] : 244ccf5c5cf935", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Tips : Report awesome", - "1 | Reason [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", - "1 | Reason [2/2] : 57257aca85a53c1f005b0f70f4", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", + "1 | Reason [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Reason [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Reason [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Reason [4/4] : 244ccf5c5cf935", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16409,22 +16689,22 @@ ] }, { - "index": 661, + "index": 671, "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16432,9 +16712,9 @@ ] }, { - "index": 662, + "index": 672, "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16446,7 +16726,7 @@ "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -16455,22 +16735,22 @@ ] }, { - "index": 663, + "index": 673, "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16478,24 +16758,22 @@ ] }, { - "index": 664, + "index": 674, "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16503,24 +16781,22 @@ ] }, { - "index": 665, + "index": 675, "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16528,30 +16804,30 @@ ] }, { - "index": 666, + "index": 676, "name": "Tips_Tip_new", - "blob": "240201013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f39c9d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2402010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf4e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674bd37d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip new", - "1 | Reason [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Reason [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Reason [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Reason [4/4] : 29e6b2f9890d9f", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12878", + "1 | Reason [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Reason [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Reason [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Reason [4/4] : b986de1760cbf4", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip value : 3567", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Tips : Tip new", - "1 | Reason [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", - "1 | Reason [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", - "1 | Reason [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", - "1 | Reason [4/4] : 29e6b2f9890d9f", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12878", + "1 | Reason [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Reason [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Reason [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Reason [4/4] : b986de1760cbf4", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip value : 3567", "4 | Chain : Kusama", "5 | Nonce : 0", "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -16563,66 +16839,58 @@ ] }, { - "index": 667, + "index": 677, "name": "Tips_Tip_new", - "blob": "240280b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9a505dbfd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "24028086de818dfe3eca4226404507350cb8397e5f9f30846f2c1805fdb80157f177f5e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d67440d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip new", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 802640934", - "4 | Tip : KSM 0.000000000987" + "1 | Reason [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Reason [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip value : 16" ], "output_expert": [ "0 | Tips : Tip new", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 802640934", + "1 | Reason [1/2] : 86de818dfe3eca4226404507350cb8397e5f9f", + "1 | Reason [2/2] : 30846f2c1805fdb80157f177f5", + "2 | Who [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "2 | Who [2/2] : MCzmwrXrR", + "3 | Tip value : 16", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 668, + "index": 678, "name": "Tips_Tip_new", - "blob": "24020102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e97406a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fc9bfd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2402010145878dbdf52c90743f1c85fc2a3f6b6eec86f294aa6d7c7b3dd37f8271286484b59814e5d82b1330eab97a20bd93af7992f08f6f1b70b9d551b986de1760cbf49cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cb5f8d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip new", - "1 | Reason [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Reason [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Reason [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Reason [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Reason [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Reason [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Reason [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12274", + "1 | Reason [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Reason [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Reason [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Reason [4/4] : b986de1760cbf4", + "2 | Who [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "2 | Who [2/2] : Ho6PzgCdQ", + "3 | Tip value : 15917", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Tip new", - "1 | Reason [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", - "1 | Reason [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", - "1 | Reason [3/7] : c93eab2de16c6b254578fb8443205ade63b239", - "1 | Reason [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", - "1 | Reason [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", - "1 | Reason [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", - "1 | Reason [7/7] : 42ea91e8f32b62aaba0a0c3e9740", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12274", + "1 | Reason [1/4] : 45878dbdf52c90743f1c85fc2a3f6b6eec86f2", + "1 | Reason [2/4] : 94aa6d7c7b3dd37f8271286484b59814e5d82b", + "1 | Reason [3/4] : 1330eab97a20bd93af7992f08f6f1b70b9d551", + "1 | Reason [4/4] : b986de1760cbf4", + "2 | Who [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "2 | Who [2/2] : Ho6PzgCdQ", + "3 | Tip value : 15917", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 1", "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -16631,59 +16899,71 @@ ] }, { - "index": 669, + "index": 679, "name": "Tips_Tip_new", - "blob": "24020101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62b6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fc9bfd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2402010173edd97a6097f5967732f42d6322344d54362478b9631bc5d58760c098675ebef4591f9a1d7b32faa1b2b4a10d806089acbe7f0bae12e255ee244ccf5c5cf935e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a36340d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip new", - "1 | Reason [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Reason [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Reason [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Reason [4/4] : 6ef8294aecb62b", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12274" + "1 | Reason [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Reason [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Reason [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Reason [4/4] : 244ccf5c5cf935", + "2 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Who [2/2] : 3Ph4miYfg", + "3 | Tip value : 16", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Tips : Tip new", - "1 | Reason [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", - "1 | Reason [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", - "1 | Reason [3/4] : a229ebf7524d08566ca15014598d9328723941", - "1 | Reason [4/4] : 6ef8294aecb62b", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12274", + "1 | Reason [1/4] : 73edd97a6097f5967732f42d6322344d543624", + "1 | Reason [2/4] : 78b9631bc5d58760c098675ebef4591f9a1d7b", + "1 | Reason [3/4] : 32faa1b2b4a10d806089acbe7f0bae12e255ee", + "1 | Reason [4/4] : 244ccf5c5cf935", + "2 | Who [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "2 | Who [2/2] : 3Ph4miYfg", + "3 | Tip value : 16", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 100", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 670, + "index": 680, "name": "Tips_Tip_new", - "blob": "240280b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f39c9d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2402010298f29f795b4afe3b65375ceabc9f8c255a22b3fcc57124d6277c1ce6929f42d5ae3ccefc4b021cb54d8b7eafbd203da6618b2e4bc5c36ac31fca2ca71967eb42a7679d36950f27d29e9112cb38885c0ded8e1ccaec008f24eb80af9365c1409cf03d163c63914dea4cd2fd79e71e84ae84a4317d6ee59e6d26dfa7fc9736abd1f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe86440d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip new", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12878", - "4 | Tip : KSM 0.000000000987" + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Who [2/2] : 6JtYYhKnN", + "3 | Tip value : 16", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Tips : Tip new", - "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", - "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", - "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "2 | Who [2/2] : DyGtAWNbn", - "3 | Tip value : 12878", + "1 | Reason [1/7] : 98f29f795b4afe3b65375ceabc9f8c255a22b3", + "1 | Reason [2/7] : fcc57124d6277c1ce6929f42d5ae3ccefc4b02", + "1 | Reason [3/7] : 1cb54d8b7eafbd203da6618b2e4bc5c36ac31f", + "1 | Reason [4/7] : ca2ca71967eb42a7679d36950f27d29e9112cb", + "1 | Reason [5/7] : 38885c0ded8e1ccaec008f24eb80af9365c140", + "1 | Reason [6/7] : 9cf03d163c63914dea4cd2fd79e71e84ae84a4", + "1 | Reason [7/7] : 317d6ee59e6d26dfa7fc9736abd1", + "2 | Who [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "2 | Who [2/2] : 6JtYYhKnN", + "3 | Tip value : 16", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16691,51 +16971,47 @@ ] }, { - "index": 671, + "index": 681, "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe9a505dbfd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafebd37d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 802640934", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "2 | Tip value : 3567" ], "output_expert": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 802640934", + "2 | Tip value : 3567", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 672, + "index": 682, "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe9a505dbfd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe4ae37d4fd50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 802640934", - "3 | Tip : KSM 0.00123456789" + "2 | Tip value : 333412562", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 802640934", + "2 | Tip value : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16743,24 +17019,26 @@ ] }, { - "index": 673, + "index": 683, "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe821c2f4dd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe4ae37d4fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 323733280", - "3 | Tip : KSM 0.00123456789" + "2 | Tip value : 333412562", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 323733280", + "2 | Tip value : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16768,24 +17046,24 @@ ] }, { - "index": 674, + "index": 684, "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafec9bfd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe4ae37d4fd503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 12274", - "3 | Tip : KSM 0.00123456789" + "2 | Tip value : 333412562", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 12274", + "2 | Tip value : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16793,24 +17071,24 @@ ] }, { - "index": 675, + "index": 685, "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafec9bfd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe4ae37d4fd503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 12274", - "3 | Tip : KSM 0.000000000987" + "2 | Tip value : 333412562", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 12274", + "2 | Tip value : 333412562", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 0", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16818,24 +17096,22 @@ ] }, { - "index": 676, + "index": 686, "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16843,59 +17119,61 @@ ] }, { - "index": 677, + "index": 687, "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 678, + "index": 688, "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 679, + "index": 689, "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Tips : Close tip", @@ -16903,21 +17181,23 @@ "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 680, + "index": 690, "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Close tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Close tip", @@ -16925,7 +17205,7 @@ "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16933,14 +17213,14 @@ ] }, { - "index": 681, + "index": 691, "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Tips : Slash tip", @@ -16948,7 +17228,7 @@ "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16956,22 +17236,22 @@ ] }, { - "index": 682, + "index": 692, "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16979,14 +17259,14 @@ ] }, { - "index": 683, + "index": 693, "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Tips : Slash tip", @@ -16994,7 +17274,7 @@ "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17002,22 +17282,22 @@ ] }, { - "index": 684, + "index": 694, "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17025,9 +17305,9 @@ ] }, { - "index": 685, + "index": 695, "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Tips : Slash tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17048,24 +17328,85 @@ ] }, { - "index": 686, - "name": "Gilt_Place_bid", - "blob": "260033158139ae28a3dfaac5fe1560a5e9e05cf7010000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 696, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "250401f701000001f7010000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 503", - "3 | Tip : KSM 0.00123456789" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 503", + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 697, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "2504010000000001d3040000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 1235" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 1235", + "3 | Chain : Kusama", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 698, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "250401f701000001f7010000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503", + "3 | Chain : Kusama", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 699, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "250401d304000001f7010000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 503", + "3 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 503", + "3 | Chain : Kusama", + "4 | Nonce : 0", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17073,21 +17414,21 @@ ] }, { - "index": 687, - "name": "Gilt_Place_bid", - "blob": "26000b63ce64c10c05f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 700, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "250401d304000001f7010000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 5.552342355555", - "2 | Duration : 503", + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 503", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 5.552342355555", - "2 | Duration : 503", + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 503", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -17096,22 +17437,45 @@ ] }, { - "index": 688, + "index": 701, "name": "Gilt_Place_bid", - "blob": "26006d0ff7010000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "26008ed73e0df7010000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Place bid", - "1 | Amount : KSM 0.000000000987", - "2 | Duration : 503", - "3 | Tip : KSM 0.00123456789" + "1 | Amount : KSM 0.000055555555", + "2 | Duration : 503" ], "output_expert": [ "0 | Gilt : Place bid", - "1 | Amount : KSM 0.000000000987", + "1 | Amount : KSM 0.000055555555", "2 | Duration : 503", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 702, + "name": "Gilt_Place_bid", + "blob": "260033158139ae28a3dfaac5fe1560a5e9e05c00000000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 0", + "3 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 0", + "3 | Chain : Kusama", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17119,21 +17483,21 @@ ] }, { - "index": 689, + "index": 703, "name": "Gilt_Place_bid", - "blob": "260000d3040000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "260003d202964900000000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Place bid", - "1 | Amount : KSM 0.0", - "2 | Duration : 1235", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Gilt : Place bid", - "1 | Amount : KSM 0.0", - "2 | Duration : 1235", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -17142,47 +17506,45 @@ ] }, { - "index": 690, + "index": 704, "name": "Gilt_Place_bid", - "blob": "260033158139ae28a3dfaac5fe1560a5e9e05c34300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "260003d2029649f7010000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 12340" + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 503", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 12340", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 503", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 691, - "name": "Gilt_Retract_bid", - "blob": "26018ed73e0d00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 705, + "name": "Gilt_Place_bid", + "blob": "260003d202964934300000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 12340", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 0", + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 12340", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17190,43 +17552,45 @@ ] }, { - "index": 692, + "index": 706, "name": "Gilt_Retract_bid", - "blob": "260103d202964900000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "260103d2029649d3040000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Retract bid", "1 | Amount : KSM 0.00123456789", - "2 | Duration : 0" + "2 | Duration : 1235", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Gilt : Retract bid", "1 | Amount : KSM 0.00123456789", - "2 | Duration : 0", + "2 | Duration : 1235", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 693, + "index": 707, "name": "Gilt_Retract_bid", - "blob": "26018ed73e0df7010000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "26010b63ce64c10c059d1c0000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 503", - "3 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 5.552342355555", + "2 | Duration : 7325", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 503", + "1 | Amount : KSM 5.552342355555", + "2 | Duration : 7325", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17234,22 +17598,22 @@ ] }, { - "index": 694, + "index": 708, "name": "Gilt_Retract_bid", - "blob": "260100d3040000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2601009d1c0000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Retract bid", "1 | Amount : KSM 0.0", - "2 | Duration : 1235", - "3 | Tip : KSM 0.00123456789" + "2 | Duration : 7325", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Gilt : Retract bid", "1 | Amount : KSM 0.0", - "2 | Duration : 1235", + "2 | Duration : 7325", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17257,21 +17621,21 @@ ] }, { - "index": 695, + "index": 709, "name": "Gilt_Retract_bid", - "blob": "260103d20296499d1c0000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "26018ed73e0d9d1c0000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 0.000055555555", "2 | Duration : 7325", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 0.000055555555", "2 | Duration : 7325", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -17280,45 +17644,45 @@ ] }, { - "index": 696, - "name": "Bagslist_Rebag", - "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 710, + "name": "Gilt_Retract_bid", + "blob": "260103d202964900000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", - "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 697, + "index": 711, "name": "Bagslist_Rebag", - "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2700e29f2ab92f78ad9cd7ae721d5a04a4a5d46f22042f181f0c8f0fad904734d674d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Dislocated [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Dislocated [2/2] : MCzmwrXrR", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", + "1 | Dislocated [1/2] : HhTd3EdNHURcwbGBHmSw2VwiFuy6YsiajHZ9df", + "1 | Dislocated [2/2] : MCzmwrXrR", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17326,22 +17690,22 @@ ] }, { - "index": 698, + "index": 712, "name": "Bagslist_Rebag", - "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2700b8ec7d235d4f49400f51bd320192b242f6f9e0a56825fa229d69f8d8f9fc6e68d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", + "1 | Dislocated [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dislocated [2/2] : PuqtMGste", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", + "1 | Dislocated [1/2] : GknacoXFdKBPTy8FqCVMdFGwdWq9XYVVss8vwe", + "1 | Dislocated [2/2] : PuqtMGste", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -17351,22 +17715,22 @@ ] }, { - "index": 699, + "index": 713, "name": "Bagslist_Rebag", - "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "27006a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Dislocated [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Dislocated [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", + "1 | Dislocated [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Dislocated [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17374,22 +17738,22 @@ ] }, { - "index": 700, + "index": 714, "name": "Bagslist_Rebag", - "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2700e201d9439ddaebf0cadfaff041a730fa57f14662f13082cd6e34d7c0f2c8a363d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "1 | Dislocated [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dislocated [2/2] : 3Ph4miYfg", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Dislocated [2/2] : DyGtAWNbn", + "1 | Dislocated [1/2] : HgetWXSKoSvPdw5Y9c7w7pHb72cQ75Zf5giP4d", + "1 | Dislocated [2/2] : 3Ph4miYfg", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17397,22 +17761,22 @@ ] }, { - "index": 701, - "name": "Bagslist_Put_in_front_of", - "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 715, + "name": "Bagslist_Rebag", + "blob": "27006a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.000000000987" + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Dislocated [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Dislocated [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17420,22 +17784,24 @@ ] }, { - "index": 702, + "index": 716, "name": "Bagslist_Put_in_front_of", - "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2701dc5d03758aabd29f5237e5e19a6e2c6823cfe02b4487d890c88076f4f0fe0736d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Lighter [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Lighter [2/2] : W2YqpsEiW", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "1 | Lighter [1/2] : HZFgaZAAjiwJXwsQ3rwXarqxkAULtGNoPGMCAG", + "1 | Lighter [2/2] : W2YqpsEiW", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17443,21 +17809,21 @@ ] }, { - "index": 703, + "index": 717, "name": "Bagslist_Put_in_front_of", - "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "2701f4320c6a6a94fb7467393e4b497c2a36d5b07d7405a1c17d2431c5564fdbe864d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "1 | Lighter [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Lighter [2/2] : 6JtYYhKnN", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "1 | Lighter [1/2] : J6W4xvBbMA2JaeNsXNTQTAs2QdTdhFC3UCAVvq", + "1 | Lighter [2/2] : 6JtYYhKnN", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17466,24 +17832,22 @@ ] }, { - "index": 704, + "index": 718, "name": "Bagslist_Put_in_front_of", - "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "27016a26d8368727c39a267ae5a7ceba9d24bc6a70d3d21716b6f54754f7ff093013d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Lighter [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Lighter [2/2] : r9TQhU9HW", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "1 | Lighter [1/2] : EyW8f3WWF9XXBb7pFNoA9mbh647Z7tDABdtDkj", + "1 | Lighter [2/2] : r9TQhU9HW", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17491,22 +17855,43 @@ ] }, { - "index": 705, + "index": 719, "name": "Bagslist_Put_in_front_of", - "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "270164d3e2c5a9899c08802f5e64a8028204cb6cd33d8c4eb385f8dba6087c8b3d31d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", - "2 | Tip : KSM 0.00123456789" + "1 | Lighter [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lighter [2/2] : TZdAHD41C" ], "output_expert": [ "0 | Bagslist : Put in front of", - "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", - "1 | Lighter [2/2] : DyGtAWNbn", + "1 | Lighter [1/2] : ErXFRZ1aSHthJuc75ny2qyfSqm6pAEpxA2Cb1v", + "1 | Lighter [2/2] : TZdAHD41C", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 720, + "name": "Bagslist_Put_in_front_of", + "blob": "27019cb09bfb591e6638f7e35bc8e9106c199a97e750630f0e0dfc27af3aa59a461cd5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Lighter [2/2] : Ho6PzgCdQ", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : G7mT9qsx7k3msfCs5ogamN5QzPuEoPo5vhskU1", + "1 | Lighter [2/2] : Ho6PzgCdQ", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17514,19 +17899,19 @@ ] }, { - "index": 706, + "index": 721, "name": "Configuration_Set_validation_upgrade_cooldown", - "blob": "330001000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33007b000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 1", + "1 | New : 123", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 1", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17535,64 +17920,58 @@ ] }, { - "index": 707, + "index": 722, "name": "Configuration_Set_validation_upgrade_cooldown", - "blob": "3300b3e30100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330001000000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 123827", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 1" ], "output_expert": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 123827", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 708, + "index": 723, "name": "Configuration_Set_validation_upgrade_cooldown", - "blob": "330000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3300b3e30100d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "1 | New : 123827" ], "output_expert": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 0", + "1 | New : 123827", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 709, + "index": 724, "name": "Configuration_Set_validation_upgrade_cooldown", - "blob": "3300ff030000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3300ac350000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | New : 13740", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 1023", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17600,20 +17979,20 @@ ] }, { - "index": 710, + "index": 725, "name": "Configuration_Set_validation_upgrade_cooldown", - "blob": "3300b3e30100d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330001000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 123827", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set validation upgrade cooldown", - "1 | New : 123827", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17621,20 +18000,20 @@ ] }, { - "index": 711, + "index": 726, "name": "Configuration_Set_validation_upgrade_delay", - "blob": "330125010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330125010000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade delay", "1 | New : 293", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set validation upgrade delay", "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17642,38 +18021,40 @@ ] }, { - "index": 712, + "index": 727, "name": "Configuration_Set_validation_upgrade_delay", - "blob": "3301ff030000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330101000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 1023" + "1 | New : 1", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 1023", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 713, + "index": 728, "name": "Configuration_Set_validation_upgrade_delay", - "blob": "330100000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3301ac350000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 0", + "1 | New : 13740", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 0", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17682,17 +18063,17 @@ ] }, { - "index": 714, + "index": 729, "name": "Configuration_Set_validation_upgrade_delay", - "blob": "3301b3e30100d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330101000000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", + "1 | New : 1", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", + "1 | New : 1", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", @@ -17703,16 +18084,39 @@ ] }, { - "index": 715, + "index": 730, "name": "Configuration_Set_validation_upgrade_delay", - "blob": "330100000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330101000000d503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 0" + "1 | New : 1", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set validation upgrade delay", - "1 | New : 0", + "1 | New : 1", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 731, + "name": "Configuration_Set_code_retention_period", + "blob": "33027b000000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 123" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Era Phase : 61", @@ -17722,20 +18126,20 @@ ] }, { - "index": 716, + "index": 732, "name": "Configuration_Set_code_retention_period", - "blob": "330225010000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3302ac350000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set code retention period", - "1 | New : 293", - "2 | Tip : KSM 0.000055555555" + "1 | New : 13740", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set code retention period", - "1 | New : 293", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17743,47 +18147,51 @@ ] }, { - "index": 717, + "index": 733, "name": "Configuration_Set_code_retention_period", - "blob": "3302b3e30100d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330225010000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set code retention period", - "1 | New : 123827" + "1 | New : 293", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set code retention period", - "1 | New : 123827", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 718, + "index": 734, "name": "Configuration_Set_code_retention_period", - "blob": "330201000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330200000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set code retention period", - "1 | New : 1" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set code retention period", - "1 | New : 1", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 719, + "index": 735, "name": "Configuration_Set_code_retention_period", - "blob": "33027b000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33027b000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set code retention period", "1 | New : 123", @@ -17802,62 +18210,60 @@ ] }, { - "index": 720, - "name": "Configuration_Set_code_retention_period", - "blob": "3302ff030000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 736, + "name": "Configuration_Set_max_code_size", + "blob": "3303d3040000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max code size", + "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", + "0 | Configuration : Set max code size", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 721, + "index": 737, "name": "Configuration_Set_max_code_size", - "blob": "330334300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330300000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max code size", - "1 | New : 12340" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max code size", - "1 | New : 12340", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 722, + "index": 738, "name": "Configuration_Set_max_code_size", - "blob": "3303d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330300000000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max code size", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max code size", - "1 | New : 1235", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17865,17 +18271,17 @@ ] }, { - "index": 723, + "index": 739, "name": "Configuration_Set_max_code_size", - "blob": "33039d1c0000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330334300000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max code size", - "1 | New : 7325", + "1 | New : 12340", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max code size", - "1 | New : 7325", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Tip : KSM 0.000055555555", @@ -17886,17 +18292,17 @@ ] }, { - "index": 724, + "index": 740, "name": "Configuration_Set_max_code_size", - "blob": "330300000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3303d3040000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max code size", - "1 | New : 0", + "1 | New : 1235", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max code size", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", @@ -17907,41 +18313,20 @@ ] }, { - "index": 725, - "name": "Configuration_Set_max_code_size", - "blob": "330300000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 741, + "name": "Configuration_Set_max_pov_size", + "blob": "3304d3040000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max code size", - "1 | New : 0" - ], - "output_expert": [ - "0 | Configuration : Set max code size", - "1 | New : 0", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 726, - "name": "Configuration_Set_max_pov_size", - "blob": "330434300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set max pov size", + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max pov size", - "1 | New : 12340", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17949,20 +18334,20 @@ ] }, { - "index": 727, + "index": 742, "name": "Configuration_Set_max_pov_size", - "blob": "330400000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330400000000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max pov size", "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max pov size", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17970,38 +18355,19 @@ ] }, { - "index": 728, - "name": "Configuration_Set_max_pov_size", - "blob": "330434300000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 12340" - ], - "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 12340", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 729, + "index": 743, "name": "Configuration_Set_max_pov_size", - "blob": "330434300000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3304f7010000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max pov size", - "1 | New : 12340", + "1 | New : 503", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max pov size", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18010,20 +18376,20 @@ ] }, { - "index": 730, + "index": 744, "name": "Configuration_Set_max_pov_size", - "blob": "330434300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33049d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max pov size", - "1 | New : 12340", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max pov size", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -18033,20 +18399,20 @@ ] }, { - "index": 731, - "name": "Configuration_Set_max_head_data_size", - "blob": "330534300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 745, + "name": "Configuration_Set_max_pov_size", + "blob": "330434300000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", + "0 | Configuration : Set max pov size", "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max head data size", + "0 | Configuration : Set max pov size", "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18054,20 +18420,20 @@ ] }, { - "index": 732, + "index": 746, "name": "Configuration_Set_max_head_data_size", - "blob": "3305d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33059d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max head data size", - "1 | New : 1235", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max head data size", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -18077,20 +18443,20 @@ ] }, { - "index": 733, + "index": 747, "name": "Configuration_Set_max_head_data_size", - "blob": "330500000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330500000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max head data size", "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max head data size", "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18098,20 +18464,39 @@ ] }, { - "index": 734, + "index": 748, "name": "Configuration_Set_max_head_data_size", - "blob": "33059d1c0000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330500000000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max head data size", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0" ], "output_expert": [ "0 | Configuration : Set max head data size", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 749, + "name": "Configuration_Set_max_head_data_size", + "blob": "3305f7010000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max head data size", + "1 | New : 503", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Configuration : Set max head data size", + "1 | New : 503", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18119,20 +18504,20 @@ ] }, { - "index": 735, + "index": 750, "name": "Configuration_Set_max_head_data_size", - "blob": "3305d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3305f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max head data size", - "1 | New : 1235", + "1 | New : 503", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max head data size", - "1 | New : 1235", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -18142,20 +18527,20 @@ ] }, { - "index": 736, + "index": 751, "name": "Configuration_Set_parathread_cores", - "blob": "3306d3040000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330600000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread cores", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set parathread cores", - "1 | New : 1235", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18163,41 +18548,39 @@ ] }, { - "index": 737, + "index": 752, "name": "Configuration_Set_parathread_cores", - "blob": "330634300000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3306f7010000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread cores", - "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "1 | New : 503" ], "output_expert": [ "0 | Configuration : Set parathread cores", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 738, + "index": 753, "name": "Configuration_Set_parathread_cores", - "blob": "3306f7010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330600000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread cores", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set parathread cores", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18205,19 +18588,19 @@ ] }, { - "index": 739, + "index": 754, "name": "Configuration_Set_parathread_cores", - "blob": "33069d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3306d3040000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread cores", - "1 | New : 7325", + "1 | New : 1235", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set parathread cores", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18226,19 +18609,19 @@ ] }, { - "index": 740, + "index": 755, "name": "Configuration_Set_parathread_cores", - "blob": "3306f7010000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33069d1c0000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread cores", - "1 | New : 503", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set parathread cores", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18247,41 +18630,39 @@ ] }, { - "index": 741, + "index": 756, "name": "Configuration_Set_parathread_retries", - "blob": "330734300000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330700000000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread retries", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "1 | New : 0" ], "output_expert": [ "0 | Configuration : Set parathread retries", - "1 | New : 12340", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 742, + "index": 757, "name": "Configuration_Set_parathread_retries", - "blob": "3307f7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330700000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread retries", - "1 | New : 503", - "2 | Tip : KSM 0.00123456789" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set parathread retries", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18289,45 +18670,39 @@ ] }, { - "index": 743, + "index": 758, "name": "Configuration_Set_parathread_retries", - "blob": "3307d3040000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3307d3040000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread retries", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set parathread retries", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 744, + "index": 759, "name": "Configuration_Set_parathread_retries", - "blob": "3307f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33079d1c0000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread retries", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 7325", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set parathread retries", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18335,39 +18710,41 @@ ] }, { - "index": 745, + "index": 760, "name": "Configuration_Set_parathread_retries", - "blob": "3307d3040000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33079d1c0000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set parathread retries", - "1 | New : 1235" + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set parathread retries", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 746, + "index": 761, "name": "Configuration_Set_group_rotation_frequency", - "blob": "3308ac350000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330825010000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 13740", - "2 | Tip : KSM 5.552342355555" + "1 | New : 293", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 13740", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18375,18 +18752,18 @@ ] }, { - "index": 747, + "index": 762, "name": "Configuration_Set_group_rotation_frequency", - "blob": "330801000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3308ff030000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 1" + "1 | New : 1023" ], "output_expert": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 1", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18394,20 +18771,20 @@ ] }, { - "index": 748, + "index": 763, "name": "Configuration_Set_group_rotation_frequency", - "blob": "33087b000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330801000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 123", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 123", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18415,39 +18792,41 @@ ] }, { - "index": 749, + "index": 764, "name": "Configuration_Set_group_rotation_frequency", - "blob": "3308ff030000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33087b000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 1023" + "1 | New : 123", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 1023", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 750, + "index": 765, "name": "Configuration_Set_group_rotation_frequency", - "blob": "3308b3e30100d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330825010000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", - "2 | Tip : KSM 5.552342355555" + "1 | New : 293", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18455,20 +18834,20 @@ ] }, { - "index": 751, + "index": 766, "name": "Configuration_Set_chain_availability_period", - "blob": "3309ff030000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330901000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set chain availability period", - "1 | New : 1023", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set chain availability period", - "1 | New : 1023", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18476,120 +18855,118 @@ ] }, { - "index": 752, + "index": 767, "name": "Configuration_Set_chain_availability_period", - "blob": "33097b000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33097b000000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set chain availability period", - "1 | New : 123" + "1 | New : 123", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set chain availability period", "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 753, + "index": 768, "name": "Configuration_Set_chain_availability_period", - "blob": "330901000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330901000000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set chain availability period", - "1 | New : 1", - "2 | Tip : KSM 5.552342355555" + "1 | New : 1" ], "output_expert": [ "0 | Configuration : Set chain availability period", "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 754, + "index": 769, "name": "Configuration_Set_chain_availability_period", - "blob": "33097b000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330925010000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set chain availability period", - "1 | New : 123", - "2 | Tip : KSM 0.000055555555" + "1 | New : 293" ], "output_expert": [ "0 | Configuration : Set chain availability period", - "1 | New : 123", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 755, + "index": 770, "name": "Configuration_Set_chain_availability_period", - "blob": "330925010000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3309ac350000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set chain availability period", - "1 | New : 293" + "1 | New : 13740", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set chain availability period", - "1 | New : 293", + "1 | New : 13740", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 756, + "index": 771, "name": "Configuration_Set_thread_availability_period", - "blob": "330aff030000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330aff030000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set thread availability period", - "1 | New : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1023" ], "output_expert": [ "0 | Configuration : Set thread availability period", "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 757, + "index": 772, "name": "Configuration_Set_thread_availability_period", - "blob": "330ab3e30100d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330a7b000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set thread availability period", - "1 | New : 123827", + "1 | New : 123", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set thread availability period", - "1 | New : 123827", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18598,20 +18975,20 @@ ] }, { - "index": 758, + "index": 773, "name": "Configuration_Set_thread_availability_period", - "blob": "330ab3e30100d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330a01000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set thread availability period", - "1 | New : 123827", - "2 | Tip : KSM 5.552342355555" + "1 | New : 1", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set thread availability period", - "1 | New : 123827", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18619,39 +18996,43 @@ ] }, { - "index": 759, + "index": 774, "name": "Configuration_Set_thread_availability_period", - "blob": "330aac350000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330ab3e30100d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set thread availability period", - "1 | New : 13740" + "1 | New : 123827", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set thread availability period", - "1 | New : 13740", + "1 | New : 123827", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 760, + "index": 775, "name": "Configuration_Set_thread_availability_period", - "blob": "330a00000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330a7b000000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set thread availability period", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 123", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set thread availability period", - "1 | New : 0", + "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18659,20 +19040,20 @@ ] }, { - "index": 761, + "index": 776, "name": "Configuration_Set_scheduling_lookahead", - "blob": "330b9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330bd3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 7325", + "1 | New : 1235", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -18682,20 +19063,22 @@ ] }, { - "index": 762, + "index": 777, "name": "Configuration_Set_scheduling_lookahead", - "blob": "330b34300000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330bf7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18703,62 +19086,58 @@ ] }, { - "index": 763, + "index": 778, "name": "Configuration_Set_scheduling_lookahead", - "blob": "330bd3040000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330b9d1c0000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", - "2 | Tip : KSM 0.000055555555" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 764, + "index": 779, "name": "Configuration_Set_scheduling_lookahead", - "blob": "330b00000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330bf7010000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 503" ], "output_expert": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 0", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 765, + "index": 780, "name": "Configuration_Set_scheduling_lookahead", - "blob": "330bf7010000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330b00000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set scheduling lookahead", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18766,20 +19145,20 @@ ] }, { - "index": 766, + "index": 781, "name": "Configuration_Set_max_validators_per_core", - "blob": "330c01f7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330c01f7010000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators per core", "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max validators per core", "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18787,17 +19166,17 @@ ] }, { - "index": 767, + "index": 782, "name": "Configuration_Set_max_validators_per_core", - "blob": "330c01f7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330c0100000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators per core", - "1 | New : 503", + "1 | New : 0", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max validators per core", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Tip : KSM 0.00123456789", @@ -18808,20 +19187,20 @@ ] }, { - "index": 768, + "index": 783, "name": "Configuration_Set_max_validators_per_core", - "blob": "330c0134300000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330c019d1c0000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators per core", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max validators per core", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18829,20 +19208,20 @@ ] }, { - "index": 769, + "index": 784, "name": "Configuration_Set_max_validators_per_core", - "blob": "330c01d3040000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330c01d3040000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators per core", "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max validators per core", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18850,19 +19229,19 @@ ] }, { - "index": 770, + "index": 785, "name": "Configuration_Set_max_validators_per_core", - "blob": "330c0100000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330c019d1c0000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators per core", - "1 | New : 0", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max validators per core", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18871,60 +19250,60 @@ ] }, { - "index": 771, + "index": 786, "name": "Configuration_Set_max_validators", - "blob": "330d0134300000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330d01f7010000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators", - "1 | New : 12340" + "1 | New : 503", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max validators", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 772, + "index": 787, "name": "Configuration_Set_max_validators", - "blob": "330d0134300000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330d01f7010000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 503" ], "output_expert": [ "0 | Configuration : Set max validators", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 773, + "index": 788, "name": "Configuration_Set_max_validators", - "blob": "330d019d1c0000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330d01f7010000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "1 | New : 503", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max validators", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18932,16 +19311,16 @@ ] }, { - "index": 774, + "index": 789, "name": "Configuration_Set_max_validators", - "blob": "330d01d3040000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330d0134300000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators", - "1 | New : 1235" + "1 | New : 12340" ], "output_expert": [ "0 | Configuration : Set max validators", - "1 | New : 1235", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -18951,20 +19330,20 @@ ] }, { - "index": 775, + "index": 790, "name": "Configuration_Set_max_validators", - "blob": "330d01f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330d0100000000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max validators", - "1 | New : 503", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set max validators", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18972,20 +19351,20 @@ ] }, { - "index": 776, + "index": 791, "name": "Configuration_Set_dispute_period", - "blob": "330e9d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330e64000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute period", - "1 | New : 7325", - "2 | Tip : KSM 0.000000000987" + "1 | New : 100", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set dispute period", - "1 | New : 7325", + "1 | New : 100", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18993,20 +19372,20 @@ ] }, { - "index": 777, + "index": 792, "name": "Configuration_Set_dispute_period", - "blob": "330e05000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330e64000000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute period", - "1 | New : 5", - "2 | Tip : KSM 0.000055555555" + "1 | New : 100", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set dispute period", - "1 | New : 5", + "1 | New : 100", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19014,20 +19393,20 @@ ] }, { - "index": 778, + "index": 793, "name": "Configuration_Set_dispute_period", - "blob": "330e0a000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330ed3040000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute period", - "1 | New : 10", - "2 | Tip : KSM 5.552342355555" + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set dispute period", - "1 | New : 10", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19035,41 +19414,41 @@ ] }, { - "index": 779, + "index": 794, "name": "Configuration_Set_dispute_period", - "blob": "330e0a000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330ef4010000d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute period", - "1 | New : 10", - "2 | Tip : KSM 0.000000000987" + "1 | New : 500" ], "output_expert": [ "0 | Configuration : Set dispute period", - "1 | New : 10", + "1 | New : 500", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 780, + "index": 795, "name": "Configuration_Set_dispute_period", - "blob": "330e34300000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330e34300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute period", "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set dispute period", "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19077,20 +19456,20 @@ ] }, { - "index": 781, + "index": 796, "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330fb3e30100d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330f25010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123827", - "2 | Tip : KSM 0.00123456789" + "1 | New : 293", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123827", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19098,22 +19477,20 @@ ] }, { - "index": 782, + "index": 797, "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f01000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330f25010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 293", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19121,39 +19498,41 @@ ] }, { - "index": 783, + "index": 798, "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f01000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330fac350000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1" + "1 | New : 13740", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 784, + "index": 799, "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f7b000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330f7b000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute post conclusion acceptance", "1 | New : 123", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set dispute post conclusion acceptance", "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19161,20 +19540,22 @@ ] }, { - "index": 785, + "index": 800, "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f7b000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "330f00000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19182,19 +19563,19 @@ ] }, { - "index": 786, + "index": 801, "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "33109d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3310d3040000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", + "1 | New : 1235", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19203,62 +19584,62 @@ ] }, { - "index": 787, + "index": 802, "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "33109d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3310f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325" + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 788, + "index": 803, "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "33109d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3310d3040000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 789, + "index": 804, "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "3310f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331034300000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 503", - "2 | Tip : KSM 5.552342355555" + "1 | New : 12340", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 503", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19266,20 +19647,22 @@ ] }, { - "index": 790, + "index": 805, "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "3310f7010000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 503", - "2 | Tip : KSM 0.00123456789" + "1 | New : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set dispute max spam slots", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19287,20 +19670,20 @@ ] }, { - "index": 791, + "index": 806, "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "331125010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3311b3e30100d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 293", - "2 | Tip : KSM 0.000055555555" + "1 | New : 123827", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 293", + "1 | New : 123827", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19308,41 +19691,39 @@ ] }, { - "index": 792, + "index": 807, "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "33117b000000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331101000000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123", - "2 | Tip : KSM 5.552342355555" + "1 | New : 1" ], "output_expert": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 793, + "index": 808, "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "3311ff030000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331101000000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1023", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19350,39 +19731,43 @@ ] }, { - "index": 794, + "index": 809, "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "33117b000000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331101000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123" + "1 | New : 1", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 795, + "index": 810, "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "331101000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331100000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19390,20 +19775,20 @@ ] }, { - "index": 796, + "index": 811, "name": "Configuration_Set_no_show_slots", - "blob": "331200000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33129d1c0000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set no show slots", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set no show slots", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19411,22 +19796,20 @@ ] }, { - "index": 797, + "index": 812, "name": "Configuration_Set_no_show_slots", - "blob": "33129d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331200000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set no show slots", - "1 | New : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set no show slots", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19434,19 +19817,19 @@ ] }, { - "index": 798, + "index": 813, "name": "Configuration_Set_no_show_slots", - "blob": "3312f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331200000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set no show slots", - "1 | New : 503", + "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set no show slots", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19455,20 +19838,20 @@ ] }, { - "index": 799, + "index": 814, "name": "Configuration_Set_no_show_slots", - "blob": "331234300000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33129d1c0000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set no show slots", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set no show slots", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19476,20 +19859,20 @@ ] }, { - "index": 800, + "index": 815, "name": "Configuration_Set_no_show_slots", - "blob": "33129d1c0000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3312d3040000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set no show slots", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set no show slots", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19497,22 +19880,20 @@ ] }, { - "index": 801, + "index": 816, "name": "Configuration_Set_n_delay_tranches", - "blob": "3313d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3313f7010000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set n delay tranches", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set n delay tranches", - "1 | New : 1235", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19520,17 +19901,17 @@ ] }, { - "index": 802, + "index": 817, "name": "Configuration_Set_n_delay_tranches", - "blob": "3313f7010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331300000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set n delay tranches", - "1 | New : 503", + "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set n delay tranches", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", @@ -19541,38 +19922,40 @@ ] }, { - "index": 803, + "index": 818, "name": "Configuration_Set_n_delay_tranches", - "blob": "3313d3040000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33139d1c0000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set n delay tranches", - "1 | New : 1235" + "1 | New : 7325", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set n delay tranches", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 804, + "index": 819, "name": "Configuration_Set_n_delay_tranches", - "blob": "331300000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331334300000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set n delay tranches", - "1 | New : 0", + "1 | New : 12340", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set n delay tranches", - "1 | New : 0", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19581,20 +19964,22 @@ ] }, { - "index": 805, + "index": 820, "name": "Configuration_Set_n_delay_tranches", - "blob": "33139d1c0000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33139d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set n delay tranches", "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set n delay tranches", "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19602,22 +19987,20 @@ ] }, { - "index": 806, + "index": 821, "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "33149d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331400000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19625,38 +20008,19 @@ ] }, { - "index": 807, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "3314f7010000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 503" - ], - "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 503", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 808, + "index": 822, "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "33149d1c0000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331400000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", + "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19665,18 +20029,18 @@ ] }, { - "index": 809, + "index": 823, "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "3314d3040000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33149d1c0000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19684,20 +20048,20 @@ ] }, { - "index": 810, + "index": 824, "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "3314d3040000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3314f7010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235", - "2 | Tip : KSM 0.00123456789" + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19705,19 +20069,19 @@ ] }, { - "index": 811, - "name": "Configuration_Set_needed_approvals", - "blob": "3315f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 825, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "331434300000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", - "1 | New : 503", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 12340", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set needed approvals", - "1 | New : 503", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19726,20 +20090,20 @@ ] }, { - "index": 812, + "index": 826, "name": "Configuration_Set_needed_approvals", - "blob": "33159d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3315f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set needed approvals", - "1 | New : 7325", + "1 | New : 503", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set needed approvals", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -19749,20 +20113,20 @@ ] }, { - "index": 813, + "index": 827, "name": "Configuration_Set_needed_approvals", - "blob": "33159d1c0000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331500000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set needed approvals", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set needed approvals", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19770,20 +20134,20 @@ ] }, { - "index": 814, + "index": 828, "name": "Configuration_Set_needed_approvals", - "blob": "3315f7010000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331534300000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set needed approvals", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set needed approvals", - "1 | New : 503", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19791,20 +20155,20 @@ ] }, { - "index": 815, + "index": 829, "name": "Configuration_Set_needed_approvals", - "blob": "3315d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33159d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set needed approvals", - "1 | New : 1235", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set needed approvals", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -19814,20 +20178,41 @@ ] }, { - "index": 816, + "index": 830, + "name": "Configuration_Set_needed_approvals", + "blob": "3315d3040000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set needed approvals", + "1 | New : 1235" + ], + "output_expert": [ + "0 | Configuration : Set needed approvals", + "1 | New : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 831, "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "331600000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331634300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19835,20 +20220,20 @@ ] }, { - "index": 817, + "index": 832, "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "331600000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331600000000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set relay vrf modulo samples", "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set relay vrf modulo samples", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19856,20 +20241,22 @@ ] }, { - "index": 818, + "index": 833, "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "33169d1c0000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3316d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19877,85 +20264,77 @@ ] }, { - "index": 819, + "index": 834, "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "331600000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331600000000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0" ], "output_expert": [ "0 | Configuration : Set relay vrf modulo samples", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 820, + "index": 835, "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "3316f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3316d3040000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 503", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 821, + "index": 836, "name": "Configuration_Set_max_upward_queue_count", - "blob": "331700000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33179d1c0000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue count", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set max upward queue count", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 822, + "index": 837, "name": "Configuration_Set_max_upward_queue_count", - "blob": "3317d3040000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331700000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue count", - "1 | New : 1235", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max upward queue count", - "1 | New : 1235", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19963,20 +20342,20 @@ ] }, { - "index": 823, + "index": 838, "name": "Configuration_Set_max_upward_queue_count", - "blob": "331734300000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331700000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue count", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max upward queue count", - "1 | New : 12340", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19984,20 +20363,20 @@ ] }, { - "index": 824, + "index": 839, "name": "Configuration_Set_max_upward_queue_count", - "blob": "331734300000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3317d3040000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue count", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max upward queue count", - "1 | New : 12340", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20005,20 +20384,20 @@ ] }, { - "index": 825, + "index": 840, "name": "Configuration_Set_max_upward_queue_count", - "blob": "3317d3040000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3317d3040000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue count", "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set max upward queue count", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20026,20 +20405,20 @@ ] }, { - "index": 826, + "index": 841, "name": "Configuration_Set_max_upward_queue_size", - "blob": "3318f7010000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331834300000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue size", - "1 | New : 503", - "2 | Tip : KSM 5.552342355555" + "1 | New : 12340", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set max upward queue size", - "1 | New : 503", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20047,43 +20426,39 @@ ] }, { - "index": 827, + "index": 842, "name": "Configuration_Set_max_upward_queue_size", - "blob": "331800000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33189d1c0000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue size", - "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set max upward queue size", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 828, + "index": 843, "name": "Configuration_Set_max_upward_queue_size", - "blob": "331800000000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331800000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue size", "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max upward queue size", "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20091,20 +20466,22 @@ ] }, { - "index": 829, + "index": 844, "name": "Configuration_Set_max_upward_queue_size", - "blob": "33189d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3318f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue size", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max upward queue size", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20112,20 +20489,20 @@ ] }, { - "index": 830, + "index": 845, "name": "Configuration_Set_max_upward_queue_size", - "blob": "3318f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33189d1c0000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward queue size", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max upward queue size", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20133,20 +20510,20 @@ ] }, { - "index": 831, + "index": 846, "name": "Configuration_Set_max_downward_message_size", - "blob": "33199d1c0000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33199d1c0000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max downward message size", "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max downward message size", "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20154,39 +20531,43 @@ ] }, { - "index": 832, + "index": 847, "name": "Configuration_Set_max_downward_message_size", - "blob": "331900000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3319d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max downward message size", - "1 | New : 0" + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max downward message size", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 833, + "index": 848, "name": "Configuration_Set_max_downward_message_size", - "blob": "3319f7010000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3319d3040000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max downward message size", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max downward message size", - "1 | New : 503", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20194,20 +20575,20 @@ ] }, { - "index": 834, + "index": 849, "name": "Configuration_Set_max_downward_message_size", - "blob": "331900000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331934300000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max downward message size", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "1 | New : 12340", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set max downward message size", - "1 | New : 0", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20215,20 +20596,20 @@ ] }, { - "index": 835, + "index": 850, "name": "Configuration_Set_max_downward_message_size", - "blob": "331900000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3319d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max downward message size", - "1 | New : 0", + "1 | New : 1235", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max downward message size", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -20238,19 +20619,19 @@ ] }, { - "index": 836, + "index": 851, "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331a0000000000000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20259,20 +20640,20 @@ ] }, { - "index": 837, + "index": 852, "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331a0000000000000000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20280,20 +20661,20 @@ ] }, { - "index": 838, + "index": 853, "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331a2362000000000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump service total weight", "1 | New : 25123", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set ump service total weight", "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20301,20 +20682,20 @@ ] }, { - "index": 839, + "index": 854, "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331a0000000000000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20322,77 +20703,85 @@ ] }, { - "index": 840, + "index": 855, "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331a0000000000000000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 841, + "index": 856, "name": "Configuration_Set_max_upward_message_size", - "blob": "331b00000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331b34300000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message size", - "1 | New : 0" + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set max upward message size", - "1 | New : 0", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 842, + "index": 857, "name": "Configuration_Set_max_upward_message_size", - "blob": "331b9d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331bf7010000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message size", - "1 | New : 7325" + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max upward message size", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 843, + "index": 858, "name": "Configuration_Set_max_upward_message_size", - "blob": "331bf7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331bd3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message size", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max upward message size", - "1 | New : 503", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20400,39 +20789,43 @@ ] }, { - "index": 844, + "index": 859, "name": "Configuration_Set_max_upward_message_size", - "blob": "331bf7010000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331b34300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message size", - "1 | New : 503" + "1 | New : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max upward message size", - "1 | New : 503", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 845, + "index": 860, "name": "Configuration_Set_max_upward_message_size", - "blob": "331bd3040000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331b00000000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message size", - "1 | New : 1235", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set max upward message size", - "1 | New : 1235", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20440,20 +20833,20 @@ ] }, { - "index": 846, + "index": 861, "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331cf7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331cf7010000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message num per candida", "1 | New : 503", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set max upward message num per candida", "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20461,28 +20854,9 @@ ] }, { - "index": 847, + "index": 862, "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331cd3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235" - ], - "output_expert": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 848, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331c9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331c9d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message num per candida", "1 | New : 7325", @@ -20493,7 +20867,7 @@ "0 | Configuration : Set max upward message num per candida", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -20503,18 +20877,18 @@ ] }, { - "index": 849, + "index": 863, "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331cd3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331c9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -20526,22 +20900,20 @@ ] }, { - "index": 850, + "index": 864, "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331c9d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331c00000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set max upward message num per candida", - "1 | New : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set max upward message num per candida", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20549,20 +20921,20 @@ ] }, { - "index": 851, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331df7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 865, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331c00000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20570,9 +20942,9 @@ ] }, { - "index": 852, + "index": 866, "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d00000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331d00000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp open request ttl", "1 | New : 0", @@ -20582,7 +20954,7 @@ "0 | Configuration : Set hrmp open request ttl", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20591,22 +20963,20 @@ ] }, { - "index": 853, + "index": 867, "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d34300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331d9d1c0000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 7325", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20614,22 +20984,20 @@ ] }, { - "index": 854, + "index": 868, "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d00000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331df7010000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 0", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20637,20 +21005,20 @@ ] }, { - "index": 855, + "index": 869, "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331df7010000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331d9d1c0000d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20658,42 +21026,42 @@ ] }, { - "index": 856, - "name": "Configuration_Set_hrmp_sender_deposit", - "blob": "331e8c3544c81220fe2639607fe7644f0fdfd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 870, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331dd3040000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676" + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 857, + "index": 871, "name": "Configuration_Set_hrmp_sender_deposit", - "blob": "331e8c3544c81220fe2639607fe7644f0fdfd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331ed9e97f6cb3e6ddba89b3325f131424cad503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20702,21 +21070,21 @@ ] }, { - "index": 858, + "index": 872, "name": "Configuration_Set_hrmp_sender_deposit", - "blob": "331e8c3544c81220fe2639607fe7644f0fdfd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331ed9e97f6cb3e6ddba89b3325f131424cad5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20725,20 +21093,20 @@ ] }, { - "index": 859, + "index": 873, "name": "Configuration_Set_hrmp_sender_deposit", - "blob": "331e8c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331ed9e97f6cb3e6ddba89b3325f131424cad5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409" ], "output_expert": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20746,22 +21114,22 @@ ] }, { - "index": 860, + "index": 874, "name": "Configuration_Set_hrmp_sender_deposit", - "blob": "331e8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331ed9e97f6cb3e6ddba89b3325f131424cad5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", - "2 | Tip : KSM 0.000000000987" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp sender deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20769,22 +21137,22 @@ ] }, { - "index": 861, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f8c3544c81220fe2639607fe7644f0fdfd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 875, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331ed9e97f6cb3e6ddba89b3325f131424cad503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20792,22 +21160,24 @@ ] }, { - "index": 862, + "index": 876, "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331fd9e97f6cb3e6ddba89b3325f131424cad5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", - "2 | Tip : KSM 0.000000000987" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20815,22 +21185,22 @@ ] }, { - "index": 863, + "index": 877, "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f8c3544c81220fe2639607fe7644f0fdfd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331fd9e97f6cb3e6ddba89b3325f131424cad50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", - "2 | Tip : KSM 0.00123456789" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20838,62 +21208,70 @@ ] }, { - "index": 864, + "index": 878, "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331fd9e97f6cb3e6ddba89b3325f131424cad5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 865, + "index": 879, "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "331fd9e97f6cb3e6ddba89b3325f131424cad503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676" + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 296497337817734227229652438.025266", - "1 | New [2/2] : 017676", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 866, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "33209d1c0000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 880, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331fd9e97f6cb3e6ddba89b3325f131424cad503910133158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 268691385018449790993905074.138335", + "1 | New [2/2] : 144409", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20901,16 +21279,16 @@ ] }, { - "index": 867, + "index": 881, "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "33209d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3320d3040000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Era Phase : 61", @@ -20920,39 +21298,43 @@ ] }, { - "index": 868, + "index": 882, "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "332000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3320f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 0" + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 0", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 869, + "index": 883, "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "33209d1c0000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3320f7010000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "1 | New : 503", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20960,20 +21342,20 @@ ] }, { - "index": 870, + "index": 884, "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "33209d1c0000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332034300000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", - "2 | Tip : KSM 0.000000000987" + "1 | New : 12340", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20981,18 +21363,18 @@ ] }, { - "index": 871, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332100000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 885, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "332000000000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp channel max capacity", "1 | New : 0" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp channel max capacity", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21000,20 +21382,20 @@ ] }, { - "index": 872, + "index": 886, "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332100000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33219d1c0000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21021,18 +21403,39 @@ ] }, { - "index": 873, + "index": 887, "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332134300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3321d3040000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 12340" + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 12340", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 888, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "33219d1c0000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 7325" + ], + "output_expert": [ + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 7325", + "2 | Chain : Kusama", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21040,43 +21443,39 @@ ] }, { - "index": 874, + "index": 889, "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332100000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3321d3040000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 875, + "index": 890, "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332134300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332134300000d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max total size", "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp channel max total size", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21084,41 +21483,39 @@ ] }, { - "index": 876, + "index": 891, "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "332200000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3322d3040000d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 877, + "index": 892, "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "3322f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332200000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 503", - "2 | Tip : KSM 5.552342355555" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21126,20 +21523,20 @@ ] }, { - "index": 878, + "index": 893, "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "3322d3040000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332234300000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21147,22 +21544,20 @@ ] }, { - "index": 879, + "index": 894, "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "3322f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332200000000d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21170,20 +21565,22 @@ ] }, { - "index": 880, + "index": 895, "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "332200000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332200000000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain inbound channel", "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain inbound channel", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21191,18 +21588,18 @@ ] }, { - "index": 881, + "index": 896, "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "33239d1c0000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3323d3040000d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 7325" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21210,79 +21607,81 @@ ] }, { - "index": 882, + "index": 897, "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "332300000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3323d3040000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 0" + "1 | New : 1235", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 883, + "index": 898, "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "33239d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33239d1c0000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 7325" + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread inbound channe", "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 884, + "index": 899, "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "3323d3040000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332300000000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 885, + "index": 900, "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "332334300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33239d1c0000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21290,18 +21689,18 @@ ] }, { - "index": 886, + "index": 901, "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332434300000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33249d1c0000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21309,20 +21708,22 @@ ] }, { - "index": 887, + "index": 902, "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332400000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3324d3040000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21330,58 +21731,62 @@ ] }, { - "index": 888, + "index": 903, "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "33249d1c0000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332400000000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 7325" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 7325", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 889, + "index": 904, "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332434300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332400000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340" + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 890, + "index": 905, "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332434300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3324f7010000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21389,22 +21794,20 @@ ] }, { - "index": 891, + "index": 906, "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "332534300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332534300000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21412,18 +21815,18 @@ ] }, { - "index": 892, + "index": 907, "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325d3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33259d1c0000d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235" + "1 | New : 7325" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21431,20 +21834,20 @@ ] }, { - "index": 893, + "index": 908, "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "33259d1c0000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3325d3040000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21452,20 +21855,20 @@ ] }, { - "index": 894, + "index": 909, "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "332500000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3325f7010000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "1 | New : 503", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 0", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21473,39 +21876,45 @@ ] }, { - "index": 895, + "index": 910, "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325f7010000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332500000000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 503" + "1 | New : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 896, + "index": 911, "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332634300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332600000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21513,20 +21922,20 @@ ] }, { - "index": 897, + "index": 912, "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332600000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33269d1c0000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 0", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21534,20 +21943,20 @@ ] }, { - "index": 898, + "index": 913, "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332634300000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33269d1c0000d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21555,20 +21964,20 @@ ] }, { - "index": 899, + "index": 914, "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332600000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332600000000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21576,43 +21985,39 @@ ] }, { - "index": 900, + "index": 915, "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "33269d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3326d3040000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 7325", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1235" ], "output_expert": [ "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 7325", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 901, + "index": 916, "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "3327f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33279d1c0000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 7325", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21620,22 +22025,20 @@ ] }, { - "index": 902, + "index": 917, "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "332700000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3327d3040000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 0", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21643,20 +22046,20 @@ ] }, { - "index": 903, + "index": 918, "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "332700000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332700000000d50391018ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21664,39 +22067,43 @@ ] }, { - "index": 904, + "index": 919, "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "332734300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33279d1c0000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340" + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 905, + "index": 920, "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "332734300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3327d3040000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21704,20 +22111,20 @@ ] }, { - "index": 906, + "index": 921, "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33280000000000000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33280000000000000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21725,20 +22132,20 @@ ] }, { - "index": 907, + "index": 922, "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33280000000000000000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33280000000000000000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21746,9 +22153,9 @@ ] }, { - "index": 908, + "index": 923, "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33282362000000000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33282362000000000000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump max individual weight", "1 | New : 25123", @@ -21758,7 +22165,7 @@ "0 | Configuration : Set ump max individual weight", "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -21767,20 +22174,20 @@ ] }, { - "index": 909, + "index": 924, "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33280000000000000000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33280000000000000000d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set ump max individual weight", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21788,47 +22195,51 @@ ] }, { - "index": 910, + "index": 925, "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33282362000000000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "33282362000000000000d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set ump max individual weight", - "1 | New : 25123" + "1 | New : 25123", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set ump max individual weight", "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 911, - "name": "Configuration_Set_pvf_checking_enabled", - "blob": "332900d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 926, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332901d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : False" + "1 | New : True", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : False", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 912, + "index": 927, "name": "Configuration_Set_pvf_checking_enabled", - "blob": "332901d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332901d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf checking enabled", "1 | New : True" @@ -21837,7 +22248,7 @@ "0 | Configuration : Set pvf checking enabled", "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21845,41 +22256,41 @@ ] }, { - "index": 913, + "index": 928, "name": "Configuration_Set_pvf_checking_enabled", - "blob": "332901d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332900d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True", - "2 | Tip : KSM 5.552342355555" + "1 | New : False" ], "output_expert": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True", + "1 | New : False", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 914, + "index": 929, "name": "Configuration_Set_pvf_checking_enabled", - "blob": "332901d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332900d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True", - "2 | Tip : KSM 0.00123456789" + "1 | New : False", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True", + "1 | New : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21887,62 +22298,60 @@ ] }, { - "index": 915, + "index": 930, "name": "Configuration_Set_pvf_checking_enabled", - "blob": "332901d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332900d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True" + "1 | New : False", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set pvf checking enabled", - "1 | New : True", + "1 | New : False", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 916, + "index": 931, "name": "Configuration_Set_pvf_voting_ttl", - "blob": "332af7010000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332a34300000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New : 12340" ], "output_expert": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 917, + "index": 932, "name": "Configuration_Set_pvf_voting_ttl", - "blob": "332a01000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332a00000000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 1", - "2 | Tip : KSM 0.000055555555" + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 1", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21950,20 +22359,20 @@ ] }, { - "index": 918, + "index": 933, "name": "Configuration_Set_pvf_voting_ttl", - "blob": "332a34300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332ad3040000d503046d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 12340", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21971,19 +22380,19 @@ ] }, { - "index": 919, + "index": 934, "name": "Configuration_Set_pvf_voting_ttl", - "blob": "332af7010000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332a9d1c0000d503040b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -21992,20 +22401,20 @@ ] }, { - "index": 920, + "index": 935, "name": "Configuration_Set_pvf_voting_ttl", - "blob": "332af7010000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332a00000000d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Configuration : Set pvf voting ttl", - "1 | New : 503", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22013,9 +22422,9 @@ ] }, { - "index": 921, + "index": 936, "name": "Configuration_Set_minimum_validation_upgrade_delay", - "blob": "332b25010000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332b25010000d5038d246d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set minimum validation upgrade delay", "1 | New : 293", @@ -22025,7 +22434,7 @@ "0 | Configuration : Set minimum validation upgrade delay", "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -22034,20 +22443,20 @@ ] }, { - "index": 922, + "index": 937, "name": "Configuration_Set_minimum_validation_upgrade_delay", - "blob": "332bff030000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332b00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 1023", + "1 | New : 0", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 1023", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -22057,19 +22466,19 @@ ] }, { - "index": 923, + "index": 938, "name": "Configuration_Set_minimum_validation_upgrade_delay", - "blob": "332b00000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332b7b000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 0", + "1 | New : 123", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 0", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -22078,20 +22487,20 @@ ] }, { - "index": 924, + "index": 939, "name": "Configuration_Set_minimum_validation_upgrade_delay", - "blob": "332bff030000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332bac350000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 1023", - "2 | Tip : KSM 5.552342355555" + "1 | New : 13740", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set minimum validation upgrade delay", - "1 | New : 1023", + "1 | New : 13740", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22099,20 +22508,22 @@ ] }, { - "index": 925, + "index": 940, "name": "Configuration_Set_minimum_validation_upgrade_delay", - "blob": "332b7b000000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332b7b000000d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set minimum validation upgrade delay", "1 | New : 123", - "2 | Tip : KSM 5.552342355555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Configuration : Set minimum validation upgrade delay", "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22120,41 +22531,39 @@ ] }, { - "index": 926, + "index": 941, "name": "Configuration_Set_bypass_consistency_check", - "blob": "332c00d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332c00d5038d2400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set bypass consistency check", - "1 | New : False", - "2 | Tip : KSM 0.00123456789" + "1 | New : False" ], "output_expert": [ "0 | Configuration : Set bypass consistency check", "1 | New : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 927, + "index": 942, "name": "Configuration_Set_bypass_consistency_check", - "blob": "332c01d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332c01d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set bypass consistency check", "1 | New : True", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set bypass consistency check", "1 | New : True", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22162,20 +22571,20 @@ ] }, { - "index": 928, + "index": 943, "name": "Configuration_Set_bypass_consistency_check", - "blob": "332c00d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332c01d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set bypass consistency check", - "1 | New : False", - "2 | Tip : KSM 0.000055555555" + "1 | New : True", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set bypass consistency check", - "1 | New : False", + "1 | New : True", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22183,58 +22592,62 @@ ] }, { - "index": 929, + "index": 944, "name": "Configuration_Set_bypass_consistency_check", - "blob": "332c01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332c01d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set bypass consistency check", - "1 | New : True" + "1 | New : True", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Configuration : Set bypass consistency check", "1 | New : True", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 930, + "index": 945, "name": "Configuration_Set_bypass_consistency_check", - "blob": "332c00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "332c00d503ae1103006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Configuration : Set bypass consistency check", - "1 | New : False" + "1 | New : False", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Configuration : Set bypass consistency check", "1 | New : False", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 931, + "index": 946, "name": "Initializer_Force_approve", - "blob": "3900ff030000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "390001000000d50391016d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | Up to : 1", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 1023", + "1 | Up to : 1", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22242,20 +22655,20 @@ ] }, { - "index": 932, + "index": 947, "name": "Initializer_Force_approve", - "blob": "390025010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3900b3e30100d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 293", - "2 | Tip : KSM 0.00123456789" + "1 | Up to : 123827", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 293", + "1 | Up to : 123827", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22263,60 +22676,60 @@ ] }, { - "index": 933, + "index": 948, "name": "Initializer_Force_approve", - "blob": "390025010000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "390000000000d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 293" + "1 | Up to : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 293", + "1 | Up to : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 934, + "index": 949, "name": "Initializer_Force_approve", - "blob": "3900b3e30100d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3900b3e30100d503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 123827", - "2 | Tip : KSM 0.000055555555" + "1 | Up to : 123827" ], "output_expert": [ "0 | Initializer : Force approve", "1 | Up to : 123827", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 935, + "index": 950, "name": "Initializer_Force_approve", - "blob": "3900ff030000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "39007b000000d5038d248ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 1023", - "2 | Tip : KSM 5.552342355555" + "1 | Up to : 123", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 1023", + "1 | Up to : 123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22324,170 +22737,188 @@ ] }, { - "index": 936, + "index": 951, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c049d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 5.552342355555" + "1 | Channels : 7325", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", - "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 7325", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 937, + "index": 952, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d3040000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 5.552342355555" + "1 | Channels : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", - "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 938, + "index": 953, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0400000000d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.000055555555" + "1 | Channels : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", - "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 0", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 939, + "index": 954, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0400000000d503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.00123456789" + "1 | Channels : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", - "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 0", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 940, + "index": 955, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d3040000d50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.00123456789" + "1 | Channels : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", - "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 941, + "index": 956, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0534300000d503ae11030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 0.00123456789" + "1 | Channels : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", - "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 942, + "index": 957, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05f7010000d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 0.000055555555" + "1 | Channels : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", - "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 503", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 943, + "index": 958, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0534300000d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 5.552342355555" + "1 | Channels : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", - "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 944, + "index": 959, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0534300000d5030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 0.00123456789" + "1 | Channels : 12340" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", - "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.00123456789", + "1 | Channels : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22495,30 +22926,32 @@ ] }, { - "index": 945, + "index": 960, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c0534300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Channels : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", - "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "1 | Channels : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 946, + "index": 961, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", "1 | Tip : KSM 0.000000000987" @@ -22526,7 +22959,7 @@ "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 0", "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -22535,37 +22968,37 @@ ] }, { - "index": 947, + "index": 962, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Parasdisputes : Force unfreeze", - "1 | Tip : KSM 0.000055555555" + "0 | Parasdisputes : Force unfreeze" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 948, + "index": 963, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22573,18 +23006,18 @@ ] }, { - "index": 949, + "index": 964, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d5030403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22592,37 +23025,37 @@ ] }, { - "index": 950, + "index": 965, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503ae1103008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Parasdisputes : Force unfreeze" + "0 | Parasdisputes : Force unfreeze", + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 951, + "index": 966, "name": "Registrar_Reserve", - "blob": "4605d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d503048ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 1", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22630,20 +23063,18 @@ ] }, { - "index": 952, + "index": 967, "name": "Registrar_Reserve", - "blob": "4605d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 2339", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22651,18 +23082,18 @@ ] }, { - "index": 953, + "index": 968, "name": "Registrar_Reserve", - "blob": "4605d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22670,26 +23101,30 @@ ] }, { - "index": 954, + "index": 969, "name": "Registrar_Reserve", - "blob": "4605d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d5030033158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Registrar : Reserve" + "0 | Registrar : Reserve", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 955, + "index": 970, "name": "Registrar_Reserve", - "blob": "4605d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -22698,7 +23133,7 @@ "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 2339", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", @@ -22708,22 +23143,24 @@ ] }, { - "index": 956, + "index": 971, "name": "Auctions_New_auction", - "blob": "4800f199dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800b62896308cd5030433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 9852", - "2 | Lease period index : 55", - "3 | Tip : KSM 0.000055555555" + "1 | Duration : 203786797", + "2 | Lease period index : 35", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 9852", - "2 | Lease period index : 55", + "1 | Duration : 203786797", + "2 | Lease period index : 35", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22731,21 +23168,21 @@ ] }, { - "index": 957, + "index": 972, "name": "Auctions_New_auction", - "blob": "4800dcdcd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800b6289630b6289630d503910103d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", + "1 | Duration : 203786797", + "2 | Lease period index : 203786797", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", + "1 | Duration : 203786797", + "2 | Lease period index : 203786797", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -22754,22 +23191,22 @@ ] }, { - "index": 958, + "index": 973, "name": "Auctions_New_auction", - "blob": "480096fb647796fb6477d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "48008c199ed503008ed73e0dd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 500776677", - "2 | Lease period index : 500776677", - "3 | Tip : KSM 0.00123456789" + "1 | Duration : 35", + "2 | Lease period index : 10118", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 500776677", - "2 | Lease period index : 500776677", + "1 | Duration : 35", + "2 | Lease period index : 10118", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22777,22 +23214,22 @@ ] }, { - "index": 959, + "index": 974, "name": "Auctions_New_auction", - "blob": "4800dcdcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "48000dfdb6289630d503000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", - "3 | Tip : KSM 0.000055555555" + "1 | Duration : 16195", + "2 | Lease period index : 203786797", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", + "1 | Duration : 16195", + "2 | Lease period index : 203786797", "3 | Chain : Kusama", "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22800,51 +23237,49 @@ ] }, { - "index": 960, + "index": 975, "name": "Auctions_New_auction", - "blob": "4800dcdcd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800b6289630199ed503ae11030000d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", - "3 | Tip : KSM 0.00123456789" + "1 | Duration : 203786797", + "2 | Lease period index : 10118" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 55", - "2 | Lease period index : 55", + "1 | Duration : 203786797", + "2 | Lease period index : 10118", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 961, + "index": 976, "name": "Auctions_Bid", - "blob": "480196fb6477dc96fb6477f19903d2029649d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4801b62896308c199e0dfd03d2029649d503006d0fd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 500776677", - "2 | Auction index : 55", - "3 | First slot : 500776677", - "4 | Last slot : 9852", + "1 | Para : 203786797", + "2 | Auction index : 35", + "3 | First slot : 10118", + "4 | Last slot : 16195", "5 | Amount : KSM 0.00123456789", - "6 | Tip : KSM 0.000055555555" + "6 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 500776677", - "2 | Auction index : 55", - "3 | First slot : 500776677", - "4 | Last slot : 9852", + "1 | Para : 203786797", + "2 | Auction index : 35", + "3 | First slot : 10118", + "4 | Last slot : 16195", "5 | Amount : KSM 0.00123456789", "6 | Chain : Kusama", - "7 | Nonce : 100", - "8 | Tip : KSM 0.000055555555", + "7 | Nonce : 0", + "8 | Tip : KSM 0.000000000987", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22852,30 +23287,30 @@ ] }, { - "index": 962, + "index": 977, "name": "Auctions_Bid", - "blob": "480196fb6477f19996fb6477dc8ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "48010dfdb6289630199e0dfd33158139ae28a3dfaac5fe1560a5e9e05cd50391010b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 500776677", - "2 | Auction index : 9852", - "3 | First slot : 500776677", - "4 | Last slot : 55", - "5 | Amount : KSM 0.000055555555", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789" + "1 | Para : 16195", + "2 | Auction index : 203786797", + "3 | First slot : 10118", + "4 | Last slot : 16195", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 500776677", - "2 | Auction index : 9852", - "3 | First slot : 500776677", - "4 | Last slot : 55", - "5 | Amount : KSM 0.000055555555", + "1 | Para : 16195", + "2 | Auction index : 203786797", + "3 | First slot : 10118", + "4 | Last slot : 16195", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", "6 | Chain : Kusama", - "7 | Nonce : 50283", - "8 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "8 | Tip [2/2] : 456789", + "7 | Nonce : 100", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22883,28 +23318,32 @@ ] }, { - "index": 963, + "index": 978, "name": "Auctions_Bid", - "blob": "4801091696fb6477dc09160b63ce64c10c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "48010dfd199eb62896308c33158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 1410", - "2 | Auction index : 500776677", - "3 | First slot : 55", - "4 | Last slot : 1410", - "5 | Amount : KSM 5.552342355555", - "6 | Tip : KSM 5.552342355555" + "1 | Para : 16195", + "2 | Auction index : 10118", + "3 | First slot : 203786797", + "4 | Last slot : 35", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 1410", - "2 | Auction index : 500776677", - "3 | First slot : 55", - "4 | Last slot : 1410", - "5 | Amount : KSM 5.552342355555", + "1 | Para : 16195", + "2 | Auction index : 10118", + "3 | First slot : 203786797", + "4 | Last slot : 35", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", "6 | Chain : Kusama", - "7 | Nonce : 100", - "8 | Tip : KSM 5.552342355555", + "7 | Nonce : 2339", + "8 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "8 | Tip [2/2] : 456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22912,55 +23351,59 @@ ] }, { - "index": 964, + "index": 979, "name": "Auctions_Bid", - "blob": "4801f199dc091696fb647700d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4801199e8cb62896308c0b63ce64c10c05d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 9852", - "2 | Auction index : 55", - "3 | First slot : 1410", - "4 | Last slot : 500776677", - "5 | Amount : KSM 0.0" + "1 | Para : 10118", + "2 | Auction index : 35", + "3 | First slot : 203786797", + "4 | Last slot : 35", + "5 | Amount : KSM 5.552342355555", + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 9852", - "2 | Auction index : 55", - "3 | First slot : 1410", - "4 | Last slot : 500776677", - "5 | Amount : KSM 0.0", + "1 | Para : 10118", + "2 | Auction index : 35", + "3 | First slot : 203786797", + "4 | Last slot : 35", + "5 | Amount : KSM 5.552342355555", "6 | Chain : Kusama", - "7 | Nonce : 50283", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "7 | Nonce : 0", + "8 | Tip : KSM 0.00123456789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 965, + "index": 980, "name": "Auctions_Bid", - "blob": "4801dcf199dc96fb64776d0fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "48010dfd199eb62896300dfd33158139ae28a3dfaac5fe1560a5e9e05cd503ae1103000b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 55", - "2 | Auction index : 9852", - "3 | First slot : 55", - "4 | Last slot : 500776677", - "5 | Amount : KSM 0.000000000987", - "6 | Tip : KSM 0.000000000987" + "1 | Para : 16195", + "2 | Auction index : 10118", + "3 | First slot : 203786797", + "4 | Last slot : 16195", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 55", - "2 | Auction index : 9852", - "3 | First slot : 55", - "4 | Last slot : 500776677", - "5 | Amount : KSM 0.000000000987", + "1 | Para : 16195", + "2 | Auction index : 10118", + "3 | First slot : 203786797", + "4 | Last slot : 16195", + "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "5 | Amount [2/2] : 456789", "6 | Chain : Kusama", - "7 | Nonce : 2339", - "8 | Tip : KSM 0.000000000987", + "7 | Nonce : 50283", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -22968,37 +23411,35 @@ ] }, { - "index": 966, + "index": 981, "name": "Auctions_Cancel_auction", - "blob": "4802d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d503910100d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.00123456789" + "0 | Auctions : Cancel auction" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 967, + "index": 982, "name": "Auctions_Cancel_auction", - "blob": "4802d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5038d240b63ce64c10c05d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 2339", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -23006,20 +23447,18 @@ ] }, { - "index": 968, + "index": 983, "name": "Auctions_Cancel_auction", - "blob": "4802d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5038d2403d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -23027,39 +23466,35 @@ ] }, { - "index": 969, + "index": 984, "name": "Auctions_Cancel_auction", - "blob": "4802d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5030400d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.00123456789" + "0 | Auctions : Cancel auction" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 970, + "index": 985, "name": "Auctions_Cancel_auction", - "blob": "4802d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5030003d2029649d22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 0", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", diff --git a/tests/testcases_previous.json b/tests/testcases_previous.json index db784401..18bebc4c 100644 --- a/tests/testcases_previous.json +++ b/tests/testcases_previous.json @@ -2,39 +2,39 @@ { "index": 1, "name": "System_Fill_block", - "blob": "0000a27d7274d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000ce9a6af7d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", - "2 | Tip : KSM 0.000055555555" + "1 | Ratio : 415.0958798%" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", + "1 | Ratio : 415.0958798%", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 2, "name": "System_Fill_block", - "blob": "0000a27d7274d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000ce9a6af7d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", - "2 | Tip : KSM 0.000000000987" + "1 | Ratio : 415.0958798%", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", + "1 | Ratio : 415.0958798%", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -44,39 +44,37 @@ { "index": 3, "name": "System_Fill_block", - "blob": "0000a27d7274d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000ce9a6af7d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", - "2 | Tip : KSM 5.552342355555" + "1 | Ratio : 415.0958798%" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", + "1 | Ratio : 415.0958798%", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 4, "name": "System_Fill_block", - "blob": "0000a27d7274d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000eee4f71ad503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", - "2 | Tip : KSM 0.00123456789" + "1 | Ratio : 45.2453614%", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 195.3660322%", + "1 | Ratio : 45.2453614%", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -86,18 +84,18 @@ { "index": 5, "name": "System_Fill_block", - "blob": "0000e61bb5c8d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0000eee4f71ad503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Fill block", - "1 | Ratio : 336.7312358%", - "2 | Tip : KSM 0.00123456789" + "1 | Ratio : 45.2453614%", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | System : Fill block", - "1 | Ratio : 336.7312358%", + "1 | Ratio : 45.2453614%", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -107,24 +105,24 @@ { "index": 6, "name": "System_Remark", - "blob": "0001100d0c1323d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100c293435d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", - "2 | Tip : KSM 0.000000000987" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -134,24 +132,24 @@ { "index": 7, "name": "System_Remark", - "blob": "0001100d0c1323d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100c293435d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", - "2 | Tip : KSM 5.552342355555" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 13", - "1 | Remark [2/4] : 12", - "1 | Remark [3/4] : 19", - "1 | Remark [4/4] : 35", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -161,49 +159,51 @@ { "index": 8, "name": "System_Remark", - "blob": "000110200b200bd5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100c293435d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 9, "name": "System_Remark", - "blob": "000110200b200bd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100c293435d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11", - "2 | Tip : KSM 5.552342355555" + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 32", - "1 | Remark [2/4] : 11", - "1 | Remark [3/4] : 32", - "1 | Remark [4/4] : 11", + "1 | Remark [1/4] : 12", + "1 | Remark [2/4] : 41", + "1 | Remark [3/4] : 52", + "1 | Remark [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -213,14 +213,14 @@ { "index": 10, "name": "System_Remark", - "blob": "0001100d0c1323d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0001100d0c1323d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark", "1 | Remark [1/4] : 13", "1 | Remark [2/4] : 12", "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Remark", @@ -229,8 +229,8 @@ "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -240,14 +240,14 @@ { "index": 11, "name": "System_Set_heap_pages", - "blob": "00020000000000000000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00026bc4000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 0" + "1 | Pages : 50283" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 0", + "1 | Pages : 50283", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -259,18 +259,20 @@ { "index": 12, "name": "System_Set_heap_pages", - "blob": "00022309000000000000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00020000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 2339", - "2 | Tip : KSM 0.000000000987" + "1 | Pages : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 2339", + "1 | Pages : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -280,37 +282,39 @@ { "index": 13, "name": "System_Set_heap_pages", - "blob": "00026400000000000000d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00026bc4000000000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", - "1 | Pages : 100" + "1 | Pages : 50283", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 100", + "1 | Pages : 50283", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 14, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00026bc4000000000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", "1 | Pages : 50283", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Set heap pages", "1 | Pages : 50283", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -320,18 +324,20 @@ { "index": 15, "name": "System_Set_heap_pages", - "blob": "00026bc4000000000000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "00026bc4000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set heap pages", "1 | Pages : 50283", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Set heap pages", "1 | Pages : 50283", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -341,39 +347,15 @@ { "index": 16, "name": "System_Set_code", - "blob": "0003100c293435d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | System : Set code", - "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", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 17, - "name": "System_Set_code", - "blob": "0003100c293435d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100c293435d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", "1 | Code [1/4] : 12", "1 | Code [2/4] : 41", "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", - "2 | Tip : KSM 0.00123456789" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | System : Set code", @@ -382,8 +364,9 @@ "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -391,26 +374,26 @@ ] }, { - "index": 18, + "index": 17, "name": "System_Set_code", - "blob": "0003100c293435d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100e2a0c49d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", - "2 | Tip : KSM 5.552342355555" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -418,9 +401,9 @@ ] }, { - "index": 19, + "index": 18, "name": "System_Set_code", - "blob": "000310200b200bd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000310200b200bd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", "1 | Code [1/4] : 32", @@ -435,7 +418,7 @@ "1 | Code [3/4] : 32", "1 | Code [4/4] : 11", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -443,26 +426,51 @@ ] }, { - "index": 20, + "index": 19, "name": "System_Set_code", - "blob": "000310200b200bd5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0003100e2a0c49d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Tip : KSM 0.00123456789" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 20, + "name": "System_Set_code", + "blob": "0003100e2a0c49d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | System : Set code", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | System : Set code", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -472,14 +480,14 @@ { "index": 21, "name": "System_Set_code_without_checks", - "blob": "0004100c293435d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100c293435d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 0.000000000987" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Set code without checks", @@ -488,8 +496,8 @@ "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -499,23 +507,23 @@ { "index": 22, "name": "System_Set_code_without_checks", - "blob": "0004100d0c1323d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100e2a0c49d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Tip : KSM 5.552342355555" ], "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", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -526,80 +534,74 @@ { "index": 23, "name": "System_Set_code_without_checks", - "blob": "0004100c293435d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100d0c1323d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 5.552342355555" + "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] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 24, "name": "System_Set_code_without_checks", - "blob": "0004100c293435d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100d0c1323d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "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] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 25, "name": "System_Set_code_without_checks", - "blob": "0004100e2a0c49d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0004100d0c1323d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "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 : KSM 5.552342355555" + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", + "2 | Tip : KSM 0.000000000987" ], "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", + "1 | Code [1/4] : 13", + "1 | Code [2/4] : 12", + "1 | Code [3/4] : 19", + "1 | Code [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -609,32 +611,34 @@ { "index": 26, "name": "System_Remark_with_event", - "blob": "0008100e2a0c49d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "000810200b200bd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 14", - "1 | Remark [2/4] : 42", - "1 | Remark [3/4] : 12", - "1 | Remark [4/4] : 73" + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 14", - "1 | Remark [2/4] : 42", - "1 | Remark [3/4] : 12", - "1 | Remark [4/4] : 73", + "1 | Remark [1/4] : 32", + "1 | Remark [2/4] : 11", + "1 | Remark [3/4] : 32", + "1 | Remark [4/4] : 11", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 27, "name": "System_Remark_with_event", - "blob": "0008100d0c1323d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100d0c1323d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", "1 | Remark [1/4] : 13", @@ -650,7 +654,7 @@ "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -661,26 +665,24 @@ { "index": 28, "name": "System_Remark_with_event", - "blob": "0008100e2a0c49d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100d0c1323d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 14", - "1 | Remark [2/4] : 42", - "1 | Remark [3/4] : 12", - "1 | Remark [4/4] : 73", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Remark [1/4] : 13", + "1 | Remark [2/4] : 12", + "1 | Remark [3/4] : 19", + "1 | Remark [4/4] : 35", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 14", - "1 | Remark [2/4] : 42", - "1 | Remark [3/4] : 12", - "1 | Remark [4/4] : 73", + "1 | Remark [1/4] : 13", + "1 | Remark [2/4] : 12", + "1 | Remark [3/4] : 19", + "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -690,7 +692,7 @@ { "index": 29, "name": "System_Remark_with_event", - "blob": "0008100d0c1323d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100d0c1323d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", "1 | Remark [1/4] : 13", @@ -706,7 +708,7 @@ "1 | Remark [3/4] : 19", "1 | Remark [4/4] : 35", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -717,14 +719,13 @@ { "index": 30, "name": "System_Remark_with_event", - "blob": "0008100c293435d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0008100c293435d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | System : Remark with event", "1 | Remark [1/4] : 12", "1 | Remark [2/4] : 41", "1 | Remark [3/4] : 52", - "1 | Remark [4/4] : 53", - "2 | Tip : KSM 0.000055555555" + "1 | Remark [4/4] : 53" ], "output_expert": [ "0 | System : Remark with event", @@ -734,28 +735,27 @@ "1 | Remark [4/4] : 53", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 31, "name": "Timestamp_Set", - "blob": "0200ccd5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02000f19a63a17f1e1ced503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 51", - "2 | Tip : KSM 0.00123456789" + "1 | Now : 58232270795482649", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 51", + "1 | Now : 58232270795482649", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -765,18 +765,20 @@ { "index": 32, "name": "Timestamp_Set", - "blob": "02000f5a1f5c103ce169d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02009982d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 29802520643379034", - "2 | Tip : KSM 0.00123456789" + "1 | Now : 8358", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 29802520643379034", + "1 | Now : 8358", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -786,18 +788,20 @@ { "index": 33, "name": "Timestamp_Set", - "blob": "0200ccd5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0200a123d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 51", - "2 | Tip : KSM 0.00123456789" + "1 | Now : 2280", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 51", + "1 | Now : 2280", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -807,18 +811,20 @@ { "index": 34, "name": "Timestamp_Set", - "blob": "02000f5a1f5c103ce169d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02009982d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 29802520643379034", - "2 | Tip : KSM 0.00123456789" + "1 | Now : 8358", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 29802520643379034", + "1 | Now : 8358", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -828,41 +834,37 @@ { "index": 35, "name": "Timestamp_Set", - "blob": "0200ccd503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "02000f19a63a17f1e1ced5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Timestamp : Set", - "1 | Now : 51", - "2 | Tip : KSM 0.000055555555" + "1 | Now : 58232270795482649" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 51", + "1 | Now : 58232270795482649", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 36, "name": "Indices_Claim", - "blob": "0300203c4eebd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03008e8fe91ad503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 3947772960", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 451514254", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -872,60 +874,60 @@ { "index": 37, "name": "Indices_Claim", - "blob": "0300203c4eebd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03008e8fe91ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 3947772960", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 451514254" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 38, "name": "Indices_Claim", - "blob": "0300203c4eebd503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03008e8fe91ad503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 3947772960" + "1 | Index : 451514254", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 39, "name": "Indices_Claim", - "blob": "0300203c4eebd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03008e8fe91ad5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 3947772960", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 451514254", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -935,18 +937,18 @@ { "index": 40, "name": "Indices_Claim", - "blob": "0300203c4eebd503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03008e8fe91ad503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Claim", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 451514254", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -956,21 +958,21 @@ { "index": 41, "name": "Indices_Transfer", - "blob": "0301c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43203c4eebd503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | New [2/2] : nEdzjPoWQ", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | New [2/2] : nEdzjPoWQ", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -981,72 +983,70 @@ { "index": 42, "name": "Indices_Transfer", - "blob": "03012c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054203c4eebd5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | New [2/2] : 2GoCpzMtB", - "2 | Index : 3947772960", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | New [2/2] : 2GoCpzMtB", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 43, "name": "Indices_Transfer", - "blob": "030174dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f203c4eebd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 44, "name": "Indices_Transfer", - "blob": "0301c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43203c4eebd5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | New [2/2] : nEdzjPoWQ", - "2 | Index : 3947772960", - "3 | Tip : KSM 0.000055555555" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | New [2/2] : nEdzjPoWQ", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1056,22 +1056,22 @@ { "index": 45, "name": "Indices_Transfer", - "blob": "030174dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f203c4eebd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91ad5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960", - "3 | Tip : KSM 0.000055555555" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1081,39 +1081,37 @@ { "index": 46, "name": "Indices_Free", - "blob": "0302203c4eebd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03028e8fe91ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 451514254" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 47, "name": "Indices_Free", - "blob": "0302203c4eebd503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03028e8fe91ad5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 3947772960", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 451514254", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1123,18 +1121,20 @@ { "index": 48, "name": "Indices_Free", - "blob": "0302203c4eebd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03028e8fe91ad503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000055555555" + "1 | Index : 451514254", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1144,18 +1144,20 @@ { "index": 49, "name": "Indices_Free", - "blob": "0302203c4eebd503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03028e8fe91ad5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000055555555" + "1 | Index : 451514254", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1165,43 +1167,47 @@ { "index": 50, "name": "Indices_Free", - "blob": "0302203c4eebd503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03028e8fe91ad503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Free", - "1 | Index : 3947772960" + "1 | Index : 451514254", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 51, "name": "Indices_Force_transfer", - "blob": "030374dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f203c4eeb01d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Freeze : True", - "4 | Tip : KSM 0.000055555555" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Freeze : True", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1211,24 +1217,24 @@ { "index": 52, "name": "Indices_Force_transfer", - "blob": "0303e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840203c4eeb01d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | New [2/2] : zBUmsjRJA", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Freeze : True", - "4 | Tip : KSM 0.00123456789" + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | New [2/2] : zBUmsjRJA", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Freeze : True", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1238,95 +1244,97 @@ { "index": 53, "name": "Indices_Force_transfer", - "blob": "03035670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f203c4eeb01d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a00d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | New [2/2] : G2gesBwNB", - "2 | Index : 3947772960", - "3 | Freeze : True", - "4 | Tip : KSM 0.000055555555" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Freeze : False" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | New [2/2] : G2gesBwNB", - "2 | Index : 3947772960", - "3 | Freeze : True", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Freeze : False", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000055555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 54, "name": "Indices_Force_transfer", - "blob": "0303c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b203c4eeb00d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a01d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | New [2/2] : Wk42jTTrE", - "2 | Index : 3947772960", - "3 | Freeze : False" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Freeze : True", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | New [2/2] : Wk42jTTrE", - "2 | Index : 3947772960", - "3 | Freeze : False", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Freeze : True", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 55, "name": "Indices_Force_transfer", - "blob": "03036257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166203c4eeb00d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8e8fe91a00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC", - "2 | Index : 3947772960", - "3 | Freeze : False" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", + "3 | Freeze : False", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC", - "2 | Index : 3947772960", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Index : 451514254", "3 | Freeze : False", "4 | Chain : Kusama", "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 56, "name": "Indices_Freeze", - "blob": "0304203c4eebd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03048e8fe91ad5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000000000987" + "1 | Index : 451514254", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1336,37 +1344,39 @@ { "index": 57, "name": "Indices_Freeze", - "blob": "0304203c4eebd503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03048e8fe91ad5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 3947772960" + "1 | Index : 451514254", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 58, "name": "Indices_Freeze", - "blob": "0304203c4eebd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03048e8fe91ad503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", - "2 | Tip : KSM 0.000055555555" + "1 | Index : 451514254", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1376,18 +1386,18 @@ { "index": 59, "name": "Indices_Freeze", - "blob": "0304203c4eebd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03048e8fe91ad503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 451514254", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1397,42 +1407,42 @@ { "index": 60, "name": "Indices_Freeze", - "blob": "0304203c4eebd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "03048e8fe91ad503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 451514254" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 3947772960", + "1 | Index : 451514254", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 61, "name": "Balances_Transfer", - "blob": "0400008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -1443,21 +1453,21 @@ { "index": 62, "name": "Balances_Transfer", - "blob": "0400008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0fd503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.0", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.0", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -1468,22 +1478,22 @@ { "index": 63, "name": "Balances_Transfer", - "blob": "0400008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00b63ce64c10c05d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", "2 | Amount : KSM 5.552342355555", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", "2 | Amount : KSM 5.552342355555", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -1495,20 +1505,20 @@ { "index": 64, "name": "Balances_Transfer", - "blob": "0400008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1518,55 +1528,47 @@ { "index": 65, "name": "Balances_Transfer", - "blob": "0400008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0400006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 5.552342355555", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 66, "name": "Balances_Set_balance", - "blob": "0401008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00b63ce64c10c0533158139ae28a3dfaac5fe1560a5e9e05cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d20296498ed73e0dd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 5.552342355555", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.00123456789", + "3 | New reserved : KSM 0.000055555555", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 5.552342355555", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.00123456789", + "3 | New reserved : KSM 0.000055555555", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1576,52 +1578,52 @@ { "index": 67, "name": "Balances_Set_balance", - "blob": "0401008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0f00d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964933158139ae28a3dfaac5fe1560a5e9e05cd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.000000000987", - "3 | New reserved : KSM 0.0", - "4 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.00123456789", + "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", + "3 | New reserved [2/2] : 456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.000000000987", - "3 | New reserved : KSM 0.0", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.00123456789", + "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", + "3 | New reserved [2/2] : 456789", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.000055555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 68, "name": "Balances_Set_balance", - "blob": "0401008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00b63ce64c10c0533158139ae28a3dfaac5fe1560a5e9e05cd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05c0b63ce64c10c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 5.552342355555", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 5.552342355555", "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 5.552342355555", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 5.552342355555", "4 | Chain : Kusama", - "5 | Nonce : 0", + "5 | Nonce : 100", "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -1632,26 +1634,24 @@ { "index": 69, "name": "Balances_Set_balance", - "blob": "0401008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00033158139ae28a3dfaac5fe1560a5e9e05cd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0f6d0fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.0", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", - "4 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.000000000987", + "3 | New reserved : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.0", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free : KSM 0.000000000987", + "3 | New reserved : KSM 0.000000000987", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1661,26 +1661,26 @@ { "index": 70, "name": "Balances_Set_balance", - "blob": "0401008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0f33158139ae28a3dfaac5fe1560a5e9e05cd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0401006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05c03d2029649d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.000000000987", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", - "4 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 0.00123456789", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | New free : KSM 0.000000000987", - "3 | New reserved [1/2] : KSM 123456789012345678901234567.890123", - "3 | New reserved [2/2] : 456789", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | New free [1/2] : KSM 123456789012345678901234567.890123", + "2 | New free [2/2] : 456789", + "3 | New reserved : KSM 0.00123456789", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1690,26 +1690,26 @@ { "index": 71, "name": "Balances_Force_transfer", - "blob": "0402008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000055555555", - "4 | Tip : KSM 5.552342355555" + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000055555555", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.000000000987", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 100", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1719,26 +1719,28 @@ { "index": 72, "name": "Balances_Force_transfer", - "blob": "0402008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0fd50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000000000987", - "4 | Tip : KSM 5.552342355555" + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000000000987", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.000055555555", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 2339", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1748,26 +1750,26 @@ { "index": 73, "name": "Balances_Force_transfer", - "blob": "0402008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 5.552342355555", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.00123456789", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 5.552342355555", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.00123456789", "4 | Chain : Kusama", - "5 | Nonce : 0", + "5 | Nonce : 50283", "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", @@ -1779,54 +1781,54 @@ { "index": 74, "name": "Balances_Force_transfer", - "blob": "0402008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0fd503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000000000987", - "4 | Tip : KSM 0.00123456789" + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", "3 | Amount : KSM 0.000000000987", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 75, "name": "Balances_Force_transfer", - "blob": "0402008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0402006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000055555555", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "3 | Amount [2/2] : 456789", "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Source [2/2] : 1Z3SQRDB6", - "2 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Dest [2/2] : 1Z3SQRDB6", - "3 | Amount : KSM 0.000055555555", + "1 | Source [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Source [2/2] : G1ft7ngXT", + "2 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Dest [2/2] : G1ft7ngXT", + "3 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "3 | Amount [2/2] : 456789", "4 | Chain : Kusama", - "5 | Nonce : 2339", + "5 | Nonce : 0", "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -1837,22 +1839,24 @@ { "index": 76, "name": "Balances_Transfer_keep_alive", - "blob": "0403008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b33158139ae28a3dfaac5fe1560a5e9e05cd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", - "3 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "2 | Amount [2/2] : 456789", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1862,22 +1866,24 @@ { "index": 77, "name": "Balances_Transfer_keep_alive", - "blob": "0403008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0fd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987", - "3 | Tip : KSM 5.552342355555" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1887,72 +1893,70 @@ { "index": 78, "name": "Balances_Transfer_keep_alive", - "blob": "0403008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b06d0fd503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.0", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000000000987", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.0", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 79, "name": "Balances_Transfer_keep_alive", - "blob": "0403008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b003d2029649d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.00123456789", - "3 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.00123456789", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 5.552342355555", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 80, "name": "Balances_Transfer_keep_alive", - "blob": "0403008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b033158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0403006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.000000000987", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Balances : Transfer keep alive", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.000000000987", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -1964,24 +1968,22 @@ { "index": 81, "name": "Balances_Transfer_all", - "blob": "0404008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : True", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : False", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : True", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : False", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -1991,99 +1993,91 @@ { "index": 82, "name": "Balances_Transfer_all", - "blob": "0404008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", - "3 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 83, "name": "Balances_Transfer_all", - "blob": "0404008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 84, "name": "Balances_Transfer_all", - "blob": "0404008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : True", - "3 | Tip : KSM 5.552342355555" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : False" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : True", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 85, "name": "Balances_Transfer_all", - "blob": "0404008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0404006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", - "3 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Transfer all", - "1 | Dest [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Dest [2/2] : 1Z3SQRDB6", - "2 | Keep alive : False", + "1 | Dest [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Dest [2/2] : G1ft7ngXT", + "2 | Keep alive : True", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2093,26 +2087,24 @@ { "index": 86, "name": "Balances_Force_unreserve", - "blob": "0405008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b007dd637c4bed333e4eafa309801d9ce0d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2122,23 +2114,23 @@ { "index": 87, "name": "Balances_Force_unreserve", - "blob": "0405008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b007dd637c4bed333e4eafa309801d9ce0d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -2149,24 +2141,24 @@ { "index": 88, "name": "Balances_Force_unreserve", - "blob": "0405008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b007dd637c4bed333e4eafa309801d9ce0d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2176,26 +2168,24 @@ { "index": 89, "name": "Balances_Force_unreserve", - "blob": "0405008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b007dd637c4bed333e4eafa309801d9ce0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 0", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2205,51 +2195,51 @@ { "index": 90, "name": "Balances_Force_unreserve", - "blob": "0405008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b007dd637c4bed333e4eafa309801d9ce0d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0405006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676" ], "output_expert": [ "0 | Balances : Force unreserve", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 91, "name": "Staking_Bond", - "blob": "0600008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0f02d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", - "3 | Payee : Staked", - "4 | Tip : KSM 5.552342355555" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.000000000987", + "3 | Payee : Controller", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", - "3 | Payee : Staked", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.000000000987", + "3 | Payee : Controller", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2259,28 +2249,24 @@ { "index": 92, "name": "Staking_Bond", - "blob": "0600008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b033158139ae28a3dfaac5fe1560a5e9e05c01d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964900d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", - "3 | Payee : Stash", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Staked", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "2 | Amount [2/2] : 456789", - "3 | Payee : Stash", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Staked", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 1", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2290,24 +2276,24 @@ { "index": 93, "name": "Staking_Bond", - "blob": "0600008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0d02d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964901d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", - "3 | Payee : Controller", - "4 | Tip : KSM 0.00123456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Stash", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.000055555555", - "3 | Payee : Controller", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Stash", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 2339", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2317,24 +2303,26 @@ { "index": 94, "name": "Staking_Bond", - "blob": "0600008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00001d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964901d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", "3 | Payee : Stash", - "4 | Tip : KSM 0.000000000987" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", "3 | Payee : Stash", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2344,26 +2332,24 @@ { "index": 95, "name": "Staking_Bond", - "blob": "0600008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b00002d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0600006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d202964900d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", - "3 | Payee : Controller", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Staked", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Amount : KSM 0.0", - "3 | Payee : Controller", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Amount : KSM 0.00123456789", + "3 | Payee : Staked", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2373,18 +2359,18 @@ { "index": 96, "name": "Staking_Bond_extra", - "blob": "060103d2029649d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06010b63ce64c10c05d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.00123456789", - "2 | Tip : KSM 0.00123456789" + "1 | Amount : KSM 5.552342355555", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.00123456789", + "1 | Amount : KSM 5.552342355555", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2394,20 +2380,20 @@ { "index": 97, "name": "Staking_Bond_extra", - "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 0.000000000987" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond extra", "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2417,19 +2403,17 @@ { "index": 98, "name": "Staking_Bond_extra", - "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060100d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.0", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -2440,39 +2424,41 @@ { "index": 99, "name": "Staking_Bond_extra", - "blob": "060100d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06010b63ce64c10c05d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.0" + "1 | Amount : KSM 5.552342355555", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.0", + "1 | Amount : KSM 5.552342355555", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 100, "name": "Staking_Bond_extra", - "blob": "06018ed73e0dd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060133158139ae28a3dfaac5fe1560a5e9e05cd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.000055555555", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : KSM 0.000055555555", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2482,20 +2468,18 @@ { "index": 101, "name": "Staking_Unbond", - "blob": "06026d0fd5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06020b63ce64c10c05d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000000000987", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Amount : KSM 5.552342355555", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000000000987", + "1 | Amount : KSM 5.552342355555", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2505,43 +2489,37 @@ { "index": 102, "name": "Staking_Unbond", - "blob": "060233158139ae28a3dfaac5fe1560a5e9e05cd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06028ed73e0dd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 103, "name": "Staking_Unbond", - "blob": "060203d2029649d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060203d2029649d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", "1 | Amount : KSM 0.00123456789", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Unbond", "1 | Amount : KSM 0.00123456789", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2551,39 +2529,37 @@ { "index": 104, "name": "Staking_Unbond", - "blob": "060200d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06020b63ce64c10c05d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.0", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.0", + "1 | Amount : KSM 5.552342355555", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 105, "name": "Staking_Unbond", - "blob": "06026d0fd5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060203d2029649d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000000000987", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 0.00123456789", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : KSM 0.000000000987", + "1 | Amount : KSM 0.00123456789", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2593,35 +2569,39 @@ { "index": 106, "name": "Staking_Withdraw_Unbonded", - "blob": "0603f7010000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060334300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Withdraw Unbonded" + "0 | Staking : Withdraw Unbonded", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 503", + "1 | Num slashing spans : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 107, "name": "Staking_Withdraw_Unbonded", - "blob": "0603d3040000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0603d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", "1 | Num slashing spans : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2631,37 +2611,35 @@ { "index": 108, "name": "Staking_Withdraw_Unbonded", - "blob": "060334300000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0603f7010000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.000055555555" + "0 | Staking : Withdraw Unbonded" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 12340", + "1 | Num slashing spans : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 109, "name": "Staking_Withdraw_Unbonded", - "blob": "0603f7010000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060300000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 503", + "1 | Num slashing spans : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2671,17 +2649,17 @@ { "index": 110, "name": "Staking_Withdraw_Unbonded", - "blob": "0603f7010000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06039d1c0000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 503", + "1 | Num slashing spans : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2691,19 +2669,19 @@ { "index": 111, "name": "Staking_Validate", - "blob": "060426e8c90200d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06049d9c00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 1.1696649%", + "1 | Prefs [1/2] : 0.0010023%", "1 | Prefs [2/2] : False", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 1.1696649%", + "1 | Prefs [1/2] : 0.0010023%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -2714,22 +2692,20 @@ { "index": 112, "name": "Staking_Validate", - "blob": "060459d200d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06044000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", + "1 | Prefs [1/2] : 0.0000016%", "1 | Prefs [2/2] : False", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", + "1 | Prefs [1/2] : 0.0000016%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2739,86 +2715,92 @@ { "index": 113, "name": "Staking_Validate", - "blob": "060459d200d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060442ebee0100d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", - "1 | Prefs [2/2] : False", - "2 | Tip : KSM 0.00123456789" + "1 | Prefs [1/2] : 0.8108752%", + "1 | Prefs [2/2] : False" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", + "1 | Prefs [1/2] : 0.8108752%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 114, "name": "Staking_Validate", - "blob": "060459d200d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06049d9c00d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", - "1 | Prefs [2/2] : False" + "1 | Prefs [1/2] : 0.0010023%", + "1 | Prefs [2/2] : False", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", + "1 | Prefs [1/2] : 0.0010023%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 115, "name": "Staking_Validate", - "blob": "060459d200d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060442ebee0100d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", - "1 | Prefs [2/2] : False", - "2 | Tip : KSM 0.00123456789" + "1 | Prefs [1/2] : 0.8108752%", + "1 | Prefs [2/2] : False" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs [1/2] : 0.0013462%", + "1 | Prefs [1/2] : 0.8108752%", "1 | Prefs [2/2] : False", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 116, "name": "Staking_Nominate", - "blob": "06050400441f54c06a14a369cfd81cf4c2de8d8e28e0b872587e55f37bd3ba6d5dde632fd503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06050c00c61f41e1713c79e89139c4bcc3035a4c79611cbbabbd8bd23547692814715ec2004dd187a58b0c69aa56d2231b8535f2998b7dc069b84d7a472766564d478bfb0e0099679f0c225e51d0c3ecac7bed2539c5a15beb43567ceee89778adaa70ef39d4d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Targets [2/2] : pMgixNqo1", + "1 | Targets [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", + "1 | Targets [2/6] : 7kk8pSmAN", + "1 | Targets [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", + "1 | Targets [4/6] : TJhuRybMW", + "1 | Targets [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", + "1 | Targets [6/6] : arh5Wyxtp", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Targets [2/2] : pMgixNqo1", + "1 | Targets [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", + "1 | Targets [2/6] : 7kk8pSmAN", + "1 | Targets [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", + "1 | Targets [4/6] : TJhuRybMW", + "1 | Targets [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", + "1 | Targets [6/6] : arh5Wyxtp", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -2829,78 +2811,70 @@ { "index": 117, "name": "Staking_Nominate", - "blob": "060508002c1201029fc8fbeadbfa14fdcf0c664ffd0de77fa8a5a2dfa6ce324bce21db2d00025c7dd940e21d11b342111697dd9f6af5f07d021937b5ba565769ad42072b89d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Targets [2/4] : tBM8tXFuN", - "1 | Targets [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Targets [4/4] : EDnTdoLpf", - "2 | Tip : KSM 5.552342355555" + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Targets [2/4] : tBM8tXFuN", - "1 | Targets [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Targets [4/4] : EDnTdoLpf", + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 118, "name": "Staking_Nominate", - "blob": "06050c00b1c28242ce1ef5b41dbfce8325dda37a990abd4b663c0fac39fdeef2b86a9664002397c7d693adb69470b53c19ff1e63ba562f19e8430a6f2edbc58fdd9b9608d900f644948fa877bca7cd8578a549d834a512e6061bd2715aa53fa06dd5cc14197ad5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Targets [2/6] : R4SxgUF5t", - "1 | Targets [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Targets [4/6] : ukgs1gweK", - "1 | Targets [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Targets [6/6] : RLwuV5kMP" + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Targets [2/6] : R4SxgUF5t", - "1 | Targets [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Targets [4/6] : ukgs1gweK", - "1 | Targets [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Targets [6/6] : RLwuV5kMP", + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 119, "name": "Staking_Nominate", - "blob": "06050400441f54c06a14a369cfd81cf4c2de8d8e28e0b872587e55f37bd3ba6d5dde632fd503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06050800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Targets [2/2] : pMgixNqo1", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Targets [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Targets [2/4] : PTbf4TXPP", + "1 | Targets [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Targets [4/4] : x82HTQYhP", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Targets [2/2] : pMgixNqo1", + "1 | Targets [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Targets [2/4] : PTbf4TXPP", + "1 | Targets [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Targets [4/4] : x82HTQYhP", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -2910,96 +2884,96 @@ { "index": 120, "name": "Staking_Nominate", - "blob": "060508002c1201029fc8fbeadbfa14fdcf0c664ffd0de77fa8a5a2dfa6ce324bce21db2d00025c7dd940e21d11b342111697dd9f6af5f07d021937b5ba565769ad42072b89d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060504009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Targets [2/4] : tBM8tXFuN", - "1 | Targets [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Targets [4/4] : EDnTdoLpf" + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Targets [2/4] : tBM8tXFuN", - "1 | Targets [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Targets [4/4] : EDnTdoLpf", + "1 | Targets [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Targets [2/2] : GZhe6LBoT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 121, "name": "Staking_Chill", - "blob": "0606d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill" + "0 | Staking : Chill", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 122, "name": "Staking_Chill", - "blob": "0606d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill", - "1 | Tip : KSM 0.00123456789" + "0 | Staking : Chill" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", "2 | Nonce : 100", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 123, "name": "Staking_Chill", - "blob": "0606d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill" + "0 | Staking : Chill", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 124, "name": "Staking_Chill", - "blob": "0606d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3009,34 +2983,36 @@ { "index": 125, "name": "Staking_Chill", - "blob": "0606d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0606d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Chill" + "0 | Staking : Chill", + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 5.552342355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 126, "name": "Staking_Set_payee", - "blob": "060700d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Staked", + "1 | Payee : Controller", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Staked", + "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -3047,41 +3023,37 @@ { "index": 127, "name": "Staking_Set_payee", - "blob": "060701d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Payee : Controller" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Stash", + "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 128, "name": "Staking_Set_payee", - "blob": "060701d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060700d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Tip : KSM 5.552342355555" + "1 | Payee : Staked", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Stash", + "1 | Payee : Staked", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3091,87 +3063,79 @@ { "index": 129, "name": "Staking_Set_payee", - "blob": "060701d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Tip : KSM 0.000000000987" + "1 | Payee : Controller" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Stash", + "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 130, "name": "Staking_Set_payee", - "blob": "060702d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060702d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set payee", - "1 | Payee : Controller", - "2 | Tip : KSM 0.000055555555" + "1 | Payee : Controller" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Controller", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 131, "name": "Staking_Set_controller", - "blob": "0608008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.00123456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 132, "name": "Staking_Set_controller", - "blob": "0608008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3181,19 +3145,19 @@ { "index": 133, "name": "Staking_Set_controller", - "blob": "0608008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -3204,20 +3168,20 @@ { "index": 134, "name": "Staking_Set_controller", - "blob": "0608008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.00123456789" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3227,20 +3191,22 @@ { "index": 135, "name": "Staking_Set_controller", - "blob": "0608008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0608006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000055555555" + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Controller [2/2] : 1Z3SQRDB6", + "1 | Controller [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Controller [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3250,37 +3216,39 @@ { "index": 136, "name": "Staking_Set_validator_count", - "blob": "060930d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0609f199d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 12" + "1 | New : 9852", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 12", + "1 | New : 9852", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 137, "name": "Staking_Set_validator_count", - "blob": "060988d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06090916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 34", - "2 | Tip : KSM 5.552342355555" + "1 | New : 1410", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 34", + "1 | New : 1410", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3290,18 +3258,20 @@ { "index": 138, "name": "Staking_Set_validator_count", - "blob": "060932bcf235d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060996fb6477d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 226275084", - "2 | Tip : KSM 0.00123456789" + "1 | New : 500776677", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 226275084", + "1 | New : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3311,18 +3281,20 @@ { "index": 139, "name": "Staking_Set_validator_count", - "blob": "060930d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0609f199d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 12", - "2 | Tip : KSM 0.000055555555" + "1 | New : 9852", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 12", + "1 | New : 9852", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3332,18 +3304,20 @@ { "index": 140, "name": "Staking_Set_validator_count", - "blob": "06095a83100fd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06090916d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set validator count", - "1 | New : 63185110", - "2 | Tip : KSM 0.000000000987" + "1 | New : 1410", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 63185110", + "1 | New : 1410", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3353,18 +3327,18 @@ { "index": 141, "name": "Staking_Increase_validator_count", - "blob": "060a30d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060af199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 12", - "2 | Tip : KSM 0.00123456789" + "1 | Additional : 9852", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 12", + "1 | Additional : 9852", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3374,34 +3348,36 @@ { "index": 142, "name": "Staking_Increase_validator_count", - "blob": "060a30d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060a96fb6477d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 12" + "1 | Additional : 500776677", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 12", + "1 | Additional : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 143, - "name": "Staking_Increase_validator_count", - "blob": "060a32bcf235d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 143, + "name": "Staking_Increase_validator_count", + "blob": "060a0916d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 226275084", + "1 | Additional : 1410", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 226275084", + "1 | Additional : 1410", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", @@ -3414,39 +3390,37 @@ { "index": 144, "name": "Staking_Increase_validator_count", - "blob": "060a32bcf235d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060adcd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 226275084", - "2 | Tip : KSM 0.000000000987" + "1 | Additional : 55" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 226275084", + "1 | Additional : 55", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 145, "name": "Staking_Increase_validator_count", - "blob": "060a5a83100fd503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060a96fb6477d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 63185110", - "2 | Tip : KSM 0.000055555555" + "1 | Additional : 500776677", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 63185110", + "1 | Additional : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3456,16 +3430,18 @@ { "index": 146, "name": "Staking_Force_no_eras", - "blob": "060cd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", "2 | Nonce : 100", - "3 | Tip : KSM 0.000055555555", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3475,52 +3451,54 @@ { "index": 147, "name": "Staking_Force_no_eras", - "blob": "060cd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force no eras" + "0 | Staking : Force no eras", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 148, "name": "Staking_Force_no_eras", - "blob": "060cd503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force no eras" + "0 | Staking : Force no eras", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 149, "name": "Staking_Force_no_eras", - "blob": "060cd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 50283", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3530,18 +3508,16 @@ { "index": 150, "name": "Staking_Force_no_eras", - "blob": "060cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060cd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force no eras", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3551,35 +3527,35 @@ { "index": 151, "name": "Staking_Force_new_era", - "blob": "060dd5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era", - "1 | Tip : KSM 0.00123456789" + "0 | Staking : Force new era" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 152, "name": "Staking_Force_new_era", - "blob": "060dd5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3589,37 +3565,33 @@ { "index": 153, "name": "Staking_Force_new_era", - "blob": "060dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Staking : Force new era" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 154, "name": "Staking_Force_new_era", - "blob": "060dd5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3629,14 +3601,14 @@ { "index": 155, "name": "Staking_Force_new_era", - "blob": "060dd5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060dd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Kusama", - "2 | Nonce : 0", + "2 | Nonce : 2339", "3 | Era Phase : 61", "4 | Era Period : 64", "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3646,21 +3618,21 @@ { "index": 156, "name": "Staking_Force_unstake", - "blob": "060f421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", - "2 | Num slashing spans : 7325", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 12340", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 0", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -3672,21 +3644,21 @@ { "index": 157, "name": "Staking_Force_unstake", - "blob": "060f421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d00000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", - "2 | Tip : KSM 0.000000000987" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 503", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3696,21 +3668,21 @@ { "index": 158, "name": "Staking_Force_unstake", - "blob": "060fc81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a4334300000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Stash [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 5.552342355555" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Stash [2/2] : nEdzjPoWQ", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 7325", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3720,41 +3692,39 @@ { "index": 159, "name": "Staking_Force_unstake", - "blob": "060f066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715f7010000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW", - "2 | Tip : KSM 0.00123456789" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW", - "2 | Num slashing spans : 503", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 7325", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 160, "name": "Staking_Force_unstake", - "blob": "060fc687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b34300000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "060f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Stash [2/2] : Wk42jTTrE", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Stash [2/2] : Wk42jTTrE", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", "2 | Num slashing spans : 12340", "3 | Chain : Kusama", "4 | Nonce : 2339", @@ -3768,33 +3738,14 @@ { "index": 161, "name": "Staking_Force_new_era_always", - "blob": "0610d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip : KSM 0.000000000987" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 162, - "name": "Staking_Force_new_era_always", - "blob": "0610d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era always" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 0", "3 | Era Phase : 61", "4 | Era Period : 64", "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3802,20 +3753,18 @@ ] }, { - "index": 163, + "index": 162, "name": "Staking_Force_new_era_always", - "blob": "0610d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era always", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 2339", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3823,28 +3772,26 @@ ] }, { - "index": 164, + "index": 163, "name": "Staking_Force_new_era_always", - "blob": "0610d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : KSM 0.000000000987" + "0 | Staking : Force new era always" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 165, + "index": 164, "name": "Staking_Force_new_era_always", - "blob": "0610d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0610d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Force new era always", "1 | Tip : KSM 5.552342355555" @@ -3852,7 +3799,7 @@ "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 1", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -3860,119 +3807,140 @@ "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, + { + "index": 165, + "name": "Staking_Force_new_era_always", + "blob": "0610d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Staking : Force new era always" + ], + "output_expert": [ + "0 | Staking : Force new era always", + "1 | Chain : Kusama", + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, { "index": 166, "name": "Staking_Payout_stakers", - "blob": "061274dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f00000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Validator stash [2/2] : 3mpD1YowH", - "2 | Era : 0", - "3 | Tip : KSM 0.000055555555" + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 1235" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Validator stash [2/2] : 3mpD1YowH", - "2 | Era : 0", + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 1235", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 167, "name": "Staking_Payout_stakers", - "blob": "06125670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4ff7010000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Validator stash [2/2] : G2gesBwNB", - "2 | Era : 503" + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 503", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Validator stash [2/2] : G2gesBwNB", + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", "2 | Era : 503", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 168, "name": "Staking_Payout_stakers", - "blob": "0612c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43f7010000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Validator stash [2/2] : nEdzjPoWQ", - "2 | Era : 503" + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 0", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Validator stash [2/2] : nEdzjPoWQ", - "2 | Era : 503", + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 0", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 169, "name": "Staking_Payout_stakers", - "blob": "0612421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d34300000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Validator stash [2/2] : 1me9MXvVn", - "2 | Era : 12340" + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 7325", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Validator stash [2/2] : 1me9MXvVn", - "2 | Era : 12340", + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 7325", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 170, "name": "Staking_Payout_stakers", - "blob": "0612421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d00000000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06126a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Validator stash [2/2] : 1me9MXvVn", - "2 | Era : 0", - "3 | Tip : KSM 0.00123456789" + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 12340", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Validator stash [2/2] : 1me9MXvVn", - "2 | Era : 0", + "1 | Validator stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Validator stash [2/2] : DyGtAWNbn", + "2 | Era : 12340", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -3982,18 +3950,20 @@ { "index": 171, "name": "Staking_Rebond", - "blob": "06136d0fd50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061333158139ae28a3dfaac5fe1560a5e9e05cd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", - "2 | Tip : KSM 0.000000000987" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4003,18 +3973,20 @@ { "index": 172, "name": "Staking_Rebond", - "blob": "06130b63ce64c10c05d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06138ed73e0dd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 5.552342355555", - "2 | Tip : KSM 0.000000000987" + "1 | Amount : KSM 0.000055555555", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 5.552342355555", + "1 | Amount : KSM 0.000055555555", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4024,18 +3996,18 @@ { "index": 173, "name": "Staking_Rebond", - "blob": "061303d2029649d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061303d2029649d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", "1 | Amount : KSM 0.00123456789", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Rebond", "1 | Amount : KSM 0.00123456789", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4045,18 +4017,20 @@ { "index": 174, "name": "Staking_Rebond", - "blob": "06136d0fd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06130b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 5.552342355555", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : KSM 0.000000000987", + "1 | Amount : KSM 5.552342355555", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4066,20 +4040,18 @@ { "index": 175, "name": "Staking_Rebond", - "blob": "061333158139ae28a3dfaac5fe1560a5e9e05cd503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06136d0fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Rebond", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Tip : KSM 0.000055555555" + "1 | Amount : KSM 0.000000000987", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", + "1 | Amount : KSM 0.000000000987", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4089,41 +4061,43 @@ { "index": 176, "name": "Staking_Set_history_depth", - "blob": "06143030d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061409160916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 12", - "2 | Era items deleted : 12" + "1 | New history depth : 1410", + "2 | Era items deleted : 1410", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 12", - "2 | Era items deleted : 12", + "1 | New history depth : 1410", + "2 | Era items deleted : 1410", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 177, "name": "Staking_Set_history_depth", - "blob": "06145a83100f32bcf235d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0614dcf199d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 63185110", - "2 | Era items deleted : 226275084", - "3 | Tip : KSM 0.00123456789" + "1 | New history depth : 55", + "2 | Era items deleted : 9852", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 63185110", - "2 | Era items deleted : 226275084", + "1 | New history depth : 55", + "2 | Era items deleted : 9852", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4133,20 +4107,20 @@ { "index": 178, "name": "Staking_Set_history_depth", - "blob": "0614885a83100fd5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061496fb6477dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 34", - "2 | Era items deleted : 63185110", - "3 | Tip : KSM 0.00123456789" + "1 | New history depth : 500776677", + "2 | Era items deleted : 55", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 34", - "2 | Era items deleted : 63185110", + "1 | New history depth : 500776677", + "2 | Era items deleted : 55", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4156,19 +4130,19 @@ { "index": 179, "name": "Staking_Set_history_depth", - "blob": "061432bcf23588d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06140916dcd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 226275084", - "2 | Era items deleted : 34", + "1 | New history depth : 1410", + "2 | Era items deleted : 55", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 226275084", - "2 | Era items deleted : 34", + "1 | New history depth : 1410", + "2 | Era items deleted : 55", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -4179,22 +4153,20 @@ { "index": 180, "name": "Staking_Set_history_depth", - "blob": "061432bcf2355a83100fd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0614dcdcd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Set history depth", - "1 | New history depth : 226275084", - "2 | Era items deleted : 63185110", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | New history depth : 55", + "2 | Era items deleted : 55", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Set history depth", - "1 | New history depth : 226275084", - "2 | Era items deleted : 63185110", + "1 | New history depth : 55", + "2 | Era items deleted : 55", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4204,21 +4176,21 @@ { "index": 181, "name": "Staking_Reap_stash", - "blob": "0615066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d3040000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW", - "2 | Tip : KSM 0.000055555555" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW", - "2 | Num slashing spans : 1235", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 12340", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4228,45 +4200,45 @@ { "index": 182, "name": "Staking_Reap_stash", - "blob": "0615066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d171534300000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Stash [2/2] : ZN2wsYzvW", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", "2 | Num slashing spans : 12340", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 183, "name": "Staking_Reap_stash", - "blob": "06155670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f34300000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff7010000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Stash [2/2] : G2gesBwNB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Stash [2/2] : G2gesBwNB", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 503", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4276,23 +4248,21 @@ { "index": 184, "name": "Staking_Reap_stash", - "blob": "0615421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02df7010000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Stash [2/2] : 1me9MXvVn", - "2 | Num slashing spans : 503", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 0", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4302,21 +4272,21 @@ { "index": 185, "name": "Staking_Reap_stash", - "blob": "06156257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add20831846816634300000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06156a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd3040000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Stash [2/2] : 2uX6ovmqC", - "2 | Tip : KSM 0.00123456789" + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Stash [2/2] : 2uX6ovmqC", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Stash [2/2] : DyGtAWNbn", + "2 | Num slashing spans : 1235", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4326,28 +4296,28 @@ { "index": 186, "name": "Staking_Kick", - "blob": "06160c00b1c28242ce1ef5b41dbfce8325dda37a990abd4b663c0fac39fdeef2b86a9664002397c7d693adb69470b53c19ff1e63ba562f19e8430a6f2edbc58fdd9b9608d900f644948fa877bca7cd8578a549d834a512e6061bd2715aa53fa06dd5cc14197ad5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06160c00c61f41e1713c79e89139c4bcc3035a4c79611cbbabbd8bd23547692814715ec2004dd187a58b0c69aa56d2231b8535f2998b7dc069b84d7a472766564d478bfb0e0099679f0c225e51d0c3ecac7bed2539c5a15beb43567ceee89778adaa70ef39d4d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Who [2/6] : R4SxgUF5t", - "1 | Who [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Who [4/6] : ukgs1gweK", - "1 | Who [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Who [6/6] : RLwuV5kMP", - "2 | Tip : KSM 0.000055555555" + "1 | Who [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", + "1 | Who [2/6] : 7kk8pSmAN", + "1 | Who [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", + "1 | Who [4/6] : TJhuRybMW", + "1 | Who [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", + "1 | Who [6/6] : arh5Wyxtp", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Who [2/6] : R4SxgUF5t", - "1 | Who [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Who [4/6] : ukgs1gweK", - "1 | Who [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Who [6/6] : RLwuV5kMP", + "1 | Who [1/6] : H46HSjWoGNvbun831iPy2NAUGMmJTXtdSdKXAA", + "1 | Who [2/6] : 7kk8pSmAN", + "1 | Who [3/6] : ELMSxGWdRz93SpcgheAoVJ7XabQcqErdN5U8R6", + "1 | Who [4/6] : TJhuRybMW", + "1 | Who [5/6] : G3TdGSFWGikG4sHb2eqK7oy8mPzR2s9TzKv7RX", + "1 | Who [6/6] : arh5Wyxtp", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4357,26 +4327,24 @@ { "index": 187, "name": "Staking_Kick", - "blob": "061608002c1201029fc8fbeadbfa14fdcf0c664ffd0de77fa8a5a2dfa6ce324bce21db2d00025c7dd940e21d11b342111697dd9f6af5f07d021937b5ba565769ad42072b89d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Who [2/4] : tBM8tXFuN", - "1 | Who [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Who [4/4] : EDnTdoLpf", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Who [2/4] : tBM8tXFuN", - "1 | Who [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Who [4/4] : EDnTdoLpf", + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4386,27 +4354,19 @@ { "index": 188, "name": "Staking_Kick", - "blob": "06160c00b1c28242ce1ef5b41dbfce8325dda37a990abd4b663c0fac39fdeef2b86a9664002397c7d693adb69470b53c19ff1e63ba562f19e8430a6f2edbc58fdd9b9608d900f644948fa877bca7cd8578a549d834a512e6061bd2715aa53fa06dd5cc14197ad503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "061604009c5fad1a2d524b84add1a7543ae515dd34c2b17c3690d0236d754f206aa1414ad503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Who [2/6] : R4SxgUF5t", - "1 | Who [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Who [4/6] : ukgs1gweK", - "1 | Who [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Who [6/6] : RLwuV5kMP", + "1 | Who [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Who [2/2] : GZhe6LBoT", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/6] : GbPmsudvkY2tGUWcowhHG2f7z6EsneGLDwY32w", - "1 | Who [2/6] : R4SxgUF5t", - "1 | Who [3/6] : DNzHJwVa3WHJBkWKYbctgHBWPCUyKAjqZ75rvr", - "1 | Who [4/6] : ukgs1gweK", - "1 | Who [5/6] : J9DfpEzv8CPFayYqWYpbQczPafRkppuKgRknAQ", - "1 | Who [6/6] : RLwuV5kMP", + "1 | Who [1/2] : G7MQi247wiX8XJnxTXV73PytxpanU6GNGkiF3Y", + "1 | Who [2/2] : GZhe6LBoT", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -4417,45 +4377,51 @@ { "index": 189, "name": "Staking_Kick", - "blob": "06160400441f54c06a14a369cfd81cf4c2de8d8e28e0b872587e55f37bd3ba6d5dde632fd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Who [2/2] : pMgixNqo1" + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/2] : E7e5fTb4vBhJYEBD4AKCUU66BMcnJyRX2mbfSn", - "1 | Who [2/2] : pMgixNqo1", + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 190, "name": "Staking_Kick", - "blob": "061608002c1201029fc8fbeadbfa14fdcf0c664ffd0de77fa8a5a2dfa6ce324bce21db2d00025c7dd940e21d11b342111697dd9f6af5f07d021937b5ba565769ad42072b89d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06160800d63e88803e3dba41d02d6ab9991c43562a4e9f28d9c3d0a773c166b861f5aae20074bfe2c2b94edd5f33d0b56f13752bf3c3afb23d558b3d736946b0a089f53b3cd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Kick", - "1 | Who [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Who [2/4] : tBM8tXFuN", - "1 | Who [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Who [4/4] : EDnTdoLpf", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/4] : Da6yPRwwpQeHPK3GBdbcNpBbaX3e8U3HuL24pi", - "1 | Who [2/4] : tBM8tXFuN", - "1 | Who [3/4] : CdR68emW5TKDzk5qaf5Ernop2tJ3m41jn2Nfhm", - "1 | Who [4/4] : EDnTdoLpf", + "1 | Who [1/4] : HRELka5HogpjSWTe93XPufCtXnjkzum4egeYNn", + "1 | Who [2/4] : PTbf4TXPP", + "1 | Who [3/4] : FDQ5GX61YPSG8QKsaBGvsLgL96MLxmf6AK1W1P", + "1 | Who [4/4] : x82HTQYhP", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4465,20 +4431,20 @@ { "index": 191, "name": "Staking_Chill_other", - "blob": "0618e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Controller [2/2] : zBUmsjRJA", - "2 | Tip : KSM 0.000055555555" + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Controller [2/2] : zBUmsjRJA", + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4488,22 +4454,20 @@ { "index": 192, "name": "Staking_Chill_other", - "blob": "0618e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Controller [2/2] : zBUmsjRJA", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Controller [2/2] : zBUmsjRJA", + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4513,66 +4477,64 @@ { "index": 193, "name": "Staking_Chill_other", - "blob": "0618c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Controller [2/2] : Wk42jTTrE", - "2 | Tip : KSM 0.000055555555" + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Controller [2/2] : Wk42jTTrE", + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 194, "name": "Staking_Chill_other", - "blob": "06182c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Controller [2/2] : 2GoCpzMtB" + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Controller [2/2] : 2GoCpzMtB", + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 195, "name": "Staking_Chill_other", - "blob": "0618c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "06186a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Controller [2/2] : nEdzjPoWQ", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Controller [2/2] : nEdzjPoWQ", + "1 | Controller [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Controller [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4582,52 +4544,52 @@ { "index": 196, "name": "Session_Set_keys", - "blob": "080008308bab74356b5d6e9cd283484a0b45db23a24d3e0af88524ba6f8a838de84605bf8773b8b0828c36e8637a808652048b6d13ce670a6e476f1371c64e65e1e3f3ac04cd1017ddf29b6579026d14d8172bf17d66373699796cc358e1f09bb07e0b20849d1b59f6d240132d78f5b183840e2e4354e5b64d668dc7e4afb23cb7fa5cdc752567f036dac4e932a55ddc2af7424a393dbacc6cf3a515d24069897b0c4ce4570bf6d67b8c91f50a3047b79eeb21537f4b22c68a8194f135a4d70bf1c7010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "080061da77668ce798e8c33624deed25d505e66a6685a8307224b5ccc6f3857dd49628cae5119ff3629dcefe9a8b9c23884958dae41fe5164220c38b8e88a51c6101c08b13c1f1af6a56bbd27151e48e9b1cc9dfa25193ffea4d356459fe63e4a9221694ea621cda6f627bd842cb3a066b62b166b1e45f67f87cad39ab2c24df2d6a15b7d01bbadfe77a164203f976f76cd53359aa43e9cc4c89b14c6e54c5c6a3c913870dffbff61bf4dc2256f39c251ae2a9fe9706f92f76a5ca9c852d657b93340102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 08308bab74356b5d6e9cd283484a0b45db23a2", - "1 | Keys [2/11] : 4d3e0af88524ba6f8a838de84605bf8773b8b0", - "1 | Keys [3/11] : 828c36e8637a808652048b6d13ce670a6e476f", - "1 | Keys [4/11] : 1371c64e65e1e3f3ac04cd1017ddf29b657902", - "1 | Keys [5/11] : 6d14d8172bf17d66373699796cc358e1f09bb0", - "1 | Keys [6/11] : 7e0b20849d1b59f6d240132d78f5b183840e2e", - "1 | Keys [7/11] : 4354e5b64d668dc7e4afb23cb7fa5cdc752567", - "1 | Keys [8/11] : f036dac4e932a55ddc2af7424a393dbacc6cf3", - "1 | Keys [9/11] : a515d24069897b0c4ce4570bf6d67b8c91f50a", - "1 | Keys [10/11] : 3047b79eeb21537f4b22c68a8194f135a4d70b", - "1 | Keys [11/11] : f1c7", - "2 | Proof [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "2 | Proof [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "2 | Proof [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "2 | Proof [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "2 | Proof [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "2 | Proof [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "2 | Proof [7/7] : 04dca258dce7091bfcfd667a47d7", - "3 | Tip : KSM 5.552342355555" + "1 | Keys [1/11] : 61da77668ce798e8c33624deed25d505e66a66", + "1 | Keys [2/11] : 85a8307224b5ccc6f3857dd49628cae5119ff3", + "1 | Keys [3/11] : 629dcefe9a8b9c23884958dae41fe5164220c3", + "1 | Keys [4/11] : 8b8e88a51c6101c08b13c1f1af6a56bbd27151", + "1 | Keys [5/11] : e48e9b1cc9dfa25193ffea4d356459fe63e4a9", + "1 | Keys [6/11] : 221694ea621cda6f627bd842cb3a066b62b166", + "1 | Keys [7/11] : b1e45f67f87cad39ab2c24df2d6a15b7d01bba", + "1 | Keys [8/11] : dfe77a164203f976f76cd53359aa43e9cc4c89", + "1 | Keys [9/11] : b14c6e54c5c6a3c913870dffbff61bf4dc2256", + "1 | Keys [10/11] : f39c251ae2a9fe9706f92f76a5ca9c852d657b", + "1 | Keys [11/11] : 9334", + "2 | Proof [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Proof [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Proof [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Proof [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Proof [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Proof [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Proof [7/7] : 15ed00d70e7bb9161e10557d44c4", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 08308bab74356b5d6e9cd283484a0b45db23a2", - "1 | Keys [2/11] : 4d3e0af88524ba6f8a838de84605bf8773b8b0", - "1 | Keys [3/11] : 828c36e8637a808652048b6d13ce670a6e476f", - "1 | Keys [4/11] : 1371c64e65e1e3f3ac04cd1017ddf29b657902", - "1 | Keys [5/11] : 6d14d8172bf17d66373699796cc358e1f09bb0", - "1 | Keys [6/11] : 7e0b20849d1b59f6d240132d78f5b183840e2e", - "1 | Keys [7/11] : 4354e5b64d668dc7e4afb23cb7fa5cdc752567", - "1 | Keys [8/11] : f036dac4e932a55ddc2af7424a393dbacc6cf3", - "1 | Keys [9/11] : a515d24069897b0c4ce4570bf6d67b8c91f50a", - "1 | Keys [10/11] : 3047b79eeb21537f4b22c68a8194f135a4d70b", - "1 | Keys [11/11] : f1c7", - "2 | Proof [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "2 | Proof [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "2 | Proof [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "2 | Proof [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "2 | Proof [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "2 | Proof [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "2 | Proof [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Keys [1/11] : 61da77668ce798e8c33624deed25d505e66a66", + "1 | Keys [2/11] : 85a8307224b5ccc6f3857dd49628cae5119ff3", + "1 | Keys [3/11] : 629dcefe9a8b9c23884958dae41fe5164220c3", + "1 | Keys [4/11] : 8b8e88a51c6101c08b13c1f1af6a56bbd27151", + "1 | Keys [5/11] : e48e9b1cc9dfa25193ffea4d356459fe63e4a9", + "1 | Keys [6/11] : 221694ea621cda6f627bd842cb3a066b62b166", + "1 | Keys [7/11] : b1e45f67f87cad39ab2c24df2d6a15b7d01bba", + "1 | Keys [8/11] : dfe77a164203f976f76cd53359aa43e9cc4c89", + "1 | Keys [9/11] : b14c6e54c5c6a3c913870dffbff61bf4dc2256", + "1 | Keys [10/11] : f39c251ae2a9fe9706f92f76a5ca9c852d657b", + "1 | Keys [11/11] : 9334", + "2 | Proof [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Proof [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Proof [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Proof [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Proof [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Proof [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Proof [7/7] : 15ed00d70e7bb9161e10557d44c4", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4637,210 +4599,210 @@ { "index": 197, "name": "Session_Set_keys", - "blob": "080048b43362f097a43c1e1b75b75178f064970fe4c50ee43504ead4630d476d229fe1af9ad9813322b0bb1cb7c3b633fc77ec88814b3cae926149434b11ee1f30d4d3847ffdf964babd859392ee9e9b217cde2476e7802f226a2a8f00ca32061e18b203f5fb4062e8bece8ebc522c4dadda87566da22a9acb174f0411e9b024acda370554ab61dbffb38c4b759f182ffed4b4147ba15a90f281bc3cdc31e880d56e36f3601b0935022421fb3432a651bfc2d21225f17bd3066159b9023903c8e26f010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "08007c7ec91a136618410d7c70f14fdd8f82666d99cd28b449398f39e77a7b226f15cbb3fe969fbaa147c8f78333b7a8cc536233dca28bf3d7bb701eba8056fb598486e84a8b6c08f343fe7f5fe53fe0080490841386b0ce2d828913f7970645a492731769f4e4949037fb15bd881373c0f4e9fc623d8a5609fc7dd9042993c820159f39a9cf7739a65028cd10e1eec0f64bef861e157169ea81db6846fe1fe0b6e38c98340d37c7617b19453140cf334b39e9cad5e7df45fef5549fb8628e78ab720102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 48b43362f097a43c1e1b75b75178f064970fe4", - "1 | Keys [2/11] : c50ee43504ead4630d476d229fe1af9ad98133", - "1 | Keys [3/11] : 22b0bb1cb7c3b633fc77ec88814b3cae926149", - "1 | Keys [4/11] : 434b11ee1f30d4d3847ffdf964babd859392ee", - "1 | Keys [5/11] : 9e9b217cde2476e7802f226a2a8f00ca32061e", - "1 | Keys [6/11] : 18b203f5fb4062e8bece8ebc522c4dadda8756", - "1 | Keys [7/11] : 6da22a9acb174f0411e9b024acda370554ab61", - "1 | Keys [8/11] : dbffb38c4b759f182ffed4b4147ba15a90f281", - "1 | Keys [9/11] : bc3cdc31e880d56e36f3601b0935022421fb34", - "1 | Keys [10/11] : 32a651bfc2d21225f17bd3066159b9023903c8", - "1 | Keys [11/11] : e26f", - "2 | Proof [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Proof [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Proof [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Proof [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Proof [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Proof [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Proof [7/7] : 7fed4553016566979ccedc8c4d56" + "1 | Keys [1/11] : 7c7ec91a136618410d7c70f14fdd8f82666d99", + "1 | Keys [2/11] : cd28b449398f39e77a7b226f15cbb3fe969fba", + "1 | Keys [3/11] : a147c8f78333b7a8cc536233dca28bf3d7bb70", + "1 | Keys [4/11] : 1eba8056fb598486e84a8b6c08f343fe7f5fe5", + "1 | Keys [5/11] : 3fe0080490841386b0ce2d828913f7970645a4", + "1 | Keys [6/11] : 92731769f4e4949037fb15bd881373c0f4e9fc", + "1 | Keys [7/11] : 623d8a5609fc7dd9042993c820159f39a9cf77", + "1 | Keys [8/11] : 39a65028cd10e1eec0f64bef861e157169ea81", + "1 | Keys [9/11] : db6846fe1fe0b6e38c98340d37c7617b194531", + "1 | Keys [10/11] : 40cf334b39e9cad5e7df45fef5549fb8628e78", + "1 | Keys [11/11] : ab72", + "2 | Proof [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "2 | Proof [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "2 | Proof [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "2 | Proof [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "2 | Proof [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "2 | Proof [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "2 | Proof [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 48b43362f097a43c1e1b75b75178f064970fe4", - "1 | Keys [2/11] : c50ee43504ead4630d476d229fe1af9ad98133", - "1 | Keys [3/11] : 22b0bb1cb7c3b633fc77ec88814b3cae926149", - "1 | Keys [4/11] : 434b11ee1f30d4d3847ffdf964babd859392ee", - "1 | Keys [5/11] : 9e9b217cde2476e7802f226a2a8f00ca32061e", - "1 | Keys [6/11] : 18b203f5fb4062e8bece8ebc522c4dadda8756", - "1 | Keys [7/11] : 6da22a9acb174f0411e9b024acda370554ab61", - "1 | Keys [8/11] : dbffb38c4b759f182ffed4b4147ba15a90f281", - "1 | Keys [9/11] : bc3cdc31e880d56e36f3601b0935022421fb34", - "1 | Keys [10/11] : 32a651bfc2d21225f17bd3066159b9023903c8", - "1 | Keys [11/11] : e26f", - "2 | Proof [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Proof [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Proof [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Proof [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Proof [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Proof [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Proof [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Keys [1/11] : 7c7ec91a136618410d7c70f14fdd8f82666d99", + "1 | Keys [2/11] : cd28b449398f39e77a7b226f15cbb3fe969fba", + "1 | Keys [3/11] : a147c8f78333b7a8cc536233dca28bf3d7bb70", + "1 | Keys [4/11] : 1eba8056fb598486e84a8b6c08f343fe7f5fe5", + "1 | Keys [5/11] : 3fe0080490841386b0ce2d828913f7970645a4", + "1 | Keys [6/11] : 92731769f4e4949037fb15bd881373c0f4e9fc", + "1 | Keys [7/11] : 623d8a5609fc7dd9042993c820159f39a9cf77", + "1 | Keys [8/11] : 39a65028cd10e1eec0f64bef861e157169ea81", + "1 | Keys [9/11] : db6846fe1fe0b6e38c98340d37c7617b194531", + "1 | Keys [10/11] : 40cf334b39e9cad5e7df45fef5549fb8628e78", + "1 | Keys [11/11] : ab72", + "2 | Proof [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "2 | Proof [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "2 | Proof [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "2 | Proof [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "2 | Proof [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "2 | Proof [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "2 | Proof [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 198, "name": "Session_Set_keys", - "blob": "0800515c38be9ba4f949e799019e39fbb53c029fdc9236999c349ef9aaf597fc545c3383bbb46dfc634a5e6448cd7aa685d53d1abddd9d0e23258ffa4b2d8f7694001752833f2ee9738c4b0e1291429768d7fab76948de12d1848ed628b3bf79337866068c66af210ae394ebd8ed2c0e7bf52e46c602d941288d996f48a65a296bef63de3186166ce89ec8f5bb66fcae67b65d7155dca12c764f7e0ba6de759cafa6af3e751a0f1efafe12256d70231f7ab803bb8a9cd1e62458b1e7b1bc90f75114800c406e8c3b4f44d619dada7f3025b1c70458460c9e974225420cfc774132f6f4d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9966a213abf62c06e918fde0a00ad80fe1af8c44f4091ae3af86f3ea3f074b14a577899a98492fe7b744d3a155036bfac0c9abcc19632e56e068ab892efa0e1201cfbaab0c01639f99d7705d724e661eb29acfd6d968f31952b759dc36f7761f7619bf0f5cc8225ca6b466de9c67773327ddaef776804001ebd194baab91224ee9e4ce4213cd34beb32976b78a82495bfe9e77737d6b2d31a64fa0fa0c0d710515185f129ffb90851998f5733b180b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 515c38be9ba4f949e799019e39fbb53c029fdc", - "1 | Keys [2/11] : 9236999c349ef9aaf597fc545c3383bbb46dfc", - "1 | Keys [3/11] : 634a5e6448cd7aa685d53d1abddd9d0e23258f", - "1 | Keys [4/11] : fa4b2d8f7694001752833f2ee9738c4b0e1291", - "1 | Keys [5/11] : 429768d7fab76948de12d1848ed628b3bf7933", - "1 | Keys [6/11] : 7866068c66af210ae394ebd8ed2c0e7bf52e46", - "1 | Keys [7/11] : c602d941288d996f48a65a296bef63de318616", - "1 | Keys [8/11] : 6ce89ec8f5bb66fcae67b65d7155dca12c764f", - "1 | Keys [9/11] : 7e0ba6de759cafa6af3e751a0f1efafe12256d", - "1 | Keys [10/11] : 70231f7ab803bb8a9cd1e62458b1e7b1bc90f7", - "1 | Keys [11/11] : 5114", - "2 | Proof [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "2 | Proof [2/2] : 0c9e974225420cfc774132f6f4" + "1 | Keys [1/11] : e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9", + "1 | Keys [2/11] : 966a213abf62c06e918fde0a00ad80fe1af8c4", + "1 | Keys [3/11] : 4f4091ae3af86f3ea3f074b14a577899a98492", + "1 | Keys [4/11] : fe7b744d3a155036bfac0c9abcc19632e56e06", + "1 | Keys [5/11] : 8ab892efa0e1201cfbaab0c01639f99d7705d7", + "1 | Keys [6/11] : 24e661eb29acfd6d968f31952b759dc36f7761", + "1 | Keys [7/11] : f7619bf0f5cc8225ca6b466de9c67773327dda", + "1 | Keys [8/11] : ef776804001ebd194baab91224ee9e4ce4213c", + "1 | Keys [9/11] : d34beb32976b78a82495bfe9e77737d6b2d31a", + "1 | Keys [10/11] : 64fa0fa0c0d710515185f129ffb90851998f57", + "1 | Keys [11/11] : 33b1", + "2 | Proof [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Proof [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 515c38be9ba4f949e799019e39fbb53c029fdc", - "1 | Keys [2/11] : 9236999c349ef9aaf597fc545c3383bbb46dfc", - "1 | Keys [3/11] : 634a5e6448cd7aa685d53d1abddd9d0e23258f", - "1 | Keys [4/11] : fa4b2d8f7694001752833f2ee9738c4b0e1291", - "1 | Keys [5/11] : 429768d7fab76948de12d1848ed628b3bf7933", - "1 | Keys [6/11] : 7866068c66af210ae394ebd8ed2c0e7bf52e46", - "1 | Keys [7/11] : c602d941288d996f48a65a296bef63de318616", - "1 | Keys [8/11] : 6ce89ec8f5bb66fcae67b65d7155dca12c764f", - "1 | Keys [9/11] : 7e0ba6de759cafa6af3e751a0f1efafe12256d", - "1 | Keys [10/11] : 70231f7ab803bb8a9cd1e62458b1e7b1bc90f7", - "1 | Keys [11/11] : 5114", - "2 | Proof [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "2 | Proof [2/2] : 0c9e974225420cfc774132f6f4", + "1 | Keys [1/11] : e9ab91dea7a6dc07c50ad4ce43c2bce892d9a9", + "1 | Keys [2/11] : 966a213abf62c06e918fde0a00ad80fe1af8c4", + "1 | Keys [3/11] : 4f4091ae3af86f3ea3f074b14a577899a98492", + "1 | Keys [4/11] : fe7b744d3a155036bfac0c9abcc19632e56e06", + "1 | Keys [5/11] : 8ab892efa0e1201cfbaab0c01639f99d7705d7", + "1 | Keys [6/11] : 24e661eb29acfd6d968f31952b759dc36f7761", + "1 | Keys [7/11] : f7619bf0f5cc8225ca6b466de9c67773327dda", + "1 | Keys [8/11] : ef776804001ebd194baab91224ee9e4ce4213c", + "1 | Keys [9/11] : d34beb32976b78a82495bfe9e77737d6b2d31a", + "1 | Keys [10/11] : 64fa0fa0c0d710515185f129ffb90851998f57", + "1 | Keys [11/11] : 33b1", + "2 | Proof [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Proof [2/2] : 54c8c31cf7ef8c895cc744c6f5", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 199, "name": "Session_Set_keys", - "blob": "080048b43362f097a43c1e1b75b75178f064970fe4c50ee43504ead4630d476d229fe1af9ad9813322b0bb1cb7c3b633fc77ec88814b3cae926149434b11ee1f30d4d3847ffdf964babd859392ee9e9b217cde2476e7802f226a2a8f00ca32061e18b203f5fb4062e8bece8ebc522c4dadda87566da22a9acb174f0411e9b024acda370554ab61dbffb38c4b759f182ffed4b4147ba15a90f281bc3cdc31e880d56e36f3601b0935022421fb3432a651bfc2d21225f17bd3066159b9023903c8e26f0101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800be9aadafc0b76e445aa19918eaf610eb7400bb2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f810cc0139521a3f7bd6204a86f089e37bf933b71b1b665780ea9378dd0a5f758d567847266f640df24eb2337c31d7408bab6948dd42d1ae0c23c64b9f2943870c474dcea6750346f9bd4371641c84a43ad9b68adee02271ef5dc89abdaface0c685dc296a13378e535e8a4d7dee4fcf32a2ac9f092159bd231ed063c9ef5a34bc82797ca0b3cc649638e07ada5aa0989c2b94ee028ae9e85190bc010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 48b43362f097a43c1e1b75b75178f064970fe4", - "1 | Keys [2/11] : c50ee43504ead4630d476d229fe1af9ad98133", - "1 | Keys [3/11] : 22b0bb1cb7c3b633fc77ec88814b3cae926149", - "1 | Keys [4/11] : 434b11ee1f30d4d3847ffdf964babd859392ee", - "1 | Keys [5/11] : 9e9b217cde2476e7802f226a2a8f00ca32061e", - "1 | Keys [6/11] : 18b203f5fb4062e8bece8ebc522c4dadda8756", - "1 | Keys [7/11] : 6da22a9acb174f0411e9b024acda370554ab61", - "1 | Keys [8/11] : dbffb38c4b759f182ffed4b4147ba15a90f281", - "1 | Keys [9/11] : bc3cdc31e880d56e36f3601b0935022421fb34", - "1 | Keys [10/11] : 32a651bfc2d21225f17bd3066159b9023903c8", - "1 | Keys [11/11] : e26f", - "2 | Proof [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Proof [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Proof [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Proof [4/4] : 9d62d23182367e", - "3 | Tip : KSM 0.00123456789" + "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", + "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", + "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", + "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", + "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", + "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", + "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", + "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", + "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", + "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", + "1 | Keys [11/11] : 90bc", + "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "2 | Proof [4/4] : 683807d2d3ef09" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 48b43362f097a43c1e1b75b75178f064970fe4", - "1 | Keys [2/11] : c50ee43504ead4630d476d229fe1af9ad98133", - "1 | Keys [3/11] : 22b0bb1cb7c3b633fc77ec88814b3cae926149", - "1 | Keys [4/11] : 434b11ee1f30d4d3847ffdf964babd859392ee", - "1 | Keys [5/11] : 9e9b217cde2476e7802f226a2a8f00ca32061e", - "1 | Keys [6/11] : 18b203f5fb4062e8bece8ebc522c4dadda8756", - "1 | Keys [7/11] : 6da22a9acb174f0411e9b024acda370554ab61", - "1 | Keys [8/11] : dbffb38c4b759f182ffed4b4147ba15a90f281", - "1 | Keys [9/11] : bc3cdc31e880d56e36f3601b0935022421fb34", - "1 | Keys [10/11] : 32a651bfc2d21225f17bd3066159b9023903c8", - "1 | Keys [11/11] : e26f", - "2 | Proof [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Proof [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Proof [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Proof [4/4] : 9d62d23182367e", + "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", + "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", + "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", + "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", + "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", + "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", + "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", + "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", + "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", + "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", + "1 | Keys [11/11] : 90bc", + "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "2 | Proof [4/4] : 683807d2d3ef09", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 200, "name": "Session_Set_keys", - "blob": "080035a63e688760db4aeaa220f011e238ccd08a0365a75a0b5bbe147a5859b1dea19fcb2a54c9537d00e6b2cb69fd50bdd1caae4bf51624802e69ddd1c5c3590b3c879aa38c1a3493806c072508d5c3b258abb3a75950f6d92077046b9d202d4a651670362e341866cd90ffc103bb261bb15a713dfd7379f8b7e44a9468f93727e2b06cc1eb8d3fd29e4cf6d624fd579d1c561df8520cf75afb77059f0cd875e19acf8cad650483851cd219f2b557e2324e6a3cfe329b44e804d5936914f33778220101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0800be9aadafc0b76e445aa19918eaf610eb7400bb2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f810cc0139521a3f7bd6204a86f089e37bf933b71b1b665780ea9378dd0a5f758d567847266f640df24eb2337c31d7408bab6948dd42d1ae0c23c64b9f2943870c474dcea6750346f9bd4371641c84a43ad9b68adee02271ef5dc89abdaface0c685dc296a13378e535e8a4d7dee4fcf32a2ac9f092159bd231ed063c9ef5a34bc82797ca0b3cc649638e07ada5aa0989c2b94ee028ae9e85190bc010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 35a63e688760db4aeaa220f011e238ccd08a03", - "1 | Keys [2/11] : 65a75a0b5bbe147a5859b1dea19fcb2a54c953", - "1 | Keys [3/11] : 7d00e6b2cb69fd50bdd1caae4bf51624802e69", - "1 | Keys [4/11] : ddd1c5c3590b3c879aa38c1a3493806c072508", - "1 | Keys [5/11] : d5c3b258abb3a75950f6d92077046b9d202d4a", - "1 | Keys [6/11] : 651670362e341866cd90ffc103bb261bb15a71", - "1 | Keys [7/11] : 3dfd7379f8b7e44a9468f93727e2b06cc1eb8d", - "1 | Keys [8/11] : 3fd29e4cf6d624fd579d1c561df8520cf75afb", - "1 | Keys [9/11] : 77059f0cd875e19acf8cad650483851cd219f2", - "1 | Keys [10/11] : b557e2324e6a3cfe329b44e804d5936914f337", - "1 | Keys [11/11] : 7822", - "2 | Proof [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Proof [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Proof [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Proof [4/4] : 9d62d23182367e", - "3 | Tip : KSM 5.552342355555" + "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", + "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", + "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", + "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", + "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", + "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", + "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", + "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", + "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", + "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", + "1 | Keys [11/11] : 90bc", + "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "2 | Proof [4/4] : 683807d2d3ef09" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/11] : 35a63e688760db4aeaa220f011e238ccd08a03", - "1 | Keys [2/11] : 65a75a0b5bbe147a5859b1dea19fcb2a54c953", - "1 | Keys [3/11] : 7d00e6b2cb69fd50bdd1caae4bf51624802e69", - "1 | Keys [4/11] : ddd1c5c3590b3c879aa38c1a3493806c072508", - "1 | Keys [5/11] : d5c3b258abb3a75950f6d92077046b9d202d4a", - "1 | Keys [6/11] : 651670362e341866cd90ffc103bb261bb15a71", - "1 | Keys [7/11] : 3dfd7379f8b7e44a9468f93727e2b06cc1eb8d", - "1 | Keys [8/11] : 3fd29e4cf6d624fd579d1c561df8520cf75afb", - "1 | Keys [9/11] : 77059f0cd875e19acf8cad650483851cd219f2", - "1 | Keys [10/11] : b557e2324e6a3cfe329b44e804d5936914f337", - "1 | Keys [11/11] : 7822", - "2 | Proof [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Proof [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Proof [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Proof [4/4] : 9d62d23182367e", + "1 | Keys [1/11] : be9aadafc0b76e445aa19918eaf610eb7400bb", + "1 | Keys [2/11] : 2d6a4bca989bf32f2ccf4e4b52ef44fcbb61f8", + "1 | Keys [3/11] : 10cc0139521a3f7bd6204a86f089e37bf933b7", + "1 | Keys [4/11] : 1b1b665780ea9378dd0a5f758d567847266f64", + "1 | Keys [5/11] : 0df24eb2337c31d7408bab6948dd42d1ae0c23", + "1 | Keys [6/11] : c64b9f2943870c474dcea6750346f9bd437164", + "1 | Keys [7/11] : 1c84a43ad9b68adee02271ef5dc89abdaface0", + "1 | Keys [8/11] : c685dc296a13378e535e8a4d7dee4fcf32a2ac", + "1 | Keys [9/11] : 9f092159bd231ed063c9ef5a34bc82797ca0b3", + "1 | Keys [10/11] : cc649638e07ada5aa0989c2b94ee028ae9e851", + "1 | Keys [11/11] : 90bc", + "2 | Proof [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "2 | Proof [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "2 | Proof [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "2 | Proof [4/4] : 683807d2d3ef09", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 201, "name": "Session_Purge_keys", - "blob": "0801d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 100", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4850,16 +4812,16 @@ { "index": 202, "name": "Session_Purge_keys", - "blob": "0801d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4869,16 +4831,16 @@ { "index": 203, "name": "Session_Purge_keys", - "blob": "0801d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4888,16 +4850,18 @@ { "index": 204, "name": "Session_Purge_keys", - "blob": "0801d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Session : Purge keys", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 100", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4907,89 +4871,79 @@ { "index": 205, "name": "Session_Purge_keys", - "blob": "0801d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0801d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Session : Purge keys", - "1 | Tip : KSM 5.552342355555" + "0 | Session : Purge keys" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 206, "name": "Grandpa_Note_stalled", - "blob": "0a02ac350000ac350000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a0200000000ff030000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 13740", - "2 | Best finalized block number : 13740", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Delay : 0", + "2 | Best finalized block number : 1023" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 13740", - "2 | Best finalized block number : 13740", + "1 | Delay : 0", + "2 | Best finalized block number : 1023", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 207, "name": "Grandpa_Note_stalled", - "blob": "0a0225010000ac350000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a02250100007b000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", "1 | Delay : 293", - "2 | Best finalized block number : 13740", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "2 | Best finalized block number : 123" ], "output_expert": [ "0 | Grandpa : Note stalled", "1 | Delay : 293", - "2 | Best finalized block number : 13740", + "2 | Best finalized block number : 123", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 208, "name": "Grandpa_Note_stalled", - "blob": "0a027b00000000000000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a02b3e30100b3e30100d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123", - "2 | Best finalized block number : 0", - "3 | Tip : KSM 0.000000000987" + "1 | Delay : 123827", + "2 | Best finalized block number : 123827", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 123", - "2 | Best finalized block number : 0", + "1 | Delay : 123827", + "2 | Best finalized block number : 123827", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -4999,87 +4953,89 @@ { "index": 209, "name": "Grandpa_Note_stalled", - "blob": "0a02ac35000001000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a027b00000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", - "1 | Delay : 13740", - "2 | Best finalized block number : 1" + "1 | Delay : 123", + "2 | Best finalized block number : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Grandpa : Note stalled", - "1 | Delay : 13740", - "2 | Best finalized block number : 1", + "1 | Delay : 123", + "2 | Best finalized block number : 0", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 210, "name": "Grandpa_Note_stalled", - "blob": "0a022501000001000000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0a0225010000ff030000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Grandpa : Note stalled", "1 | Delay : 293", - "2 | Best finalized block number : 1", - "3 | Tip : KSM 5.552342355555" + "2 | Best finalized block number : 1023" ], "output_expert": [ "0 | Grandpa : Note stalled", "1 | Delay : 293", - "2 | Best finalized block number : 1", + "2 | Best finalized block number : 1023", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 211, "name": "Democracy_Second", - "blob": "0d0132bcf23532bcf235d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01f1990916d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 226275084", - "2 | Seconds upper bound : 226275084", - "3 | Tip : KSM 0.00123456789" + "1 | Proposal : 9852", + "2 | Seconds upper bound : 1410" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 226275084", - "2 | Seconds upper bound : 226275084", + "1 | Proposal : 9852", + "2 | Seconds upper bound : 1410", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 212, "name": "Democracy_Second", - "blob": "0d0132bcf23532bcf235d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01091696fb6477d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 226275084", - "2 | Seconds upper bound : 226275084", - "3 | Tip : KSM 0.000055555555" + "1 | Proposal : 1410", + "2 | Seconds upper bound : 500776677", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 226275084", - "2 | Seconds upper bound : 226275084", + "1 | Proposal : 1410", + "2 | Seconds upper bound : 500776677", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5089,20 +5045,20 @@ { "index": 213, "name": "Democracy_Second", - "blob": "0d013088d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0196fb64770916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 12", - "2 | Seconds upper bound : 34", - "3 | Tip : KSM 0.000000000987" + "1 | Proposal : 500776677", + "2 | Seconds upper bound : 1410", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 12", - "2 | Seconds upper bound : 34", + "1 | Proposal : 500776677", + "2 | Seconds upper bound : 1410", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5112,20 +5068,22 @@ { "index": 214, "name": "Democracy_Second", - "blob": "0d01885a83100fd503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d01dcdcd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 34", - "2 | Seconds upper bound : 63185110", - "3 | Tip : KSM 0.000055555555" + "1 | Proposal : 55", + "2 | Seconds upper bound : 55", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 34", - "2 | Seconds upper bound : 63185110", + "1 | Proposal : 55", + "2 | Seconds upper bound : 55", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5135,20 +5093,22 @@ { "index": 215, "name": "Democracy_Second", - "blob": "0d013030d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0196fb6477dcd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Second", - "1 | Proposal : 12", - "2 | Seconds upper bound : 12", - "3 | Tip : KSM 0.00123456789" + "1 | Proposal : 500776677", + "2 | Seconds upper bound : 55", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Second", - "1 | Proposal : 12", - "2 | Seconds upper bound : 12", + "1 | Proposal : 500776677", + "2 | Seconds upper bound : 55", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5158,18 +5118,18 @@ { "index": 216, "name": "Democracy_Emergency_cancel", - "blob": "0d0301000000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0301000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", "1 | Ref index : 1", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Emergency cancel", "1 | Ref index : 1", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5179,18 +5139,20 @@ { "index": 217, "name": "Democracy_Emergency_cancel", - "blob": "0d03b3e30100d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d037b000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123827", - "2 | Tip : KSM 0.000000000987" + "1 | Ref index : 123", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 123827", + "1 | Ref index : 123", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5200,7 +5162,7 @@ { "index": 218, "name": "Democracy_Emergency_cancel", - "blob": "0d03b3e30100d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d03b3e30100d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", "1 | Ref index : 123827", @@ -5221,18 +5183,18 @@ { "index": 219, "name": "Democracy_Emergency_cancel", - "blob": "0d03ff030000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d037b000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1023", - "2 | Tip : KSM 0.000055555555" + "1 | Ref index : 123", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1023", + "1 | Ref index : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5242,18 +5204,18 @@ { "index": 220, "name": "Democracy_Emergency_cancel", - "blob": "0d03ff030000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0325010000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1023", - "2 | Tip : KSM 0.00123456789" + "1 | Ref index : 293", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Emergency cancel", - "1 | Ref index : 1023", + "1 | Ref index : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5263,18 +5225,20 @@ { "index": 221, "name": "Democracy_Cancel_referendum", - "blob": "0d0932bcf235d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d090916d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084", - "2 | Tip : KSM 0.000055555555" + "1 | Ref index : 1410", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084", + "1 | Ref index : 1410", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5284,35 +5248,33 @@ { "index": 222, "name": "Democracy_Cancel_referendum", - "blob": "0d0930d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d090916d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 12", - "2 | Tip : KSM 0.000000000987" + "1 | Ref index : 1410" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 12", + "1 | Ref index : 1410", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 223, "name": "Democracy_Cancel_referendum", - "blob": "0d0932bcf235d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d090916d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084" + "1 | Ref index : 1410" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084", + "1 | Ref index : 1410", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Era Phase : 61", @@ -5324,17 +5286,17 @@ { "index": 224, "name": "Democracy_Cancel_referendum", - "blob": "0d0932bcf235d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0996fb6477d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084", + "1 | Ref index : 500776677", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 226275084", + "1 | Ref index : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -5345,97 +5307,93 @@ { "index": 225, "name": "Democracy_Cancel_referendum", - "blob": "0d0988d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d09f199d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 34" + "1 | Ref index : 9852", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Cancel referendum", - "1 | Ref index : 34", + "1 | Ref index : 9852", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 226, "name": "Democracy_Cancel_queued", - "blob": "0d0a25010000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a7b000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", - "2 | Tip : KSM 5.552342355555" + "1 | Which : 123" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", + "1 | Which : 123", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 227, "name": "Democracy_Cancel_queued", - "blob": "0d0aac350000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a25010000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 13740", - "2 | Tip : KSM 0.000055555555" + "1 | Which : 293" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 13740", + "1 | Which : 293", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 228, "name": "Democracy_Cancel_queued", - "blob": "0d0aff030000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a7b000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 1023", - "2 | Tip : KSM 0.000000000987" + "1 | Which : 123" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 1023", + "1 | Which : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] }, { "index": 229, "name": "Democracy_Cancel_queued", - "blob": "0d0a25010000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0aff030000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", + "1 | Which : 1023", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", + "1 | Which : 1023", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", @@ -5448,39 +5406,35 @@ { "index": 230, "name": "Democracy_Cancel_queued", - "blob": "0d0a25010000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0a25010000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel queued", - "1 | Which : 293", - "2 | Tip : KSM 0.000055555555" + "1 | Which : 293" ], "output_expert": [ "0 | Democracy : Cancel queued", "1 | Which : 293", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 231, "name": "Democracy_Undelegate", - "blob": "0d0cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 0", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5490,16 +5444,16 @@ { "index": 232, "name": "Democracy_Undelegate", - "blob": "0d0cd503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5509,16 +5463,16 @@ { "index": 233, "name": "Democracy_Undelegate", - "blob": "0d0cd50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 2339", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5528,16 +5482,18 @@ { "index": 234, "name": "Democracy_Undelegate", - "blob": "0d0cd503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Undelegate", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5547,50 +5503,56 @@ { "index": 235, "name": "Democracy_Undelegate", - "blob": "0d0cd5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0cd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Undelegate" + "0 | Democracy : Undelegate", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Undelegate", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 236, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Clear public proposals" + "0 | Democracy : Clear public proposals", + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Tip : KSM 5.552342355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 237, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 50283", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5600,18 +5562,16 @@ { "index": 238, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5621,37 +5581,33 @@ { "index": 239, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Democracy : Clear public proposals", - "1 | Tip : KSM 0.000000000987" + "0 | Democracy : Clear public proposals" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 240, "name": "Democracy_Clear_public_proposals", - "blob": "0d0dd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0dd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Clear public proposals", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Clear public proposals", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 100", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5661,23 +5617,23 @@ { "index": 241, "name": "Democracy_Note_preimage", - "blob": "0d0e0101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -5688,21 +5644,27 @@ { "index": 242, "name": "Democracy_Note_preimage", - "blob": "0d0e01010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 0.000055555555", @@ -5715,26 +5677,24 @@ { "index": 243, "name": "Democracy_Note_preimage", - "blob": "0d0e0101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5744,30 +5704,30 @@ { "index": 244, "name": "Democracy_Note_preimage", - "blob": "0d0e010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Tip : KSM 0.00123456789" + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5777,24 +5737,26 @@ { "index": 245, "name": "Democracy_Note_preimage", - "blob": "0d0e010172b749949072208241c0d6513bf29e5e06e606a222af2cc62dd4374ce82b0b0ed13f038ae7b729aa8223ba731bb07016084bcfe507bbc07faa4ed890f9071d40d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0e0101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Encoded proposal [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Encoded proposal [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Encoded proposal [4/4] : 4ed890f9071d40", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note preimage", - "1 | Encoded proposal [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Encoded proposal [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Encoded proposal [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Encoded proposal [4/4] : 4ed890f9071d40", + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5804,59 +5766,61 @@ { "index": 246, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f010172b749949072208241c0d6513bf29e5e06e606a222af2cc62dd4374ce82b0b0ed13f038ae7b729aa8223ba731bb07016084bcfe507bbc07faa4ed890f9071d40d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f01028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Encoded proposal [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Encoded proposal [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Encoded proposal [4/4] : 4ed890f9071d40", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Encoded proposal [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Encoded proposal [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Encoded proposal [4/4] : 4ed890f9071d40", + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 247, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Encoded proposal [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Encoded proposal [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Encoded proposal [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Encoded proposal [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Encoded proposal [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Encoded proposal [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Encoded proposal [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5866,30 +5830,24 @@ { "index": 248, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f01013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5899,51 +5857,61 @@ { "index": 249, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f01013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56" + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 250, "name": "Democracy_Note_preimage_operational", - "blob": "0d0f80c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d0f0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Encoded proposal [2/2] : d3c2213811916ffe6b767ec708", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note preimage operational", - "1 | Encoded proposal [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Encoded proposal [2/2] : d3c2213811916ffe6b767ec708", + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -5953,24 +5921,30 @@ { "index": 251, "name": "Democracy_Note_imminent_preimage", - "blob": "0d1001010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -5982,30 +5956,30 @@ { "index": 252, "name": "Democracy_Note_imminent_preimage", - "blob": "0d100102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Encoded proposal [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Encoded proposal [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Encoded proposal [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Encoded proposal [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Encoded proposal [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Encoded proposal [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Encoded proposal [7/7] : 981e2df7f997de23b266e33ef909", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6015,30 +5989,32 @@ { "index": 253, "name": "Democracy_Note_imminent_preimage", - "blob": "0d10010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d100102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Encoded proposal [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Encoded proposal [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Encoded proposal [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Encoded proposal [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Encoded proposal [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Encoded proposal [7/7] : 04dca258dce7091bfcfd667a47d7", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Encoded proposal [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Encoded proposal [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Encoded proposal [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Encoded proposal [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Encoded proposal [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Encoded proposal [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6048,30 +6024,20 @@ { "index": 254, "name": "Democracy_Note_imminent_preimage", - "blob": "0d10010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1080c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Encoded proposal [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Encoded proposal [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Encoded proposal [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Encoded proposal [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Encoded proposal [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Encoded proposal [7/7] : 04dca258dce7091bfcfd667a47d7", - "2 | Tip : KSM 0.00123456789" + "1 | Encoded proposal [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Encoded proposal [2/2] : 57257aca85a53c1f005b0f70f4", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Encoded proposal [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Encoded proposal [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Encoded proposal [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Encoded proposal [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Encoded proposal [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Encoded proposal [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Encoded proposal [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Encoded proposal [2/2] : 57257aca85a53c1f005b0f70f4", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6081,30 +6047,26 @@ { "index": 255, "name": "Democracy_Note_imminent_preimage", - "blob": "0d10010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d10010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Tip : KSM 5.552342355555" + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Note imminent preimage", - "1 | Encoded proposal [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Encoded proposal [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Encoded proposal [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Encoded proposal [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Encoded proposal [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Encoded proposal [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Encoded proposal [7/7] : 7fed4553016566979ccedc8c4d56", + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6114,23 +6076,23 @@ { "index": 256, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d110101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d110101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Encoded proposal [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Encoded proposal [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Encoded proposal [4/4] : 9d62d23182367e", + "1 | Encoded proposal [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Encoded proposal [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Encoded proposal [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Encoded proposal [4/4] : 6ef8294aecb62b", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6141,63 +6103,55 @@ { "index": 257, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d110102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1101013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Tip : KSM 0.00123456789" + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Encoded proposal [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Encoded proposal [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Encoded proposal [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Encoded proposal [4/4] : 29e6b2f9890d9f", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 258, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d110102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d110102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Tip : KSM 0.000000000987" + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Encoded proposal [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Encoded proposal [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Encoded proposal [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Encoded proposal [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Encoded proposal [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Encoded proposal [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Encoded proposal [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Encoded proposal [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Encoded proposal [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Encoded proposal [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Encoded proposal [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Encoded proposal [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Encoded proposal [7/7] : 15ed00d70e7bb9161e10557d44c4", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6207,23 +6161,19 @@ { "index": 259, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d1101010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1180b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Encoded proposal [2/2] : 54c8c31cf7ef8c895cc744c6f5", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Encoded proposal [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Encoded proposal [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Encoded proposal [4/4] : 6e1755de324791", + "1 | Encoded proposal [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Encoded proposal [2/2] : 54c8c31cf7ef8c895cc744c6f5", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6234,20 +6184,24 @@ { "index": 260, "name": "Democracy_Note_imminent_preimage_operational", - "blob": "0d1180c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d11010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Encoded proposal [2/2] : d3c2213811916ffe6b767ec708", - "2 | Tip : KSM 0.000055555555" + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Note imminent preimage operational", - "1 | Encoded proposal [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Encoded proposal [2/2] : d3c2213811916ffe6b767ec708", + "1 | Encoded proposal [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Encoded proposal [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Encoded proposal [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Encoded proposal [4/4] : 683807d2d3ef09", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6257,20 +6211,18 @@ { "index": 261, "name": "Democracy_Remove_vote", - "blob": "0d14ff030000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14ff030000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", "1 | Index : 1023", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Remove vote", "1 | Index : 1023", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6280,18 +6232,18 @@ { "index": 262, "name": "Democracy_Remove_vote", - "blob": "0d14ff030000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14ff030000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", "1 | Index : 1023", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Remove vote", "1 | Index : 1023", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6301,37 +6253,39 @@ { "index": 263, "name": "Democracy_Remove_vote", - "blob": "0d1400000000d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14ac350000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 0" + "1 | Index : 13740", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 0", + "1 | Index : 13740", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 264, "name": "Democracy_Remove_vote", - "blob": "0d1425010000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14ac350000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 293", - "2 | Tip : KSM 5.552342355555" + "1 | Index : 13740", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 293", + "1 | Index : 13740", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6341,20 +6295,18 @@ { "index": 265, "name": "Democracy_Remove_vote", - "blob": "0d1401000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d14ff030000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Remove vote", - "1 | Index : 1", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Index : 1023", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Remove vote", - "1 | Index : 1", + "1 | Index : 1023", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6364,18 +6316,18 @@ { "index": 266, "name": "Democracy_Cancel_proposal", - "blob": "0d1888d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1896fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 34", - "2 | Tip : KSM 0.00123456789" + "1 | Prop index : 500776677", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 34", + "1 | Prop index : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6385,37 +6337,39 @@ { "index": 267, "name": "Democracy_Cancel_proposal", - "blob": "0d185a83100fd5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d18dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 63185110" + "1 | Prop index : 55", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 63185110", + "1 | Prop index : 55", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 268, "name": "Democracy_Cancel_proposal", - "blob": "0d1832bcf235d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d180916d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 226275084", - "2 | Tip : KSM 0.000000000987" + "1 | Prop index : 1410", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 226275084", + "1 | Prop index : 1410", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6425,18 +6379,18 @@ { "index": 269, "name": "Democracy_Cancel_proposal", - "blob": "0d185a83100fd503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d180916d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 63185110", - "2 | Tip : KSM 0.00123456789" + "1 | Prop index : 1410", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 63185110", + "1 | Prop index : 1410", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6446,18 +6400,20 @@ { "index": 270, "name": "Democracy_Cancel_proposal", - "blob": "0d1830d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0d1896fb6477d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 12", - "2 | Tip : KSM 0.000055555555" + "1 | Prop index : 500776677", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Democracy : Cancel proposal", - "1 | Prop index : 12", + "1 | Prop index : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6467,22 +6423,22 @@ { "index": 271, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe3001d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe091601d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", + "2 | Index : 1410", "3 | Approve : True" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", + "2 | Index : 1410", "3 | Approve : True", "4 | Chain : Kusama", - "5 | Nonce : 50283", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6492,24 +6448,24 @@ { "index": 272, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe32bcf23501d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe091600d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Approve : True", - "4 | Tip : KSM 0.000000000987" + "2 | Index : 1410", + "3 | Approve : False", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Approve : True", + "2 | Index : 1410", + "3 | Approve : False", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.000000000987", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6519,26 +6475,24 @@ { "index": 273, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe3000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafedc00d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", + "2 | Index : 55", "3 | Approve : False", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", + "2 | Index : 55", "3 | Approve : False", "4 | Chain : Kusama", "5 | Nonce : 1", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6548,24 +6502,26 @@ { "index": 274, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe8800d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb647701d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Approve : False", - "4 | Tip : KSM 0.00123456789" + "2 | Index : 500776677", + "3 | Approve : True", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Approve : False", + "2 | Index : 500776677", + "3 | Approve : True", "4 | Chain : Kusama", "5 | Nonce : 100", - "6 | Tip : KSM 0.00123456789", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6575,26 +6531,24 @@ { "index": 275, "name": "Council_Vote", - "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe5a83100f00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e03b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef19901d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 63185110", - "3 | Approve : False", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "2 | Index : 9852", + "3 | Approve : True", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Council : Vote", "1 | Proposal [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 63185110", - "3 | Approve : False", + "2 | Index : 9852", + "3 | Approve : True", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6604,53 +6558,57 @@ { "index": 276, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe30cc88d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb64779982dcd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", - "3 | Proposal weight bound : 51", - "4 | Length bound : 34" + "2 | Index : 500776677", + "3 | Proposal weight bound : 8358", + "4 | Length bound : 55", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 12", - "3 | Proposal weight bound : 51", - "4 | Length bound : 34", + "2 | Index : 500776677", + "3 | Proposal weight bound : 8358", + "4 | Length bound : 55", "5 | Chain : Kusama", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 50283", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 277, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe32bcf235a6acac245a83100fd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe0916a12396fb6477d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Proposal weight bound : 153824041", - "4 | Length bound : 63185110", - "5 | Tip : KSM 5.552342355555" + "2 | Index : 1410", + "3 | Proposal weight bound : 2280", + "4 | Length bound : 500776677", + "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Proposal weight bound : 153824041", - "4 | Length bound : 63185110", + "2 | Index : 1410", + "3 | Proposal weight bound : 2280", + "4 | Length bound : 500776677", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 100", + "7 | Tip : KSM 0.000055555555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6660,26 +6618,26 @@ { "index": 278, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe880f5a1f5c103ce1695a83100fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe96fb647799820916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Proposal weight bound : 29802520643379034", - "4 | Length bound : 63185110", - "5 | Tip : KSM 5.552342355555" + "2 | Index : 500776677", + "3 | Proposal weight bound : 8358", + "4 | Length bound : 1410", + "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Proposal weight bound : 29802520643379034", - "4 | Length bound : 63185110", + "2 | Index : 500776677", + "3 | Proposal weight bound : 8358", + "4 | Length bound : 1410", "5 | Chain : Kusama", - "6 | Nonce : 1", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 50283", + "7 | Tip : KSM 0.000055555555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6689,50 +6647,52 @@ { "index": 279, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe32bcf2350fda27d184bc678f32bcf235d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef1990f51c48e78ce2aca96fb6477d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Proposal weight bound : 40364981049436122", - "4 | Length bound : 226275084" + "2 | Index : 9852", + "3 | Proposal weight bound : 56905011569804369", + "4 | Length bound : 500776677", + "5 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 226275084", - "3 | Proposal weight bound : 40364981049436122", - "4 | Length bound : 226275084", + "2 | Index : 9852", + "3 | Proposal weight bound : 56905011569804369", + "4 | Length bound : 500776677", "5 | Chain : Kusama", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 0", + "7 | Tip : KSM 0.000000000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 280, "name": "Council_Close", - "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe880fda27d184bc678f30d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e04b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafef1990f19a63a17f1e1cef199d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Proposal weight bound : 40364981049436122", - "4 | Length bound : 12", + "2 | Index : 9852", + "3 | Proposal weight bound : 58232270795482649", + "4 | Length bound : 9852", "5 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Council : Close", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Index : 34", - "3 | Proposal weight bound : 40364981049436122", - "4 | Length bound : 12", + "2 | Index : 9852", + "3 | Proposal weight bound : 58232270795482649", + "4 | Length bound : 9852", "5 | Chain : Kusama", "6 | Nonce : 2339", "7 | Tip : KSM 0.000055555555", @@ -6745,28 +6705,32 @@ { "index": 281, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 282, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6778,7 +6742,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6789,7 +6753,7 @@ { "index": 283, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6801,7 +6765,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6812,12 +6776,13 @@ { "index": 284, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Council : Disapprove proposal", @@ -6825,7 +6790,8 @@ "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6835,22 +6801,20 @@ { "index": 285, "name": "Council_Disapprove_proposal", - "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0e05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Council : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6860,7 +6824,7 @@ { "index": 286, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6872,7 +6836,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -6883,20 +6847,20 @@ { "index": 287, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6906,7 +6870,7 @@ { "index": 288, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -6919,7 +6883,7 @@ "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -6931,75 +6895,85 @@ { "index": 289, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 290, "name": "Technicalcommittee_Disapprove_proposal", - "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "0f05b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe" + "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalcommittee : Disapprove proposal", "1 | Proposal hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Proposal hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 291, "name": "Phragmenelection_Remove_voter", - "blob": "1001d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Phragmenelection : Remove voter" + "0 | Phragmenelection : Remove voter", + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.000055555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 292, "name": "Phragmenelection_Remove_voter", - "blob": "1001d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 1", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7009,7 +6983,7 @@ { "index": 293, "name": "Phragmenelection_Remove_voter", - "blob": "1001d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -7018,7 +6992,7 @@ "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 50283", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", @@ -7030,16 +7004,16 @@ { "index": 294, "name": "Phragmenelection_Remove_voter", - "blob": "1001d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7049,37 +7023,35 @@ { "index": 295, "name": "Phragmenelection_Remove_voter", - "blob": "1001d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1001d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Phragmenelection : Remove voter", - "1 | Tip : KSM 0.00123456789" + "0 | Phragmenelection : Remove voter" ], "output_expert": [ "0 | Phragmenelection : Remove voter", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 296, "name": "Phragmenelection_Submit_candidacy", - "blob": "100232bcf235d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002dcd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 226275084", - "2 | Tip : KSM 0.00123456789" + "1 | Candidate count : 55", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 226275084", + "1 | Candidate count : 55", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7089,19 +7061,19 @@ { "index": 297, "name": "Phragmenelection_Submit_candidacy", - "blob": "100232bcf235d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10020916d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 226275084", - "2 | Tip : KSM 0.000000000987" + "1 | Candidate count : 1410", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 226275084", + "1 | Candidate count : 1410", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "7 | Block [2/2] : 01197a149ca93654499ea3dafe" @@ -7110,110 +7082,108 @@ { "index": 298, "name": "Phragmenelection_Submit_candidacy", - "blob": "100230d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "100296fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 12" + "1 | Candidate count : 500776677", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 12", + "1 | Candidate count : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 299, "name": "Phragmenelection_Submit_candidacy", - "blob": "100288d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002dcd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 34" + "1 | Candidate count : 55", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 34", + "1 | Candidate count : 55", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 300, "name": "Phragmenelection_Submit_candidacy", - "blob": "100230d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1002dcd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 12", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Candidate count : 55" ], "output_expert": [ "0 | Phragmenelection : Submit candidacy", - "1 | Candidate count : 12", + "1 | Candidate count : 55", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 301, "name": "Phragmenelection_Remove_member", - "blob": "1004008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Has replacement : False", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Has replacement : False" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", "2 | Has replacement : False", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 302, "name": "Phragmenelection_Remove_member", - "blob": "1004008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Has replacement : False", - "3 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Has replacement : True", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Has replacement : False", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Has replacement : True", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7223,47 +7193,45 @@ { "index": 303, "name": "Phragmenelection_Remove_member", - "blob": "1004008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Has replacement : False", - "3 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Has replacement : True" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", - "2 | Has replacement : False", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", + "2 | Has replacement : True", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 304, "name": "Phragmenelection_Remove_member", - "blob": "1004008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", "2 | Has replacement : False", - "3 | Tip : KSM 0.000055555555" + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", "2 | Has replacement : False", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7273,22 +7241,22 @@ { "index": 305, "name": "Phragmenelection_Remove_member", - "blob": "1004008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1004006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", "2 | Has replacement : True", - "3 | Tip : KSM 0.000055555555" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Remove member", - "1 | Who [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Who [2/2] : 1Z3SQRDB6", + "1 | Who [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Who [2/2] : G1ft7ngXT", "2 | Has replacement : True", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7298,41 +7266,43 @@ { "index": 306, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "100534300000d3040000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10059d1c00009d1c0000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 12340", - "2 | Num defunct : 1235" + "1 | Num voters : 7325", + "2 | Num defunct : 7325", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 12340", - "2 | Num defunct : 1235", + "1 | Num voters : 7325", + "2 | Num defunct : 7325", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 307, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "100500000000d3040000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10050000000034300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 1235", - "3 | Tip : KSM 0.000000000987" + "2 | Num defunct : 12340", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 1235", + "2 | Num defunct : 12340", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7342,43 +7312,41 @@ { "index": 308, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "100500000000f7010000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10050000000034300000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 503", - "3 | Tip : KSM 0.00123456789" + "2 | Num defunct : 12340" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 0", - "2 | Num defunct : 503", + "2 | Num defunct : 12340", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 309, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "10059d1c000000000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1005f701000000000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 7325", + "1 | Num voters : 503", "2 | Num defunct : 0", - "3 | Tip : KSM 5.552342355555" + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", - "1 | Num voters : 7325", + "1 | Num voters : 503", "2 | Num defunct : 0", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7388,20 +7356,22 @@ { "index": 310, "name": "Phragmenelection_Clean_defunct_voters", - "blob": "100534300000f7010000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "10053430000034300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 12340", - "2 | Num defunct : 503", - "3 | Tip : KSM 5.552342355555" + "2 | Num defunct : 12340", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Phragmenelection : Clean defunct voters", "1 | Num voters : 12340", - "2 | Num defunct : 503", + "2 | Num defunct : 12340", "3 | Chain : Kusama", "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7411,19 +7381,19 @@ { "index": 311, "name": "Technicalmembership_Add_member", - "blob": "11006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Who [2/2] : 2uX6ovmqC", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Who [2/2] : 2uX6ovmqC", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7434,22 +7404,20 @@ { "index": 312, "name": "Technicalmembership_Add_member", - "blob": "11005670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7459,19 +7427,19 @@ { "index": 313, "name": "Technicalmembership_Add_member", - "blob": "1100066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Who [2/2] : ZN2wsYzvW", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Who [2/2] : ZN2wsYzvW", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7482,22 +7450,20 @@ { "index": 314, "name": "Technicalmembership_Add_member", - "blob": "11005670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7507,19 +7473,19 @@ { "index": 315, "name": "Technicalmembership_Add_member", - "blob": "1100c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Add member", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7530,20 +7496,20 @@ { "index": 316, "name": "Technicalmembership_Remove_member", - "blob": "1101c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Who [2/2] : Wk42jTTrE", - "2 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Who [2/2] : Wk42jTTrE", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7553,20 +7519,22 @@ { "index": 317, "name": "Technicalmembership_Remove_member", - "blob": "11015670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7576,20 +7544,20 @@ { "index": 318, "name": "Technicalmembership_Remove_member", - "blob": "11015670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7599,17 +7567,17 @@ { "index": 319, "name": "Technicalmembership_Remove_member", - "blob": "11015670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", @@ -7622,20 +7590,20 @@ { "index": 320, "name": "Technicalmembership_Remove_member", - "blob": "1101c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Remove member", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7645,51 +7613,51 @@ { "index": 321, "name": "Technicalmembership_Swap_member", - "blob": "11026257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Remove [2/2] : 2uX6ovmqC", - "2 | Add [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Add [2/2] : zBUmsjRJA", - "3 | Tip : KSM 0.000000000987" + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Remove [2/2] : 2uX6ovmqC", - "2 | Add [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Add [2/2] : zBUmsjRJA", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 322, "name": "Technicalmembership_Swap_member", - "blob": "11022c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705474dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Remove [2/2] : 2GoCpzMtB", - "2 | Add [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Add [2/2] : 3mpD1YowH", - "3 | Tip : KSM 0.000000000987" + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Remove [2/2] : 2GoCpzMtB", - "2 | Add [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Add [2/2] : 3mpD1YowH", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7699,21 +7667,21 @@ { "index": 323, "name": "Technicalmembership_Swap_member", - "blob": "1102066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Remove [2/2] : ZN2wsYzvW", - "2 | Add [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Add [2/2] : zBUmsjRJA", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Remove [2/2] : ZN2wsYzvW", - "2 | Add [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Add [2/2] : zBUmsjRJA", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 50283", "5 | Tip : KSM 5.552342355555", @@ -7726,49 +7694,53 @@ { "index": 324, "name": "Technicalmembership_Swap_member", - "blob": "11025670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f6257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Remove [2/2] : G2gesBwNB", - "2 | Add [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Add [2/2] : 2uX6ovmqC" + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Remove [2/2] : G2gesBwNB", - "2 | Add [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Add [2/2] : 2uX6ovmqC", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 325, "name": "Technicalmembership_Swap_member", - "blob": "1102066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Remove [2/2] : ZN2wsYzvW", - "2 | Add [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Add [2/2] : nEdzjPoWQ", - "3 | Tip : KSM 0.00123456789" + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Swap member", - "1 | Remove [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Remove [2/2] : ZN2wsYzvW", - "2 | Add [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Add [2/2] : nEdzjPoWQ", + "1 | Remove [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Remove [2/2] : DyGtAWNbn", + "2 | Add [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Add [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7778,48 +7750,40 @@ { "index": 326, "name": "Technicalmembership_Reset_members", - "blob": "110320aa8423e55ad2c1ea1e6e8dc7050983bf4d7806f10510c33d85bee788d3d5db1642b86c5e81a970abf4abce88bda5e0f8af173b59ac9700daf46448fa9955a73246884f7a367e2edff83948a631852e8ef981e55f66e52f12cba731f8b653f21852500d099f23fab1320076a876bf644e106d25d226f1fb5196dfbeb33bcf560d26f2c69cee52175057ec1381f35079248c81c8c87ee3f6b6c9d1c3e22752fd0600b65c3e197e8b862a5d2119e64a3cbd8320787c4bedea67e0e015549d21f0621c0a01419ff51ce4e7adc57f51afafc6bb8407f6048cb73499fca529bbb6fc3c2286f526fdd3968f14f2a8d661c8fb19dc53aa1a7d4515f88a13cc5da1231700d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11031838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c504d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/16] : GRturKXKsnmgfbNHsNFUZDbbt3ZFE2ynMkJbQR", - "1 | Members [2/16] : EG3cvTGuz", - "1 | Members [3/16] : E5oTpwjA5gjdBL6JCjLfSzT7AV1my1dYu6TwyP", - "1 | Members [4/16] : JBFsu4UeT", - "1 | Members [5/16] : EAoMyJ94uVCqYiiSrKK9FTJP6z4KtBc4jVfcB8", - "1 | Members [6/16] : zqniT2Pb6", - "1 | Members [7/16] : ESFDyDTzpJqpJ8tkMJVdtgWZzymjZVuGdwBYhf", - "1 | Members [8/16] : fRyDn4DPt", - "1 | Members [9/16] : DTPTTEUKWpwq5cWSfbrt5VLRhpoH3NrLiv8GNf", - "1 | Members [10/16] : d4KZ3S5c6", - "1 | Members [11/16] : CbFgyoh1bUz65caCfV7eGFhr3tewwEL4im4D2v", - "1 | Members [12/16] : tEE3P38Ux", - "1 | Members [13/16] : DD5q8WcYEAvQEzXQQq2UMPYSKbxJ1KVMEJua4M", - "1 | Members [14/16] : 524hEpvNx", - "1 | Members [15/16] : DMbEgMn4gq2GN2S12f4TcD1XERCrTEAYB6Po7t", - "1 | Members [16/16] : ixVZUApBk", - "2 | Tip : KSM 5.552342355555" + "1 | Members [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "1 | Members [2/12] : cvQWPpFkm", + "1 | Members [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "1 | Members [4/12] : CQAFseSbM", + "1 | Members [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "1 | Members [6/12] : fYV5bKw79", + "1 | Members [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "1 | Members [8/12] : G9LDWNMg4", + "1 | Members [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "1 | Members [10/12] : VGQhB9Yx2", + "1 | Members [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "1 | Members [12/12] : BwJyoET7z", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/16] : GRturKXKsnmgfbNHsNFUZDbbt3ZFE2ynMkJbQR", - "1 | Members [2/16] : EG3cvTGuz", - "1 | Members [3/16] : E5oTpwjA5gjdBL6JCjLfSzT7AV1my1dYu6TwyP", - "1 | Members [4/16] : JBFsu4UeT", - "1 | Members [5/16] : EAoMyJ94uVCqYiiSrKK9FTJP6z4KtBc4jVfcB8", - "1 | Members [6/16] : zqniT2Pb6", - "1 | Members [7/16] : ESFDyDTzpJqpJ8tkMJVdtgWZzymjZVuGdwBYhf", - "1 | Members [8/16] : fRyDn4DPt", - "1 | Members [9/16] : DTPTTEUKWpwq5cWSfbrt5VLRhpoH3NrLiv8GNf", - "1 | Members [10/16] : d4KZ3S5c6", - "1 | Members [11/16] : CbFgyoh1bUz65caCfV7eGFhr3tewwEL4im4D2v", - "1 | Members [12/16] : tEE3P38Ux", - "1 | Members [13/16] : DD5q8WcYEAvQEzXQQq2UMPYSKbxJ1KVMEJua4M", - "1 | Members [14/16] : 524hEpvNx", - "1 | Members [15/16] : DMbEgMn4gq2GN2S12f4TcD1XERCrTEAYB6Po7t", - "1 | Members [16/16] : ixVZUApBk", + "1 | Members [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "1 | Members [2/12] : cvQWPpFkm", + "1 | Members [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "1 | Members [4/12] : CQAFseSbM", + "1 | Members [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "1 | Members [6/12] : fYV5bKw79", + "1 | Members [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "1 | Members [8/12] : G9LDWNMg4", + "1 | Members [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "1 | Members [10/12] : VGQhB9Yx2", + "1 | Members [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "1 | Members [12/12] : BwJyoET7z", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7829,40 +7793,46 @@ { "index": 327, "name": "Technicalmembership_Reset_members", - "blob": "11031830a66dbf8ceffea6269c49221fb0a2e50e01c90322f073a82b379f8ecf9cd377da35626db94fcd2af849348ea51d8dc9355d08608cc148808c6d85685113d3194ef3a997f758fb479f1fe4bd425cb3db57ac7b69b7f61ff9f7fe6cb8ec775579a0eb7ad531b7a856d851fe77405de70c9fba053b0063e77c47542a69713d18387c68abdc5c5f8a320906b9f7fa6bdbaca625aa571d7445b7017b37df6a56cb5690673d4708d4e9084aa21c0c015e933d104ce47ef2232c3be6be2025a12a9c64d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e272d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "1 | Members [2/12] : m3uYMdDnw", - "1 | Members [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "1 | Members [4/12] : eN42iFxdC", - "1 | Members [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "1 | Members [6/12] : E5YyvY58q", - "1 | Members [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "1 | Members [8/12] : yPTJKVj5W", - "1 | Members [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "1 | Members [10/12] : nqJHdbWqW", - "1 | Members [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "1 | Members [12/12] : t9eiJ5mQg", - "2 | Tip : KSM 5.552342355555" + "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "1 | Members [2/14] : Wdk6br5YQ", + "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "1 | Members [4/14] : BmoqLJxyA", + "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "1 | Members [6/14] : kVGQ3xjtt", + "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "1 | Members [8/14] : EjcU4JCyR", + "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "1 | Members [10/14] : KAv6rp1cu", + "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "1 | Members [12/14] : qd5iDUNuG", + "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "1 | Members [14/14] : wnihdWnXG", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "1 | Members [2/12] : m3uYMdDnw", - "1 | Members [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "1 | Members [4/12] : eN42iFxdC", - "1 | Members [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "1 | Members [6/12] : E5YyvY58q", - "1 | Members [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "1 | Members [8/12] : yPTJKVj5W", - "1 | Members [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "1 | Members [10/12] : nqJHdbWqW", - "1 | Members [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "1 | Members [12/12] : t9eiJ5mQg", + "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "1 | Members [2/14] : Wdk6br5YQ", + "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "1 | Members [4/14] : BmoqLJxyA", + "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "1 | Members [6/14] : kVGQ3xjtt", + "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "1 | Members [8/14] : EjcU4JCyR", + "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "1 | Members [10/14] : KAv6rp1cu", + "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "1 | Members [12/14] : qd5iDUNuG", + "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "1 | Members [14/14] : wnihdWnXG", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7872,39 +7842,19 @@ { "index": 328, "name": "Technicalmembership_Reset_members", - "blob": "11031830a66dbf8ceffea6269c49221fb0a2e50e01c90322f073a82b379f8ecf9cd377da35626db94fcd2af849348ea51d8dc9355d08608cc148808c6d85685113d3194ef3a997f758fb479f1fe4bd425cb3db57ac7b69b7f61ff9f7fe6cb8ec775579a0eb7ad531b7a856d851fe77405de70c9fba053b0063e77c47542a69713d18387c68abdc5c5f8a320906b9f7fa6bdbaca625aa571d7445b7017b37df6a56cb5690673d4708d4e9084aa21c0c015e933d104ce47ef2232c3be6be2025a12a9c64d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11030482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231cd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "1 | Members [2/12] : m3uYMdDnw", - "1 | Members [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "1 | Members [4/12] : eN42iFxdC", - "1 | Members [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "1 | Members [6/12] : E5YyvY58q", - "1 | Members [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "1 | Members [8/12] : yPTJKVj5W", - "1 | Members [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "1 | Members [10/12] : nqJHdbWqW", - "1 | Members [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "1 | Members [12/12] : t9eiJ5mQg", + "1 | Members [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "1 | Members [2/2] : 263hGYSem", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "1 | Members [2/12] : m3uYMdDnw", - "1 | Members [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "1 | Members [4/12] : eN42iFxdC", - "1 | Members [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "1 | Members [6/12] : E5YyvY58q", - "1 | Members [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "1 | Members [8/12] : yPTJKVj5W", - "1 | Members [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "1 | Members [10/12] : nqJHdbWqW", - "1 | Members [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "1 | Members [12/12] : t9eiJ5mQg", + "1 | Members [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "1 | Members [2/2] : 263hGYSem", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7915,22 +7865,36 @@ { "index": 329, "name": "Technicalmembership_Reset_members", - "blob": "110304ba095e54cde13bd8a44adcd1bde3bb1e66ef8af6ea5ebad75bffbdfa374a2837d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1103149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e928d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "1 | Members [2/2] : L5Frtifrn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Members [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "1 | Members [2/10] : nhmBqN68n", + "1 | Members [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "1 | Members [4/10] : auzMC5Tst", + "1 | Members [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "1 | Members [6/10] : 2opmno4dh", + "1 | Members [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "1 | Members [8/10] : 4Bw4jugnm", + "1 | Members [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "1 | Members [10/10] : tKP64yEmd", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "1 | Members [2/2] : L5Frtifrn", + "1 | Members [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "1 | Members [2/10] : nhmBqN68n", + "1 | Members [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "1 | Members [4/10] : auzMC5Tst", + "1 | Members [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "1 | Members [6/10] : 2opmno4dh", + "1 | Members [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "1 | Members [8/10] : 4Bw4jugnm", + "1 | Members [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "1 | Members [10/10] : tKP64yEmd", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -7940,39 +7904,43 @@ { "index": 330, "name": "Technicalmembership_Reset_members", - "blob": "1103183a829c163b1e6b1e6dfd0314cc7b0f52af95c5b229818ee21798ccf5eaf2c16a24c56842c62d3394343ec1df35fe93011c6eb2a7d7df2c6fa034f10c68147867d08ba449fac4a5f4ffd8fccc7a9ac498d9641e5529c95d2f1b91f3273f6f0e4b925c18828db0f797fff64435f657019b7b8c295a2bfb315de911ec8623042a2dfcc7416f272c296337b99414959ff213f220522b85f649fec353bf9cb769606c7c4b493a8cef1f62f050f1bc325876c0f5ef17b3572ec5f2a05d7ef66782272dd5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e272d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "1 | Members [2/12] : BgjDiuBYC", - "1 | Members [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "1 | Members [4/12] : 87e3n88MK", - "1 | Members [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "1 | Members [6/12] : TXXUkCQow", - "1 | Members [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "1 | Members [8/12] : vcSiQLjiJ", - "1 | Members [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "1 | Members [10/12] : GvHZw4YER", - "1 | Members [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "1 | Members [12/12] : YRYebRK3W", + "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "1 | Members [2/14] : Wdk6br5YQ", + "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "1 | Members [4/14] : BmoqLJxyA", + "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "1 | Members [6/14] : kVGQ3xjtt", + "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "1 | Members [8/14] : EjcU4JCyR", + "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "1 | Members [10/14] : KAv6rp1cu", + "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "1 | Members [12/14] : qd5iDUNuG", + "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "1 | Members [14/14] : wnihdWnXG", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Technicalmembership : Reset members", - "1 | Members [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "1 | Members [2/12] : BgjDiuBYC", - "1 | Members [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "1 | Members [4/12] : 87e3n88MK", - "1 | Members [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "1 | Members [6/12] : TXXUkCQow", - "1 | Members [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "1 | Members [8/12] : vcSiQLjiJ", - "1 | Members [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "1 | Members [10/12] : GvHZw4YER", - "1 | Members [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "1 | Members [12/12] : YRYebRK3W", + "1 | Members [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "1 | Members [2/14] : Wdk6br5YQ", + "1 | Members [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "1 | Members [4/14] : BmoqLJxyA", + "1 | Members [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "1 | Members [6/14] : kVGQ3xjtt", + "1 | Members [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "1 | Members [8/14] : EjcU4JCyR", + "1 | Members [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "1 | Members [10/14] : KAv6rp1cu", + "1 | Members [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "1 | Members [12/14] : qd5iDUNuG", + "1 | Members [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "1 | Members [14/14] : wnihdWnXG", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -7983,20 +7951,20 @@ { "index": 331, "name": "Technicalmembership_Change_key", - "blob": "11046257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC", - "2 | Tip : KSM 0.000055555555" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8006,22 +7974,20 @@ { "index": 332, "name": "Technicalmembership_Change_key", - "blob": "11045670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | New [2/2] : G2gesBwNB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | New [2/2] : G2gesBwNB", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8031,16 +7997,16 @@ { "index": 333, "name": "Technicalmembership_Change_key", - "blob": "11046257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | New [2/2] : 2uX6ovmqC", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Era Phase : 61", @@ -8052,22 +8018,20 @@ { "index": 334, "name": "Technicalmembership_Change_key", - "blob": "110474dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | New [2/2] : 3mpD1YowH", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8077,20 +8041,22 @@ { "index": 335, "name": "Technicalmembership_Change_key", - "blob": "11042c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | New [2/2] : 2GoCpzMtB", - "2 | Tip : KSM 0.000055555555" + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Change key", - "1 | New [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | New [2/2] : 2GoCpzMtB", + "1 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | New [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8100,43 +8066,41 @@ { "index": 336, "name": "Technicalmembership_Set_prime", - "blob": "11055670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 337, "name": "Technicalmembership_Set_prime", - "blob": "1105c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8146,20 +8110,20 @@ { "index": 338, "name": "Technicalmembership_Set_prime", - "blob": "1105421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Who [2/2] : 1me9MXvVn", - "2 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Who [2/2] : 1me9MXvVn", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8169,20 +8133,22 @@ { "index": 339, "name": "Technicalmembership_Set_prime", - "blob": "1105c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8192,20 +8158,20 @@ { "index": 340, "name": "Technicalmembership_Set_prime", - "blob": "1105c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "11056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Set prime", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8215,50 +8181,56 @@ { "index": 341, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Clear prime" + "0 | Technicalmembership : Clear prime", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 342, "name": "Technicalmembership_Clear_prime", - "blob": "1106d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Technicalmembership : Clear prime" + "0 | Technicalmembership : Clear prime", + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Tip : KSM 5.552342355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 343, "name": "Technicalmembership_Clear_prime", - "blob": "1106d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8268,16 +8240,18 @@ { "index": 344, "name": "Technicalmembership_Clear_prime", - "blob": "1106d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 1", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8287,16 +8261,18 @@ { "index": 345, "name": "Technicalmembership_Clear_prime", - "blob": "1106d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1106d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Technicalmembership : Clear prime", - "1 | Tip : KSM 0.000000000987" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Technicalmembership : Clear prime", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8306,22 +8282,22 @@ { "index": 346, "name": "Treasury_Propose_spend", - "blob": "12000b63ce64c10c05008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 5.552342355555", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 5.552342355555" + "1 | Amount : KSM 0.000000000987", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 5.552342355555", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "1 | Amount : KSM 0.000000000987", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8331,22 +8307,22 @@ { "index": 347, "name": "Treasury_Propose_spend", - "blob": "12000b63ce64c10c05008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 5.552342355555", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 0.00123456789" + "1 | Amount : KSM 0.000000000987", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 5.552342355555", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "1 | Amount : KSM 0.000000000987", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8356,22 +8332,22 @@ { "index": 348, "name": "Treasury_Propose_spend", - "blob": "12006d0f008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12006d0f006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 0.000000000987" + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Propose spend", "1 | Amount : KSM 0.000000000987", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8381,22 +8357,24 @@ { "index": 349, "name": "Treasury_Propose_spend", - "blob": "120000008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120033158139ae28a3dfaac5fe1560a5e9e05c006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.0", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 0.00123456789" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.0", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8406,41 +8384,45 @@ { "index": 350, "name": "Treasury_Propose_spend", - "blob": "120003d2029649008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120033158139ae28a3dfaac5fe1560a5e9e05c006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.00123456789", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6" + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Treasury : Propose spend", - "1 | Amount : KSM 0.00123456789", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 351, "name": "Treasury_Reject_proposal", - "blob": "12015a83100fd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201dcd503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 63185110", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 55", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 63185110", + "1 | Proposal id : 55", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8450,39 +8432,37 @@ { "index": 352, "name": "Treasury_Reject_proposal", - "blob": "120132bcf235d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120196fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 226275084", - "2 | Tip : KSM 0.000000000987" + "1 | Proposal id : 500776677" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 226275084", + "1 | Proposal id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 353, "name": "Treasury_Reject_proposal", - "blob": "120188d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201f199d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 34", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 9852", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 34", + "1 | Proposal id : 9852", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8492,16 +8472,16 @@ { "index": 354, "name": "Treasury_Reject_proposal", - "blob": "120132bcf235d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201f199d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 226275084" + "1 | Proposal id : 9852" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 226275084", + "1 | Proposal id : 9852", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8511,18 +8491,20 @@ { "index": 355, "name": "Treasury_Reject_proposal", - "blob": "12015a83100fd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1201dcd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 63185110", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 55", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Treasury : Reject proposal", - "1 | Proposal id : 63185110", + "1 | Proposal id : 55", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8532,16 +8514,16 @@ { "index": 356, "name": "Treasury_Approve_proposal", - "blob": "120230d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "12020916d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 12" + "1 | Proposal id : 1410" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 12", + "1 | Proposal id : 1410", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8551,18 +8533,18 @@ { "index": 357, "name": "Treasury_Approve_proposal", - "blob": "12025a83100fd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1202dcd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 63185110", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 55", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 63185110", + "1 | Proposal id : 55", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8572,57 +8554,57 @@ { "index": 358, "name": "Treasury_Approve_proposal", - "blob": "120232bcf235d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "120296fb6477d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 226275084", - "2 | Tip : KSM 5.552342355555" + "1 | Proposal id : 500776677" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 226275084", + "1 | Proposal id : 500776677", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 359, "name": "Treasury_Approve_proposal", - "blob": "120230d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1202dcd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 12" + "1 | Proposal id : 55", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 12", + "1 | Proposal id : 55", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 360, "name": "Treasury_Approve_proposal", - "blob": "12025a83100fd503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1202f199d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 63185110", + "1 | Proposal id : 9852", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Treasury : Approve proposal", - "1 | Proposal id : 63185110", + "1 | Proposal id : 9852", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -8633,26 +8615,26 @@ { "index": 361, "name": "Claims_Claim", - "blob": "13005670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f680762c60c9d573cdeb99ee4468af6269773b308419eeb64bb828b992488d1a4f0de6baad7ea3018f8bc98359a9ea250e3695bb2fbd2f7e16db39987de863bcfa5d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec2d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Dest [2/2] : G2gesBwNB", - "2 | Ethereum signature [1/4] : 680762c60c9d573cdeb99ee4468af6269773b3", - "2 | Ethereum signature [2/4] : 08419eeb64bb828b992488d1a4f0de6baad7ea", - "2 | Ethereum signature [3/4] : 3018f8bc98359a9ea250e3695bb2fbd2f7e16d", - "2 | Ethereum signature [4/4] : b39987de863bcfa5", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Dest [2/2] : G2gesBwNB", - "2 | Ethereum signature [1/4] : 680762c60c9d573cdeb99ee4468af6269773b3", - "2 | Ethereum signature [2/4] : 08419eeb64bb828b992488d1a4f0de6baad7ea", - "2 | Ethereum signature [3/4] : 3018f8bc98359a9ea250e3695bb2fbd2f7e16d", - "2 | Ethereum signature [4/4] : b39987de863bcfa5", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", "3 | Chain : Kusama", "4 | Nonce : 100", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -8666,57 +8648,61 @@ { "index": 362, "name": "Claims_Claim", - "blob": "1300c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43b228bf9523a63928cfd342c4222484930d9f647eb43f97cb68e31ac9051533606ce46e3ce096ffe08db767d15bd9446bf1da0b7f33dbb92c7c0f9ba926a6e08be7d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd352409b3b7b1b3aa04e2c570183557a41332083bac99b19cdb44e3342eac56a791377f34b31f3c68cb7ad977f4536025f970c251c8719db98e6427b91cecce665d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Dest [2/2] : nEdzjPoWQ", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", + "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", + "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", + "2 | Ethereum signature [4/4] : e6427b91cecce665", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Dest [2/2] : nEdzjPoWQ", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", + "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", + "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", + "2 | Ethereum signature [4/4] : e6427b91cecce665", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 363, "name": "Claims_Claim", - "blob": "13006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166fcda702703c2558a35971ab25baee8ad2886ec0431ea5f931793cfcf813d0e7dddcbda1735384946b93898bb0ded29c0595dc4cb21cb5bfd1f3668e1ce76518601d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f77d19ee138a35fe76fa98ea72909966acb4e55ea55c4a78ccb734509fca5c64a12e114ef7a0e87ffc8ed62703356c049c9615310deaf4a30a3a659e9bccdd4a203d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : fcda702703c2558a35971ab25baee8ad2886ec", - "2 | Ethereum signature [2/4] : 0431ea5f931793cfcf813d0e7dddcbda173538", - "2 | Ethereum signature [3/4] : 4946b93898bb0ded29c0595dc4cb21cb5bfd1f", - "2 | Ethereum signature [4/4] : 3668e1ce76518601", - "3 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", + "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", + "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", + "2 | Ethereum signature [4/4] : a659e9bccdd4a203", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : fcda702703c2558a35971ab25baee8ad2886ec", - "2 | Ethereum signature [2/4] : 0431ea5f931793cfcf813d0e7dddcbda173538", - "2 | Ethereum signature [3/4] : 4946b93898bb0ded29c0595dc4cb21cb5bfd1f", - "2 | Ethereum signature [4/4] : 3668e1ce76518601", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", + "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", + "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", + "2 | Ethereum signature [4/4] : a659e9bccdd4a203", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8726,54 +8712,56 @@ { "index": 364, "name": "Claims_Claim", - "blob": "1300c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b84e7928877c4f0af4d3be953e28b0004c9e391a7cbdfc0be38e05b04b40a012d5d62314f542378a4aa9029c8434508d64802ff8b563ab3b494aa746e3158ca5828d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f77d19ee138a35fe76fa98ea72909966acb4e55ea55c4a78ccb734509fca5c64a12e114ef7a0e87ffc8ed62703356c049c9615310deaf4a30a3a659e9bccdd4a203d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dest [2/2] : Wk42jTTrE", - "2 | Ethereum signature [1/4] : 84e7928877c4f0af4d3be953e28b0004c9e391", - "2 | Ethereum signature [2/4] : a7cbdfc0be38e05b04b40a012d5d62314f5423", - "2 | Ethereum signature [3/4] : 78a4aa9029c8434508d64802ff8b563ab3b494", - "2 | Ethereum signature [4/4] : aa746e3158ca5828" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", + "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", + "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", + "2 | Ethereum signature [4/4] : a659e9bccdd4a203", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dest [2/2] : Wk42jTTrE", - "2 | Ethereum signature [1/4] : 84e7928877c4f0af4d3be953e28b0004c9e391", - "2 | Ethereum signature [2/4] : a7cbdfc0be38e05b04b40a012d5d62314f5423", - "2 | Ethereum signature [3/4] : 78a4aa9029c8434508d64802ff8b563ab3b494", - "2 | Ethereum signature [4/4] : aa746e3158ca5828", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 77d19ee138a35fe76fa98ea72909966acb4e55", + "2 | Ethereum signature [2/4] : ea55c4a78ccb734509fca5c64a12e114ef7a0e", + "2 | Ethereum signature [3/4] : 87ffc8ed62703356c049c9615310deaf4a30a3", + "2 | Ethereum signature [4/4] : a659e9bccdd4a203", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 365, "name": "Claims_Claim", - "blob": "13006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166b228bf9523a63928cfd342c4222484930d9f647eb43f97cb68e31ac9051533606ce46e3ce096ffe08db767d15bd9446bf1da0b7f33dbb92c7c0f9ba926a6e08be7d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec2d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Claims : Claim", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", "3 | Chain : Kusama", "4 | Nonce : 1", "5 | Tip : KSM 0.000000000987", @@ -8786,79 +8774,69 @@ { "index": 366, "name": "Claims_Claim_attest", - "blob": "1302c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bb228bf9523a63928cfd342c4222484930d9f647eb43f97cb68e31ac9051533606ce46e3ce096ffe08db767d15bd9446bf1da0b7f33dbb92c7c0f9ba926a6e08be780c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec201013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dest [2/2] : Wk42jTTrE", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7", - "3 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Statement [2/2] : d3c2213811916ffe6b767ec708", - "4 | Tip : KSM 0.00123456789" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "3 | Statement [4/4] : 29e6b2f9890d9f" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dest [2/2] : Wk42jTTrE", - "2 | Ethereum signature [1/4] : b228bf9523a63928cfd342c4222484930d9f64", - "2 | Ethereum signature [2/4] : 7eb43f97cb68e31ac9051533606ce46e3ce096", - "2 | Ethereum signature [3/4] : ffe08db767d15bd9446bf1da0b7f33dbb92c7c", - "2 | Ethereum signature [4/4] : 0f9ba926a6e08be7", - "3 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Statement [2/2] : d3c2213811916ffe6b767ec708", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "3 | Statement [4/4] : 29e6b2f9890d9f", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 367, "name": "Claims_Claim_attest", - "blob": "13026257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166680762c60c9d573cdeb99ee4468af6269773b308419eeb64bb828b992488d1a4f0de6baad7ea3018f8bc98359a9ea250e3695bb2fbd2f7e16db39987de863bcfa5010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd352409b3b7b1b3aa04e2c570183557a41332083bac99b19cdb44e3342eac56a791377f34b31f3c68cb7ad977f4536025f970c251c8719db98e6427b91cecce66580c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : 680762c60c9d573cdeb99ee4468af6269773b3", - "2 | Ethereum signature [2/4] : 08419eeb64bb828b992488d1a4f0de6baad7ea", - "2 | Ethereum signature [3/4] : 3018f8bc98359a9ea250e3695bb2fbd2f7e16d", - "2 | Ethereum signature [4/4] : b39987de863bcfa5", - "3 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "3 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "3 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "3 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "3 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "3 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "3 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", + "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", + "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", + "2 | Ethereum signature [4/4] : e6427b91cecce665", + "3 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "3 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Dest [2/2] : 2uX6ovmqC", - "2 | Ethereum signature [1/4] : 680762c60c9d573cdeb99ee4468af6269773b3", - "2 | Ethereum signature [2/4] : 08419eeb64bb828b992488d1a4f0de6baad7ea", - "2 | Ethereum signature [3/4] : 3018f8bc98359a9ea250e3695bb2fbd2f7e16d", - "2 | Ethereum signature [4/4] : b39987de863bcfa5", - "3 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "3 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "3 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "3 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "3 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "3 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "3 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d352409b3b7b1b3aa04e2c570183557a413320", + "2 | Ethereum signature [2/4] : 83bac99b19cdb44e3342eac56a791377f34b31", + "2 | Ethereum signature [3/4] : f3c68cb7ad977f4536025f970c251c8719db98", + "2 | Ethereum signature [4/4] : e6427b91cecce665", + "3 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "3 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8868,36 +8846,42 @@ { "index": 368, "name": "Claims_Claim_attest", - "blob": "1302c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43a664271fae25dc784440c1a7b07ffa323016f17fe20debc032dc56f0de932e24a0e1c084902caddbf1289d9b8cf12cb165408a1228a0d79dbba2e784ee1a50dcc901010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fb60c261eb8b0154e58d0953cddfe53058354050e07ae01923e80ed306f825e24b379bce33bdf44b17ae48b1585e531e9d94576689f719ddc46634796c1108a710f0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Dest [2/2] : nEdzjPoWQ", - "2 | Ethereum signature [1/4] : a664271fae25dc784440c1a7b07ffa323016f1", - "2 | Ethereum signature [2/4] : 7fe20debc032dc56f0de932e24a0e1c084902c", - "2 | Ethereum signature [3/4] : addbf1289d9b8cf12cb165408a1228a0d79dbb", - "2 | Ethereum signature [4/4] : a2e784ee1a50dcc9", - "3 | Statement [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "3 | Statement [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "3 | Statement [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "3 | Statement [4/4] : 6e1755de324791", - "4 | Tip : KSM 0.000055555555" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : b60c261eb8b0154e58d0953cddfe5305835405", + "2 | Ethereum signature [2/4] : 0e07ae01923e80ed306f825e24b379bce33bdf", + "2 | Ethereum signature [3/4] : 44b17ae48b1585e531e9d94576689f719ddc46", + "2 | Ethereum signature [4/4] : 634796c1108a710f", + "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Dest [2/2] : nEdzjPoWQ", - "2 | Ethereum signature [1/4] : a664271fae25dc784440c1a7b07ffa323016f1", - "2 | Ethereum signature [2/4] : 7fe20debc032dc56f0de932e24a0e1c084902c", - "2 | Ethereum signature [3/4] : addbf1289d9b8cf12cb165408a1228a0d79dbb", - "2 | Ethereum signature [4/4] : a2e784ee1a50dcc9", - "3 | Statement [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "3 | Statement [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "3 | Statement [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "3 | Statement [4/4] : 6e1755de324791", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : b60c261eb8b0154e58d0953cddfe5305835405", + "2 | Ethereum signature [2/4] : 0e07ae01923e80ed306f825e24b379bce33bdf", + "2 | Ethereum signature [3/4] : 44b17ae48b1585e531e9d94576689f719ddc46", + "2 | Ethereum signature [4/4] : 634796c1108a710f", + "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 2339", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8907,79 +8891,79 @@ { "index": 369, "name": "Claims_Claim_attest", - "blob": "13022c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705484e7928877c4f0af4d3be953e28b0004c9e391a7cbdfc0be38e05b04b40a012d5d62314f542378a4aa9029c8434508d64802ff8b563ab3b494aa746e3158ca582880c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd09e927f79c27e5e0c835df76836296b00c1e07867eca7c5d1d639002465946baf8974f8c0ea66d4e9031e30cc3827a0a8ef5f6f5054fe9c86823e14b001adf8a601013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Dest [2/2] : 2GoCpzMtB", - "2 | Ethereum signature [1/4] : 84e7928877c4f0af4d3be953e28b0004c9e391", - "2 | Ethereum signature [2/4] : a7cbdfc0be38e05b04b40a012d5d62314f5423", - "2 | Ethereum signature [3/4] : 78a4aa9029c8434508d64802ff8b563ab3b494", - "2 | Ethereum signature [4/4] : aa746e3158ca5828", - "3 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Statement [2/2] : d3c2213811916ffe6b767ec708", - "4 | Tip : KSM 0.000000000987" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d09e927f79c27e5e0c835df76836296b00c1e0", + "2 | Ethereum signature [2/4] : 7867eca7c5d1d639002465946baf8974f8c0ea", + "2 | Ethereum signature [3/4] : 66d4e9031e30cc3827a0a8ef5f6f5054fe9c86", + "2 | Ethereum signature [4/4] : 823e14b001adf8a6", + "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "3 | Statement [4/4] : 29e6b2f9890d9f" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Dest [2/2] : 2GoCpzMtB", - "2 | Ethereum signature [1/4] : 84e7928877c4f0af4d3be953e28b0004c9e391", - "2 | Ethereum signature [2/4] : a7cbdfc0be38e05b04b40a012d5d62314f5423", - "2 | Ethereum signature [3/4] : 78a4aa9029c8434508d64802ff8b563ab3b494", - "2 | Ethereum signature [4/4] : aa746e3158ca5828", - "3 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Statement [2/2] : d3c2213811916ffe6b767ec708", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : d09e927f79c27e5e0c835df76836296b00c1e0", + "2 | Ethereum signature [2/4] : 7867eca7c5d1d639002465946baf8974f8c0ea", + "2 | Ethereum signature [3/4] : 66d4e9031e30cc3827a0a8ef5f6f5054fe9c86", + "2 | Ethereum signature [4/4] : 823e14b001adf8a6", + "3 | Statement [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "3 | Statement [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "3 | Statement [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "3 | Statement [4/4] : 29e6b2f9890d9f", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 370, "name": "Claims_Claim_attest", - "blob": "1302066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715cab1310e03c33dad968ecd41989482853b0a1db0c2a718b0d7b3878fa9c02a26ea8784b8ecf773ed299cb4c5cadc61a4f382471cd59b2948e8a5f5e1e396c6ce79010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f988afba3d62f097a37cae67fa9488ef85d680108cdeed9c7f96c3b6e6128ec37e2b71c57fa7158e3f175fd0fddacf60c95c081f348a729f203cd8ddff799088ec20102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dest [2/2] : ZN2wsYzvW", - "2 | Ethereum signature [1/4] : cab1310e03c33dad968ecd41989482853b0a1d", - "2 | Ethereum signature [2/4] : b0c2a718b0d7b3878fa9c02a26ea8784b8ecf7", - "2 | Ethereum signature [3/4] : 73ed299cb4c5cadc61a4f382471cd59b2948e8", - "2 | Ethereum signature [4/4] : a5f5e1e396c6ce79", - "3 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "3 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "3 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "3 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "3 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "3 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "3 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Claim attest", - "1 | Dest [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dest [2/2] : ZN2wsYzvW", - "2 | Ethereum signature [1/4] : cab1310e03c33dad968ecd41989482853b0a1d", - "2 | Ethereum signature [2/4] : b0c2a718b0d7b3878fa9c02a26ea8784b8ecf7", - "2 | Ethereum signature [3/4] : 73ed299cb4c5cadc61a4f382471cd59b2948e8", - "2 | Ethereum signature [4/4] : a5f5e1e396c6ce79", - "3 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "3 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "3 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "3 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "3 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "3 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "3 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Dest [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dest [2/2] : DyGtAWNbn", + "2 | Ethereum signature [1/4] : 988afba3d62f097a37cae67fa9488ef85d6801", + "2 | Ethereum signature [2/4] : 08cdeed9c7f96c3b6e6128ec37e2b71c57fa71", + "2 | Ethereum signature [3/4] : 58e3f175fd0fddacf60c95c081f348a729f203", + "2 | Ethereum signature [4/4] : cd8ddff799088ec2", + "3 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "3 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "3 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "3 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "3 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "3 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "3 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -8989,20 +8973,22 @@ { "index": 371, "name": "Claims_Attest", - "blob": "1303800c406e8c3b4f44d619dada7f3025b1c70458460c9e974225420cfc774132f6f4d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130380b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "1 | Statement [2/2] : 0c9e974225420cfc774132f6f4", - "2 | Tip : KSM 0.000000000987" + "1 | Statement [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Statement [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "1 | Statement [2/2] : 0c9e974225420cfc774132f6f4", + "1 | Statement [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Statement [2/2] : 54c8c31cf7ef8c895cc744c6f5", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9012,26 +8998,24 @@ { "index": 372, "name": "Claims_Attest", - "blob": "130301010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1303010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Statement [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Statement [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Statement [4/4] : 6e1755de324791", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Statement [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Statement [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Statement [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Statement [4/4] : 683807d2d3ef09", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Statement [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Statement [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Statement [4/4] : 6e1755de324791", + "1 | Statement [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Statement [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Statement [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Statement [4/4] : 683807d2d3ef09", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9041,30 +9025,32 @@ { "index": 373, "name": "Claims_Attest", - "blob": "13030102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "13030102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Statement [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Statement [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Statement [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Statement [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Statement [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Statement [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Tip : KSM 5.552342355555" + "1 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Statement [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Statement [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Statement [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Statement [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Statement [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Statement [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Statement [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Statement [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Statement [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Statement [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Statement [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Statement [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Statement [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9074,51 +9060,53 @@ { "index": 374, "name": "Claims_Attest", - "blob": "130380c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130301028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Statement [2/2] : d3c2213811916ffe6b767ec708" + "1 | Statement [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Statement [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Statement [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Statement [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Statement [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Statement [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Statement [7/7] : 981e2df7f997de23b266e33ef909", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Statement [2/2] : d3c2213811916ffe6b767ec708", + "1 | Statement [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "1 | Statement [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "1 | Statement [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "1 | Statement [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "1 | Statement [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "1 | Statement [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "1 | Statement [7/7] : 981e2df7f997de23b266e33ef909", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 375, "name": "Claims_Attest", - "blob": "1303010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130380c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", - "2 | Tip : KSM 0.00123456789" + "1 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Claims : Attest", - "1 | Statement [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Statement [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Statement [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Statement [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Statement [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Statement [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Statement [7/7] : 04dca258dce7091bfcfd667a47d7", + "1 | Statement [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Statement [2/2] : 57257aca85a53c1f005b0f70f4", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9128,28 +9116,28 @@ { "index": 376, "name": "Claims_Move_claim", - "blob": "1304c2f6488550107d99d4ebd69d214d47283ac432644ef03fe2a6fe69001d9058f35f80ad0d04aa3e6701c01df8bd36b7371b22118b24239866d650f054f694cc6c61e129b063125df82bd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304dd5acebaa66e8678ecc60eb5bee5db93df89de78a55d8d438e000120c5b8b0efb19c2539138b52a701225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "1 | Old [2/2] : 64", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", - "4 | Tip : KSM 0.000000000987" + "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "1 | Old [2/2] : 78", + "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "2 | New [2/2] : a7", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "1 | Old [2/2] : 64", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", + "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "1 | Old [2/2] : 78", + "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "2 | New [2/2] : a7", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 0", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9159,28 +9147,28 @@ { "index": 377, "name": "Claims_Move_claim", - "blob": "13042ed9c7138fdc9efefa4a05f48a17ae5ea98b2ea82ed9c7138fdc9efefa4a05f48a17ae5ea98b2ea801c847b792fec400a696eb7ff82619bef2a8e45947de993770da2c3d91e8ab8b65d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130409ae2ea7bab14903772cf2a308f2b5794ef08d60dd5acebaa66e8678ecc60eb5bee5db93df89de7801a446fcfed44ca42415bae3a342a6997f52ce5ffda832b748d41dd5e12b9b3351d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "2 | New [2/2] : a8", - "3 | Maybe preclaim [1/2] : H6vQ6zq5zDbzXx9AtUmXC2MZ7F6fakwMkNTxPL", - "3 | Maybe preclaim [2/2] : 9LNHDNS7Z", - "4 | Tip : KSM 0.00123456789" + "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "1 | Old [2/2] : 60", + "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "2 | New [2/2] : 78", + "3 | Maybe preclaim [1/2] : GHiTZeGA2bgPzHbabRzwyfXZJUFZDhAtZ9hqDG", + "3 | Maybe preclaim [2/2] : bfGsLzMe2", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "2 | New [2/2] : a8", - "3 | Maybe preclaim [1/2] : H6vQ6zq5zDbzXx9AtUmXC2MZ7F6fakwMkNTxPL", - "3 | Maybe preclaim [2/2] : 9LNHDNS7Z", + "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "1 | Old [2/2] : 60", + "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "2 | New [2/2] : 78", + "3 | Maybe preclaim [1/2] : GHiTZeGA2bgPzHbabRzwyfXZJUFZDhAtZ9hqDG", + "3 | Maybe preclaim [2/2] : bfGsLzMe2", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.00123456789", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9190,28 +9178,30 @@ { "index": 378, "name": "Claims_Move_claim", - "blob": "13042ed9c7138fdc9efefa4a05f48a17ae5ea98b2ea84ef03fe2a6fe69001d9058f35f80ad0d04aa3e6701c01df8bd36b7371b22118b24239866d650f054f694cc6c61e129b063125df82bd5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304a55d8d438e000120c5b8b0efb19c2539138b52a709ae2ea7bab14903772cf2a308f2b5794ef08d6001225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", - "4 | Tip : KSM 0.00123456789" + "1 | Old [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "1 | Old [2/2] : a7", + "2 | New [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "2 | New [2/2] : 60", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", + "1 | Old [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "1 | Old [2/2] : a7", + "2 | New [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "2 | New [2/2] : 60", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", "4 | Chain : Kusama", "5 | Nonce : 1", - "6 | Tip : KSM 0.00123456789", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9221,56 +9211,54 @@ { "index": 379, "name": "Claims_Move_claim", - "blob": "1304c2f6488550107d99d4ebd69d214d47283ac432644ef03fe2a6fe69001d9058f35f80ad0d04aa3e6701f078073f3b2697c426d48af26833096ea9615afef65578092bb369b242d3d347d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "130409ae2ea7bab14903772cf2a308f2b5794ef08d60dd5acebaa66e8678ecc60eb5bee5db93df89de780130ad37ba0695f10977db3488627adc44e4921e0cd764331b7fa5fefa7f1bf523d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "1 | Old [2/2] : 64", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : J1cfaaNd9M7AMSjUZn5v657nryQN4kkby4j3gk", - "3 | Maybe preclaim [2/2] : typ7eYBzy", - "4 | Tip : KSM 0.000000000987" + "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "1 | Old [2/2] : 60", + "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "2 | New [2/2] : 78", + "3 | Maybe preclaim [1/2] : Dg9GmT8jfnsCYojkqPE3KN6r5d6tRk8NB2G9bP", + "3 | Maybe preclaim [2/2] : 3f84yWCiv" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "1 | Old [2/2] : 64", - "2 | New [1/2] : 4ef03fe2a6fe69001d9058f35f80ad0d04aa3e", - "2 | New [2/2] : 67", - "3 | Maybe preclaim [1/2] : J1cfaaNd9M7AMSjUZn5v657nryQN4kkby4j3gk", - "3 | Maybe preclaim [2/2] : typ7eYBzy", + "1 | Old [1/2] : 09ae2ea7bab14903772cf2a308f2b5794ef08d", + "1 | Old [2/2] : 60", + "2 | New [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "2 | New [2/2] : 78", + "3 | Maybe preclaim [1/2] : Dg9GmT8jfnsCYojkqPE3KN6r5d6tRk8NB2G9bP", + "3 | Maybe preclaim [2/2] : 3f84yWCiv", "4 | Chain : Kusama", "5 | Nonce : 100", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 380, "name": "Claims_Move_claim", - "blob": "13042ed9c7138fdc9efefa4a05f48a17ae5ea98b2ea8c2f6488550107d99d4ebd69d214d47283ac4326401c01df8bd36b7371b22118b24239866d650f054f694cc6c61e129b063125df82bd5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1304dd5acebaa66e8678ecc60eb5bee5db93df89de78a55d8d438e000120c5b8b0efb19c2539138b52a701225fb7a264452524b26ac8c3ad9094308ef5e00c24de3909a2516c351500cb43d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "2 | New [2/2] : 64", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", + "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "1 | Old [2/2] : 78", + "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "2 | New [2/2] : a7", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Claims : Move claim", - "1 | Old [1/2] : 2ed9c7138fdc9efefa4a05f48a17ae5ea98b2e", - "1 | Old [2/2] : a8", - "2 | New [1/2] : c2f6488550107d99d4ebd69d214d47283ac432", - "2 | New [2/2] : 64", - "3 | Maybe preclaim [1/2] : GvDcdQ4LbSi1Epp7NQLqd6XtHjNMmf3CX8fniB", - "3 | Maybe preclaim [2/2] : EtcYZP7XG", + "1 | Old [1/2] : dd5acebaa66e8678ecc60eb5bee5db93df89de", + "1 | Old [2/2] : 78", + "2 | New [1/2] : a55d8d438e000120c5b8b0efb19c2539138b52", + "2 | New [2/2] : a7", + "3 | Maybe preclaim [1/2] : DMPaasBVqGhhUAdFUZ6dCSYj3eQQkb4NT4Qf1u", + "3 | Maybe preclaim [2/2] : jyqcvHn8F", "4 | Chain : Kusama", "5 | Nonce : 2339", "6 | Tip : KSM 0.000000000987", @@ -9283,24 +9271,22 @@ { "index": 381, "name": "Utility_Batch", - "blob": "18000800002c000000000058000000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18000400002c000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", - "2 | Tip : KSM 0.000055555555" + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9310,13 +9296,14 @@ { "index": 382, "name": "Utility_Batch", - "blob": "18000800002c000000000058000000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18000800002c000000000058000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", "1 | Calls [1/4] : Fill block", "1 | Calls [2/4] : 0.0000044%", "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%" + "1 | Calls [4/4] : 0.0000088%", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Utility : Batch", @@ -9325,59 +9312,18 @@ "1 | Calls [3/4] : Fill block", "1 | Calls [4/4] : 0.0000088%", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 383, "name": "Utility_Batch", - "blob": "18000400002c000000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%", - "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 384, - "name": "Utility_Batch", - "blob": "18000400002c000000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 385, - "name": "Utility_Batch", - "blob": "18001000002c0000000000580000000000840000000000b0000000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18001000002c0000000000580000000000840000000000b0000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch", "1 | Calls [1/8] : Fill block", @@ -9410,55 +9356,55 @@ ] }, { - "index": 386, - "name": "Utility_Batch_all", - "blob": "18020400002c000000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 384, + "name": "Utility_Batch", + "blob": "18000800002c000000000058000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%" + "0 | Utility : Batch", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%", + "0 | Utility : Batch", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 387, - "name": "Utility_Batch_all", - "blob": "18021000002c0000000000580000000000840000000000b0000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 385, + "name": "Utility_Batch", + "blob": "18000800002c000000000058000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Fill block", - "1 | Calls [2/8] : 0.0000044%", - "1 | Calls [3/8] : Fill block", - "1 | Calls [4/8] : 0.0000088%", - "1 | Calls [5/8] : Fill block", - "1 | Calls [6/8] : 0.0000132%", - "1 | Calls [7/8] : Fill block", - "1 | Calls [8/8] : 0.0000176%", - "2 | Tip : KSM 0.000055555555" + "0 | Utility : Batch", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Fill block", - "1 | Calls [2/8] : 0.0000044%", - "1 | Calls [3/8] : Fill block", - "1 | Calls [4/8] : 0.0000088%", - "1 | Calls [5/8] : Fill block", - "1 | Calls [6/8] : 0.0000132%", - "1 | Calls [7/8] : Fill block", - "1 | Calls [8/8] : 0.0000176%", + "0 | Utility : Batch", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9466,47 +9412,45 @@ ] }, { - "index": 388, + "index": 386, "name": "Utility_Batch_all", - "blob": "18020400002c000000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020400002c000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", - "1 | Calls [2/2] : 0.0000044%" + "1 | Calls [2/2] : 0.0000044%", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Utility : Batch all", "1 | Calls [1/2] : Fill block", "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 389, + "index": 387, "name": "Utility_Batch_all", - "blob": "18020800002c000000000058000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18020400002c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Utility : Batch all", - "1 | Calls [1/4] : Fill block", - "1 | Calls [2/4] : 0.0000044%", - "1 | Calls [3/4] : Fill block", - "1 | Calls [4/4] : 0.0000088%", + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -9516,9 +9460,32 @@ ] }, { - "index": 390, + "index": 388, + "name": "Utility_Batch_all", + "blob": "18020400002c000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Utility : Batch all", + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Utility : Batch all", + "1 | Calls [1/2] : Fill block", + "1 | Calls [2/2] : 0.0000044%", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 389, "name": "Utility_Batch_all", - "blob": "18021000002c0000000000580000000000840000000000b0000000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "18021000002c0000000000580000000000840000000000b0000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Utility : Batch all", "1 | Calls [1/8] : Fill block", @@ -9529,7 +9496,7 @@ "1 | Calls [6/8] : 0.0000132%", "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Utility : Batch all", @@ -9542,8 +9509,35 @@ "1 | Calls [7/8] : Fill block", "1 | Calls [8/8] : 0.0000176%", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 390, + "name": "Utility_Batch_all", + "blob": "18020800002c000000000058000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Utility : Batch all", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Utility : Batch all", + "1 | Calls [1/4] : Fill block", + "1 | Calls [2/4] : 0.0000044%", + "1 | Calls [3/4] : Fill block", + "1 | Calls [4/4] : 0.0000088%", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9553,22 +9547,20 @@ { "index": 391, "name": "Identity_Add_registrar", - "blob": "19002c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9578,20 +9570,20 @@ { "index": 392, "name": "Identity_Add_registrar", - "blob": "19006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9601,20 +9593,20 @@ { "index": 393, "name": "Identity_Add_registrar", - "blob": "1900c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Account [2/2] : nEdzjPoWQ", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Account [2/2] : nEdzjPoWQ", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9624,20 +9616,22 @@ { "index": 394, "name": "Identity_Add_registrar", - "blob": "190074dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Account [2/2] : 3mpD1YowH", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Account [2/2] : 3mpD1YowH", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9647,20 +9641,20 @@ { "index": 395, "name": "Identity_Add_registrar", - "blob": "19005670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Add registrar", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9670,33 +9664,31 @@ { "index": 396, "name": "Identity_Clear_identity", - "blob": "1903d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity", - "1 | Tip : KSM 0.000055555555" + "0 | Identity : Clear identity" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 397, "name": "Identity_Clear_identity", - "blob": "1903d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Clear identity" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 50283", + "2 | Nonce : 1", "3 | Era Phase : 61", "4 | Era Period : 64", "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9706,54 +9698,50 @@ { "index": 398, "name": "Identity_Clear_identity", - "blob": "1903d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity", - "1 | Tip : KSM 5.552342355555" + "0 | Identity : Clear identity" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 399, "name": "Identity_Clear_identity", - "blob": "1903d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Clear identity", - "1 | Tip : KSM 0.00123456789" + "0 | Identity : Clear identity" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 400, "name": "Identity_Clear_identity", - "blob": "1903d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1903d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Clear identity", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Clear identity", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 1", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9763,20 +9751,20 @@ { "index": 401, "name": "Identity_Request_judgement", - "blob": "190488270785823689e03c9e02414eb7a5d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1904dc821c2f4dd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 34", - "2 | Max fee : 13129377174866968901497896731911", - "3 | Tip : KSM 5.552342355555" + "1 | Reg index : 55", + "2 | Max fee : 323733280", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 34", - "2 | Max fee : 13129377174866968901497896731911", + "1 | Reg index : 55", + "2 | Max fee : 323733280", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 0", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9786,20 +9774,20 @@ { "index": 402, "name": "Identity_Request_judgement", - "blob": "19045a83100fda2c1008d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190409169a505dbfd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 63185110", - "2 | Max fee : 33819446", - "3 | Tip : KSM 0.000000000987" + "1 | Reg index : 1410", + "2 | Max fee : 802640934", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 63185110", - "2 | Max fee : 33819446", + "1 | Reg index : 1410", + "2 | Max fee : 802640934", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9809,20 +9797,20 @@ { "index": 403, "name": "Identity_Request_judgement", - "blob": "19045a83100f270785823689e03c9e02414eb7a5d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1904f19939c9d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 63185110", - "2 | Max fee : 13129377174866968901497896731911", - "3 | Tip : KSM 0.00123456789" + "1 | Reg index : 9852", + "2 | Max fee : 12878", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 63185110", - "2 | Max fee : 13129377174866968901497896731911", + "1 | Reg index : 9852", + "2 | Max fee : 12878", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.00123456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9832,20 +9820,22 @@ { "index": 404, "name": "Identity_Request_judgement", - "blob": "190488da2c1008d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190496fb647739c9d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 34", - "2 | Max fee : 33819446", - "3 | Tip : KSM 5.552342355555" + "1 | Reg index : 500776677", + "2 | Max fee : 12878", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 34", - "2 | Max fee : 33819446", + "1 | Reg index : 500776677", + "2 | Max fee : 12878", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9855,60 +9845,62 @@ { "index": 405, "name": "Identity_Request_judgement", - "blob": "1904302f71f9a3686c261ee9f4f09dbb52c1b1d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1904091639c9d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Request judgement", - "1 | Reg index : 12", - "2 | Max fee : 922957603788131508347775579511322993", - "3 | Tip : KSM 0.000000000987" + "1 | Reg index : 1410", + "2 | Max fee : 12878" ], "output_expert": [ "0 | Identity : Request judgement", - "1 | Reg index : 12", - "2 | Max fee : 922957603788131508347775579511322993", + "1 | Reg index : 1410", + "2 | Max fee : 12878", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 406, "name": "Identity_Cancel_request", - "blob": "1905ac350000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190500000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 13740" + "1 | Reg index : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 13740", + "1 | Reg index : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 407, "name": "Identity_Cancel_request", - "blob": "190501000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1905ac350000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 1", - "2 | Tip : KSM 0.000055555555" + "1 | Reg index : 13740", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 1", + "1 | Reg index : 13740", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9918,18 +9910,18 @@ { "index": 408, "name": "Identity_Cancel_request", - "blob": "1905b3e30100d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19057b000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 123827", - "2 | Tip : KSM 0.00123456789" + "1 | Reg index : 123", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 123827", + "1 | Reg index : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9939,20 +9931,18 @@ { "index": 409, "name": "Identity_Cancel_request", - "blob": "1905ff030000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19057b000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 1023", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Reg index : 123", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 1023", + "1 | Reg index : 123", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9962,18 +9952,20 @@ { "index": 410, "name": "Identity_Cancel_request", - "blob": "19057b000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190501000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Cancel request", - "1 | Reg index : 123", - "2 | Tip : KSM 0.000055555555" + "1 | Reg index : 1", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Identity : Cancel request", - "1 | Reg index : 123", + "1 | Reg index : 1", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -9983,20 +9975,20 @@ { "index": 411, "name": "Identity_Set_fee", - "blob": "190630270785823689e03c9e02414eb7a5d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1906dc9a505dbfd50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 12", - "2 | Fee : 13129377174866968901497896731911", - "3 | Tip : KSM 0.000000000987" + "1 | Index : 55", + "2 | Fee : 802640934", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 12", - "2 | Fee : 13129377174866968901497896731911", + "1 | Index : 55", + "2 | Fee : 802640934", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10006,45 +9998,41 @@ { "index": 412, "name": "Identity_Set_fee", - "blob": "190688da2c1008d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "19060916c9bfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 33819446", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Index : 1410", + "2 | Fee : 12274" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 33819446", + "1 | Index : 1410", + "2 | Fee : 12274", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 413, "name": "Identity_Set_fee", - "blob": "190632bcf2352f71f9a3686c261ee9f4f09dbb52c1b1d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190609169a505dbfd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 226275084", - "2 | Fee : 922957603788131508347775579511322993", - "3 | Tip : KSM 0.000000000987" + "1 | Index : 1410", + "2 | Fee : 802640934", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 226275084", - "2 | Fee : 922957603788131508347775579511322993", + "1 | Index : 1410", + "2 | Fee : 802640934", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10054,20 +10042,20 @@ { "index": 414, "name": "Identity_Set_fee", - "blob": "190688d1ded5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1906dc39c9d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 14260", - "3 | Tip : KSM 0.000055555555" + "1 | Index : 55", + "2 | Fee : 12878", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 14260", + "1 | Index : 55", + "2 | Fee : 12878", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10077,47 +10065,43 @@ { "index": 415, "name": "Identity_Set_fee", - "blob": "190688270785823689e03c9e02414eb7a5d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190696fb6477821c2f4dd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 13129377174866968901497896731911", - "3 | Tip : KSM 0.00123456789" + "1 | Index : 500776677", + "2 | Fee : 323733280" ], "output_expert": [ "0 | Identity : Set fee", - "1 | Index : 34", - "2 | Fee : 13129377174866968901497896731911", + "1 | Index : 500776677", + "2 | Fee : 323733280", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 416, "name": "Identity_Set_account_id", - "blob": "190732bcf235c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190796fb64776a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 226275084", - "2 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | New [2/2] : Wk42jTTrE", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Index : 500776677", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 226275084", - "2 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | New [2/2] : Wk42jTTrE", + "1 | Index : 500776677", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10127,45 +10111,47 @@ { "index": 417, "name": "Identity_Set_account_id", - "blob": "190788c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1907f1996a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | New [2/2] : Wk42jTTrE" + "1 | Index : 9852", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | New [2/2] : Wk42jTTrE", + "1 | Index : 9852", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 418, "name": "Identity_Set_account_id", - "blob": "190788066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1907f1996a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | New [2/2] : ZN2wsYzvW", - "3 | Tip : KSM 0.000055555555" + "1 | Index : 9852", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | New [2/2] : ZN2wsYzvW", + "1 | Index : 9852", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10175,21 +10161,21 @@ { "index": 419, "name": "Identity_Set_account_id", - "blob": "19075a83100f066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190709166a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 63185110", - "2 | New [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | New [2/2] : ZN2wsYzvW", + "1 | Index : 1410", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 63185110", - "2 | New [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | New [2/2] : ZN2wsYzvW", + "1 | Index : 1410", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -10200,21 +10186,21 @@ { "index": 420, "name": "Identity_Set_account_id", - "blob": "1907885670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190796fb64776a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "2 | New [2/2] : G2gesBwNB", + "1 | Index : 500776677", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Set account id", - "1 | Index : 34", - "2 | New [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "2 | New [2/2] : G2gesBwNB", + "1 | Index : 500776677", + "2 | New [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | New [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -10225,20 +10211,20 @@ { "index": 421, "name": "Identity_Kill_identity", - "blob": "190a008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000055555555" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10248,41 +10234,43 @@ { "index": 422, "name": "Identity_Kill_identity", - "blob": "190a008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 423, "name": "Identity_Kill_identity", - "blob": "190a008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000055555555" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10292,19 +10280,19 @@ { "index": 424, "name": "Identity_Kill_identity", - "blob": "190a008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -10315,43 +10303,43 @@ { "index": 425, "name": "Identity_Kill_identity", - "blob": "190a008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190a006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Kill identity", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 426, "name": "Identity_Remove_sub", - "blob": "190d008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10361,20 +10349,20 @@ { "index": 427, "name": "Identity_Remove_sub", - "blob": "190d008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000000000987" + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10384,20 +10372,20 @@ { "index": 428, "name": "Identity_Remove_sub", - "blob": "190d008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.00123456789" + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10407,20 +10395,20 @@ { "index": 429, "name": "Identity_Remove_sub", - "blob": "190d008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 5.552342355555" + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10430,20 +10418,20 @@ { "index": 430, "name": "Identity_Remove_sub", - "blob": "190d008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190d006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000000000987" + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Remove sub", - "1 | Sub [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Sub [2/2] : 1Z3SQRDB6", + "1 | Sub [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Sub [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10453,16 +10441,16 @@ { "index": 431, "name": "Identity_Quit_sub", - "blob": "190ed503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10472,18 +10460,16 @@ { "index": 432, "name": "Identity_Quit_sub", - "blob": "190ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10493,7 +10479,7 @@ { "index": 433, "name": "Identity_Quit_sub", - "blob": "190ed5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", "1 | Tip : KSM 0.000000000987" @@ -10501,7 +10487,7 @@ "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 0", "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -10512,37 +10498,33 @@ { "index": 434, "name": "Identity_Quit_sub", - "blob": "190ed503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Identity : Quit sub", - "1 | Tip : KSM 5.552342355555" + "0 | Identity : Quit sub" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 435, "name": "Identity_Quit_sub", - "blob": "190ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "190ed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Identity : Quit sub", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Identity : Quit sub", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 100", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10552,19 +10534,19 @@ { "index": 436, "name": "Society_Bid", - "blob": "1a0007dd637c4bed333e4eafa309801d9ce0d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -10575,18 +10557,18 @@ { "index": 437, "name": "Society_Bid", - "blob": "1a0007dd637c4bed333e4eafa309801d9ce0d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543" + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10596,106 +10578,102 @@ { "index": 438, "name": "Society_Bid", - "blob": "1a0007dd637c4bed333e4eafa309801d9ce0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a008c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", - "2 | Tip : KSM 0.000000000987" + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 439, "name": "Society_Bid", - "blob": "1a0007dd637c4bed333e4eafa309801d9ce0d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a008c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", - "2 | Tip : KSM 5.552342355555" + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 440, "name": "Society_Bid", - "blob": "1a0007dd637c4bed333e4eafa309801d9ce0d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a008c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", - "2 | Tip : KSM 5.552342355555" + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676" ], "output_expert": [ "0 | Society : Bid", - "1 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "1 | Amount [2/2] : 041543", + "1 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "1 | Amount [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 441, "name": "Society_Unbid", - "blob": "1a019d1c0000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01d3040000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 7325" + "1 | Pos : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 7325", + "1 | Pos : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 442, "name": "Society_Unbid", - "blob": "1a0100000000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01f7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 0", - "2 | Tip : KSM 0.00123456789" + "1 | Pos : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 0", + "1 | Pos : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10705,18 +10683,20 @@ { "index": 443, "name": "Society_Unbid", - "blob": "1a019d1c0000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 7325", - "2 | Tip : KSM 0.000000000987" + "1 | Pos : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 7325", + "1 | Pos : 1235", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10726,72 +10706,66 @@ { "index": 444, "name": "Society_Unbid", - "blob": "1a0134300000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a019d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | Pos : 7325" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 12340", + "1 | Pos : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 445, "name": "Society_Unbid", - "blob": "1a0134300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a01f7010000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unbid", - "1 | Pos : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Pos : 503" ], "output_expert": [ "0 | Society : Unbid", - "1 | Pos : 12340", + "1 | Pos : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 446, "name": "Society_Vouch", - "blob": "1a02066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d171507dd637c4bed333e4eafa309801d9ce007dd637c4bed333e4eafa309801d9ce0d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Who [2/2] : ZN2wsYzvW", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", - "4 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Who [2/2] : ZN2wsYzvW", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", "4 | Chain : Kusama", "5 | Nonce : 100", - "6 | Tip : KSM 0.000000000987", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10801,28 +10775,30 @@ { "index": 447, "name": "Society_Vouch", - "blob": "1a025670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f07dd637c4bed333e4eafa309801d9ce007dd637c4bed333e4eafa309801d9ce0d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", - "4 | Tip : KSM 0.00123456789" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.00123456789", + "5 | Nonce : 2339", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10832,28 +10808,30 @@ { "index": 448, "name": "Society_Vouch", - "blob": "1a02c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b07dd637c4bed333e4eafa309801d9ce007dd637c4bed333e4eafa309801d9ce0d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Who [2/2] : Wk42jTTrE", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", - "4 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Who [2/2] : Wk42jTTrE", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 0", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10863,59 +10841,57 @@ { "index": 449, "name": "Society_Vouch", - "blob": "1a0274dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f07dd637c4bed333e4eafa309801d9ce007dd637c4bed333e4eafa309801d9ce0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Who [2/2] : 3mpD1YowH", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", - "4 | Tip : KSM 0.000000000987" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Who [2/2] : 3mpD1YowH", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 450, "name": "Society_Vouch", - "blob": "1a02c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a4307dd637c4bed333e4eafa309801d9ce007dd637c4bed333e4eafa309801d9ce0d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f8c3544c81220fe2639607fe7644f0fdf8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vouch", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", - "4 | Tip : KSM 5.552342355555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vouch", - "1 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Who [2/2] : nEdzjPoWQ", - "2 | Amount [1/2] : KSM 298557667699819144219233062.447955", - "2 | Amount [2/2] : 041543", - "3 | Tip [1/2] : KSM 298557667699819144219233062.447955", - "3 | Tip [2/2] : 041543", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Amount [1/2] : KSM 296497337817734227229652438.025266", + "2 | Amount [2/2] : 017676", + "3 | Tip [1/2] : KSM 296497337817734227229652438.025266", + "3 | Tip [2/2] : 017676", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10925,39 +10901,37 @@ { "index": 451, "name": "Society_Unvouch", - "blob": "1a03f7010000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0300000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 503", - "2 | Tip : KSM 5.552342355555" + "1 | Pos : 0" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 503", + "1 | Pos : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 452, "name": "Society_Unvouch", - "blob": "1a0334300000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0300000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 12340", - "2 | Tip : KSM 0.00123456789" + "1 | Pos : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 12340", + "1 | Pos : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10967,18 +10941,18 @@ { "index": 453, "name": "Society_Unvouch", - "blob": "1a0300000000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03d3040000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 0", - "2 | Tip : KSM 0.00123456789" + "1 | Pos : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 0", + "1 | Pos : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -10988,17 +10962,17 @@ { "index": 454, "name": "Society_Unvouch", - "blob": "1a03f7010000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a03d3040000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 503", + "1 | Pos : 1235", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 503", + "1 | Pos : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -11009,17 +10983,17 @@ { "index": 455, "name": "Society_Unvouch", - "blob": "1a039d1c0000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0300000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unvouch", - "1 | Pos : 7325", + "1 | Pos : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Unvouch", - "1 | Pos : 7325", + "1 | Pos : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -11030,22 +11004,22 @@ { "index": 456, "name": "Society_Vote", - "blob": "1a04008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : True", - "3 | Tip : KSM 0.00123456789" + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : False", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : True", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : False", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11055,72 +11029,70 @@ { "index": 457, "name": "Society_Vote", - "blob": "1a04008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b00d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : True", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : False" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : True", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : False", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 458, "name": "Society_Vote", - "blob": "1a04008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : True" + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : True", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", "2 | Approve : True", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 459, "name": "Society_Vote", - "blob": "1a04008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : False", - "3 | Tip : KSM 5.552342355555" + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : True", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", - "2 | Approve : False", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", + "2 | Approve : True", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 100", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11130,22 +11102,22 @@ { "index": 460, "name": "Society_Vote", - "blob": "1a04008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b001d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a04006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b01d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", "2 | Approve : True", - "3 | Tip : KSM 0.000055555555" + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Vote", - "1 | Candidate [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Candidate [2/2] : 1Z3SQRDB6", + "1 | Candidate [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Candidate [2/2] : G1ft7ngXT", "2 | Approve : True", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11155,37 +11127,41 @@ { "index": 461, "name": "Society_Defender_vote", - "blob": "1a0501d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : True" + "1 | Approve : False", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : True", + "1 | Approve : False", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 462, "name": "Society_Defender_vote", - "blob": "1a0501d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : True", - "2 | Tip : KSM 0.00123456789" + "1 | Approve : False", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : True", + "1 | Approve : False", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11195,57 +11171,57 @@ { "index": 463, "name": "Society_Defender_vote", - "blob": "1a0501d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : True" + "1 | Approve : False", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : True", + "1 | Approve : False", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 464, "name": "Society_Defender_vote", - "blob": "1a0501d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0500d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : True", - "2 | Tip : KSM 5.552342355555" + "1 | Approve : False" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : True", + "1 | Approve : False", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 465, "name": "Society_Defender_vote", - "blob": "1a0500d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0501d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Defender vote", - "1 | Approve : False", + "1 | Approve : True", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Defender vote", - "1 | Approve : False", + "1 | Approve : True", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -11256,35 +11232,31 @@ { "index": 466, "name": "Society_Payout", - "blob": "1a06d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Payout", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "0 | Society : Payout" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 467, "name": "Society_Payout", - "blob": "1a06d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 50283", "3 | Era Phase : 61", "4 | Era Period : 64", "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11294,18 +11266,16 @@ { "index": 468, "name": "Society_Payout", - "blob": "1a06d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 0", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11315,24 +11285,26 @@ { "index": 469, "name": "Society_Payout", - "blob": "1a06d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Society : Payout" + "0 | Society : Payout", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 470, "name": "Society_Payout", - "blob": "1a06d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a06d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Payout", "1 | Tip : KSM 5.552342355555" @@ -11340,7 +11312,7 @@ "output_expert": [ "0 | Society : Payout", "1 | Chain : Kusama", - "2 | Nonce : 1", + "2 | Nonce : 2339", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -11351,28 +11323,30 @@ { "index": 471, "name": "Society_Found", - "blob": "1a07066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d304000080c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f34300000010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Founder [2/2] : ZN2wsYzvW", - "2 | Max members : 1235", - "3 | Rules [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Rules [2/2] : d3c2213811916ffe6b767ec708", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 12340", + "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "3 | Rules [4/4] : 683807d2d3ef09", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Founder [2/2] : ZN2wsYzvW", - "2 | Max members : 1235", - "3 | Rules [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Rules [2/2] : d3c2213811916ffe6b767ec708", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 12340", + "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "3 | Rules [4/4] : 683807d2d3ef09", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 2339", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11382,36 +11356,36 @@ { "index": 472, "name": "Society_Found", - "blob": "1a07e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840f70100000102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f000000000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Founder [2/2] : zBUmsjRJA", - "2 | Max members : 503", - "3 | Rules [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "3 | Rules [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "3 | Rules [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "3 | Rules [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "3 | Rules [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "3 | Rules [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "3 | Rules [7/7] : d523795122322c6ae0b92cf4ac98", - "4 | Tip : KSM 0.000000000987" + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 0", + "3 | Rules [1/7] : b1949666437de73950d06473ca806a691e91e0", + "3 | Rules [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "3 | Rules [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "3 | Rules [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "3 | Rules [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "3 | Rules [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "3 | Rules [7/7] : 15ed00d70e7bb9161e10557d44c4", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Founder [2/2] : zBUmsjRJA", - "2 | Max members : 503", - "3 | Rules [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "3 | Rules [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "3 | Rules [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "3 | Rules [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "3 | Rules [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "3 | Rules [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "3 | Rules [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 0", + "3 | Rules [1/7] : b1949666437de73950d06473ca806a691e91e0", + "3 | Rules [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "3 | Rules [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "3 | Rules [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "3 | Rules [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "3 | Rules [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "3 | Rules [7/7] : 15ed00d70e7bb9161e10557d44c4", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 100", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11421,30 +11395,30 @@ { "index": 473, "name": "Society_Found", - "blob": "1a07421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02df701000001010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff70100000101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Founder [2/2] : 1me9MXvVn", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", "2 | Max members : 503", - "3 | Rules [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "3 | Rules [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "3 | Rules [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "3 | Rules [4/4] : 6e1755de324791", - "4 | Tip : KSM 0.000000000987" + "3 | Rules [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "3 | Rules [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "3 | Rules [3/4] : a229ebf7524d08566ca15014598d9328723941", + "3 | Rules [4/4] : 6ef8294aecb62b", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Founder [2/2] : 1me9MXvVn", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", "2 | Max members : 503", - "3 | Rules [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "3 | Rules [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "3 | Rules [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "3 | Rules [4/4] : 6e1755de324791", + "3 | Rules [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "3 | Rules [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "3 | Rules [3/4] : a229ebf7524d08566ca15014598d9328723941", + "3 | Rules [4/4] : 6ef8294aecb62b", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000000000987", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11454,36 +11428,30 @@ { "index": 474, "name": "Society_Found", - "blob": "1a07e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840f70100000102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9d1c0000010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef09d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Founder [2/2] : zBUmsjRJA", - "2 | Max members : 503", - "3 | Rules [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "3 | Rules [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "3 | Rules [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "3 | Rules [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "3 | Rules [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "3 | Rules [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "3 | Rules [7/7] : d523795122322c6ae0b92cf4ac98", - "4 | Tip : KSM 0.000055555555" + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 7325", + "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "3 | Rules [4/4] : 683807d2d3ef09", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Founder [2/2] : zBUmsjRJA", - "2 | Max members : 503", - "3 | Rules [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "3 | Rules [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "3 | Rules [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "3 | Rules [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "3 | Rules [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "3 | Rules [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "3 | Rules [7/7] : d523795122322c6ae0b92cf4ac98", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", + "2 | Max members : 7325", + "3 | Rules [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "3 | Rules [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "3 | Rules [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "3 | Rules [4/4] : 683807d2d3ef09", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 50283", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11493,23 +11461,33 @@ { "index": 475, "name": "Society_Found", - "blob": "1a0774dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92ff701000080c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a076a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305ff701000001028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Found", - "1 | Founder [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Founder [2/2] : 3mpD1YowH", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", "2 | Max members : 503", - "3 | Rules [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Rules [2/2] : d3c2213811916ffe6b767ec708", + "3 | Rules [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "3 | Rules [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "3 | Rules [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "3 | Rules [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "3 | Rules [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "3 | Rules [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "3 | Rules [7/7] : 981e2df7f997de23b266e33ef909", "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Found", - "1 | Founder [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Founder [2/2] : 3mpD1YowH", + "1 | Founder [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Founder [2/2] : DyGtAWNbn", "2 | Max members : 503", - "3 | Rules [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "3 | Rules [2/2] : d3c2213811916ffe6b767ec708", + "3 | Rules [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "3 | Rules [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "3 | Rules [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "3 | Rules [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "3 | Rules [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "3 | Rules [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "3 | Rules [7/7] : 981e2df7f997de23b266e33ef909", "4 | Chain : Kusama", "5 | Nonce : 100", "6 | Tip : KSM 0.000000000987", @@ -11522,7 +11500,7 @@ { "index": 476, "name": "Society_Unfound", - "blob": "1a08d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", "1 | Tip : KSM 5.552342355555" @@ -11530,7 +11508,7 @@ "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 100", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -11541,16 +11519,16 @@ { "index": 477, "name": "Society_Unfound", - "blob": "1a08d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Tip : KSM 0.000055555555", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11560,7 +11538,7 @@ { "index": 478, "name": "Society_Unfound", - "blob": "1a08d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", "1 | Tip : KSM 5.552342355555" @@ -11568,7 +11546,7 @@ "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 100", + "2 | Nonce : 2339", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -11579,16 +11557,18 @@ { "index": 479, "name": "Society_Unfound", - "blob": "1a08d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", - "1 | Tip : KSM 5.552342355555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11598,7 +11578,7 @@ { "index": 480, "name": "Society_Unfound", - "blob": "1a08d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a08d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Unfound", "1 | Tip : KSM 5.552342355555" @@ -11606,7 +11586,7 @@ "output_expert": [ "0 | Society : Unfound", "1 | Chain : Kusama", - "2 | Nonce : 0", + "2 | Nonce : 50283", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -11617,21 +11597,21 @@ { "index": 481, "name": "Society_Judge_suspended_member", - "blob": "1a092c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705400d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Forgive : False", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", "2 | Forgive : False", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -11642,22 +11622,22 @@ { "index": 482, "name": "Society_Judge_suspended_member", - "blob": "1a092c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705400d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", - "2 | Forgive : False", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", - "2 | Forgive : False", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", @@ -11669,22 +11649,22 @@ { "index": 483, "name": "Society_Judge_suspended_member", - "blob": "1a092c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705400d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", - "2 | Forgive : False", - "3 | Tip : KSM 0.000055555555" + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Who [2/2] : 2GoCpzMtB", - "2 | Forgive : False", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11694,19 +11674,19 @@ { "index": 484, "name": "Society_Judge_suspended_member", - "blob": "1a096257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add20831846816600d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Who [2/2] : 2uX6ovmqC", - "2 | Forgive : False", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Who [2/2] : 2uX6ovmqC", - "2 | Forgive : False", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : True", "3 | Chain : Kusama", "4 | Nonce : 1", "5 | Tip : KSM 0.00123456789", @@ -11719,21 +11699,21 @@ { "index": 485, "name": "Society_Judge_suspended_member", - "blob": "1a095670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f01d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Forgive : True", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : False", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Society : Judge suspended member", - "1 | Who [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Who [2/2] : G2gesBwNB", - "2 | Forgive : True", + "1 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Who [2/2] : DyGtAWNbn", + "2 | Forgive : False", "3 | Chain : Kusama", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -11744,7 +11724,7 @@ { "index": 486, "name": "Society_Set_max_members", - "blob": "1a0b34300000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b34300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", "1 | Max : 12340" @@ -11753,7 +11733,7 @@ "0 | Society : Set max members", "1 | Max : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11763,18 +11743,18 @@ { "index": 487, "name": "Society_Set_max_members", - "blob": "1a0bd3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 1235", + "1 | Max : 0", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 1235", + "1 | Max : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -11786,20 +11766,18 @@ { "index": 488, "name": "Society_Set_max_members", - "blob": "1a0b9d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0bf7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Max : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 7325", + "1 | Max : 503", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11809,7 +11787,7 @@ { "index": 489, "name": "Society_Set_max_members", - "blob": "1a0b00000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b00000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", "1 | Max : 0", @@ -11819,7 +11797,7 @@ "0 | Society : Set max members", "1 | Max : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -11830,20 +11808,18 @@ { "index": 490, "name": "Society_Set_max_members", - "blob": "1a0bd3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1a0b34300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Society : Set max members", - "1 | Max : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Max : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Society : Set max members", - "1 | Max : 1235", + "1 | Max : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11853,26 +11829,24 @@ { "index": 491, "name": "Recovery_Set_recovered", - "blob": "1b01066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d17156257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Lost [2/2] : ZN2wsYzvW", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Lost [2/2] : ZN2wsYzvW", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11882,24 +11856,26 @@ { "index": 492, "name": "Recovery_Set_recovered", - "blob": "1b015670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fe0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Lost [2/2] : G2gesBwNB", - "2 | Rescuer [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Rescuer [2/2] : zBUmsjRJA", - "3 | Tip : KSM 0.00123456789" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Lost [2/2] : G2gesBwNB", - "2 | Rescuer [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Rescuer [2/2] : zBUmsjRJA", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11909,24 +11885,24 @@ { "index": 493, "name": "Recovery_Set_recovered", - "blob": "1b012c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Lost [2/2] : 2GoCpzMtB", - "2 | Rescuer [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "2 | Rescuer [2/2] : 1me9MXvVn", - "3 | Tip : KSM 0.000000000987" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Lost [2/2] : 2GoCpzMtB", - "2 | Rescuer [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "2 | Rescuer [2/2] : 1me9MXvVn", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11936,26 +11912,24 @@ { "index": 494, "name": "Recovery_Set_recovered", - "blob": "1b01066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d171574dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Lost [2/2] : ZN2wsYzvW", - "2 | Rescuer [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Rescuer [2/2] : 3mpD1YowH", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Lost [2/2] : ZN2wsYzvW", - "2 | Rescuer [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Rescuer [2/2] : 3mpD1YowH", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -11965,22 +11939,22 @@ { "index": 495, "name": "Recovery_Set_recovered", - "blob": "1b01c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Rescuer [2/2] : Wk42jTTrE", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Set recovered", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Rescuer [2/2] : Wk42jTTrE", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 50283", "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -11994,43 +11968,43 @@ { "index": 496, "name": "Recovery_Initiate_recovery", - "blob": "1b03c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Account [2/2] : nEdzjPoWQ" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Account [2/2] : nEdzjPoWQ", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 497, "name": "Recovery_Initiate_recovery", - "blob": "1b035670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12040,20 +12014,20 @@ { "index": 498, "name": "Recovery_Initiate_recovery", - "blob": "1b0374dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Account [2/2] : 3mpD1YowH", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Account [2/2] : 3mpD1YowH", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12063,20 +12037,20 @@ { "index": 499, "name": "Recovery_Initiate_recovery", - "blob": "1b03066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Account [2/2] : ZN2wsYzvW", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Account [2/2] : ZN2wsYzvW", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12086,20 +12060,20 @@ { "index": 500, "name": "Recovery_Initiate_recovery", - "blob": "1b03e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b036a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Account [2/2] : zBUmsjRJA", - "2 | Tip : KSM 5.552342355555" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Initiate recovery", - "1 | Account [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Account [2/2] : zBUmsjRJA", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12109,24 +12083,26 @@ { "index": 501, "name": "Recovery_Vouch_recovery", - "blob": "1b0474dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f2c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Lost [2/2] : 3mpD1YowH", - "2 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Rescuer [2/2] : 2GoCpzMtB", - "3 | Tip : KSM 0.000000000987" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Lost [2/2] : 3mpD1YowH", - "2 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Rescuer [2/2] : 2GoCpzMtB", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12136,24 +12112,26 @@ { "index": 502, "name": "Recovery_Vouch_recovery", - "blob": "1b04c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b6257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Lost [2/2] : Wk42jTTrE", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", - "3 | Tip : KSM 5.552342355555" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Lost [2/2] : Wk42jTTrE", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12163,51 +12141,49 @@ { "index": 503, "name": "Recovery_Vouch_recovery", - "blob": "1b04c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a4374dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Rescuer [2/2] : 3mpD1YowH", - "3 | Tip : KSM 0.000055555555" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "2 | Rescuer [2/2] : 3mpD1YowH", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 504, "name": "Recovery_Vouch_recovery", - "blob": "1b04c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a436257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", - "3 | Tip : KSM 0.000055555555" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Lost [2/2] : nEdzjPoWQ", - "2 | Rescuer [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Rescuer [2/2] : 2uX6ovmqC", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12217,24 +12193,24 @@ { "index": 505, "name": "Recovery_Vouch_recovery", - "blob": "1b046257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add2083184681662c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b046a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Lost [2/2] : 2uX6ovmqC", - "2 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Rescuer [2/2] : 2GoCpzMtB", - "3 | Tip : KSM 0.000055555555" + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Vouch recovery", - "1 | Lost [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Lost [2/2] : 2uX6ovmqC", - "2 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Rescuer [2/2] : 2GoCpzMtB", + "1 | Lost [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lost [2/2] : DyGtAWNbn", + "2 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Rescuer [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12244,18 +12220,18 @@ { "index": 506, "name": "Recovery_Claim_recovery", - "blob": "1b05066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Account [2/2] : ZN2wsYzvW" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Account [2/2] : ZN2wsYzvW", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12265,60 +12241,68 @@ { "index": 507, "name": "Recovery_Claim_recovery", - "blob": "1b055670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Account [2/2] : G2gesBwNB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 508, "name": "Recovery_Claim_recovery", - "blob": "1b052c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 509, "name": "Recovery_Claim_recovery", - "blob": "1b05421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dd503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Account [2/2] : 1me9MXvVn" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Account [2/2] : 1me9MXvVn", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12328,20 +12312,20 @@ { "index": 510, "name": "Recovery_Claim_recovery", - "blob": "1b056257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC", - "2 | Tip : KSM 0.000055555555" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Claim recovery", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12351,20 +12335,22 @@ { "index": 511, "name": "Recovery_Close_recovery", - "blob": "1b062c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Rescuer [2/2] : 2GoCpzMtB", - "2 | Tip : KSM 0.000055555555" + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Rescuer [2/2] : 2GoCpzMtB", + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12374,22 +12360,20 @@ { "index": 512, "name": "Recovery_Close_recovery", - "blob": "1b06421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dd5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Rescuer [2/2] : 1me9MXvVn", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Rescuer [2/2] : 1me9MXvVn", + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12399,22 +12383,20 @@ { "index": 513, "name": "Recovery_Close_recovery", - "blob": "1b062c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Rescuer [2/2] : 2GoCpzMtB", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Rescuer [2/2] : 2GoCpzMtB", + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12424,20 +12406,20 @@ { "index": 514, "name": "Recovery_Close_recovery", - "blob": "1b065670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Rescuer [2/2] : G2gesBwNB", - "2 | Tip : KSM 5.552342355555" + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Rescuer [2/2] : G2gesBwNB", + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12447,18 +12429,41 @@ { "index": 515, "name": "Recovery_Close_recovery", - "blob": "1b065670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fd503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b066a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Rescuer [2/2] : G2gesBwNB" - ], + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], "output_expert": [ "0 | Recovery : Close recovery", - "1 | Rescuer [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Rescuer [2/2] : G2gesBwNB", + "1 | Rescuer [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Rescuer [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 516, + "name": "Recovery_Remove_recovery", + "blob": "1b07d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Recovery : Remove recovery", + "1 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Recovery : Remove recovery", + "1 | Chain : Kusama", + "2 | Nonce : 2339", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12466,16 +12471,16 @@ ] }, { - "index": 516, + "index": 517, "name": "Recovery_Remove_recovery", - "blob": "1b07d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Remove recovery" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 2339", + "2 | Nonce : 50283", "3 | Era Phase : 61", "4 | Era Period : 64", "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12483,45 +12488,28 @@ ] }, { - "index": 517, + "index": 518, "name": "Recovery_Remove_recovery", - "blob": "1b07d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Remove recovery", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip : KSM 0.000000000987", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, - { - "index": 518, - "name": "Recovery_Remove_recovery", - "blob": "1b07d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Recovery : Remove recovery" - ], - "output_expert": [ - "0 | Recovery : Remove recovery", - "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, { "index": 519, "name": "Recovery_Remove_recovery", - "blob": "1b07d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Remove recovery", "1 | Tip : KSM 0.000000000987" @@ -12540,34 +12528,36 @@ { "index": 520, "name": "Recovery_Remove_recovery", - "blob": "1b07d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b07d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Recovery : Remove recovery" + "0 | Recovery : Remove recovery", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Remove recovery", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 521, "name": "Recovery_Cancel_recovered", - "blob": "1b08c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", @@ -12580,41 +12570,43 @@ { "index": 522, "name": "Recovery_Cancel_recovered", - "blob": "1b086257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Account [2/2] : 2uX6ovmqC", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 523, "name": "Recovery_Cancel_recovered", - "blob": "1b08c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12624,20 +12616,20 @@ { "index": 524, "name": "Recovery_Cancel_recovered", - "blob": "1b082c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB", - "2 | Tip : KSM 0.00123456789" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Account [2/2] : 2GoCpzMtB", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12647,20 +12639,20 @@ { "index": 525, "name": "Recovery_Cancel_recovered", - "blob": "1b08c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1b086a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", - "2 | Tip : KSM 0.000000000987" + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Recovery : Cancel recovered", - "1 | Account [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Account [2/2] : Wk42jTTrE", + "1 | Account [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Account [2/2] : DyGtAWNbn", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12670,33 +12662,35 @@ { "index": 526, "name": "Vesting_Vest", - "blob": "1c00d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Vesting : Vest" + "0 | Vesting : Vest", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 100", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 527, "name": "Vesting_Vest", - "blob": "1c00d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 0", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12706,16 +12700,16 @@ { "index": 528, "name": "Vesting_Vest", - "blob": "1c00d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12725,18 +12719,16 @@ { "index": 529, "name": "Vesting_Vest", - "blob": "1c00d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 1", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12746,7 +12738,7 @@ { "index": 530, "name": "Vesting_Vest", - "blob": "1c00d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c00d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest", "1 | Tip : KSM 0.000055555555" @@ -12754,7 +12746,7 @@ "output_expert": [ "0 | Vesting : Vest", "1 | Chain : Kusama", - "2 | Nonce : 50283", + "2 | Nonce : 1", "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -12765,22 +12757,20 @@ { "index": 531, "name": "Vesting_Vest_other", - "blob": "1c01008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12790,20 +12780,20 @@ { "index": 532, "name": "Vesting_Vest_other", - "blob": "1c01008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -12815,20 +12805,20 @@ { "index": 533, "name": "Vesting_Vest_other", - "blob": "1c01008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.000000000987" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12838,66 +12828,66 @@ { "index": 534, "name": "Vesting_Vest_other", - "blob": "1c01008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", - "2 | Tip : KSM 0.00123456789" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 535, "name": "Vesting_Vest_other", - "blob": "1c01008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c01006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6" + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Vesting : Vest other", - "1 | Target [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "1 | Target [2/2] : 1Z3SQRDB6", + "1 | Target [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "1 | Target [2/2] : G1ft7ngXT", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 536, "name": "Vesting_Merge_schedules", - "blob": "1c04343000009d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c049d1c0000d3040000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 7325", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Schedule1 index : 7325", + "2 | Schedule2 index : 1235", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 7325", + "1 | Schedule1 index : 7325", + "2 | Schedule2 index : 1235", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12907,43 +12897,41 @@ { "index": 537, "name": "Vesting_Merge_schedules", - "blob": "1c043430000034300000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c049d1c00009d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 12340", - "3 | Tip : KSM 0.000055555555" + "1 | Schedule1 index : 7325", + "2 | Schedule2 index : 7325" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 12340", + "1 | Schedule1 index : 7325", + "2 | Schedule2 index : 7325", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 538, "name": "Vesting_Merge_schedules", - "blob": "1c040000000034300000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c0400000000d3040000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", "1 | Schedule1 index : 0", - "2 | Schedule2 index : 12340", - "3 | Tip : KSM 0.000000000987" + "2 | Schedule2 index : 1235", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Vesting : Merge schedules", "1 | Schedule1 index : 0", - "2 | Schedule2 index : 12340", + "2 | Schedule2 index : 1235", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12953,22 +12941,20 @@ { "index": 539, "name": "Vesting_Merge_schedules", - "blob": "1c04343000009d1c0000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c0400000000f7010000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 7325", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "1 | Schedule1 index : 0", + "2 | Schedule2 index : 503", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 12340", - "2 | Schedule2 index : 7325", + "1 | Schedule1 index : 0", + "2 | Schedule2 index : 503", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -12978,49 +12964,47 @@ { "index": 540, "name": "Vesting_Merge_schedules", - "blob": "1c049d1c0000f7010000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1c04d3040000d3040000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", - "2 | Schedule2 index : 503", - "3 | Tip : KSM 0.000055555555" + "1 | Schedule1 index : 1235", + "2 | Schedule2 index : 1235" ], "output_expert": [ "0 | Vesting : Merge schedules", - "1 | Schedule1 index : 7325", - "2 | Schedule2 index : 503", + "1 | Schedule1 index : 1235", + "2 | Schedule2 index : 1235", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 541, "name": "Proxy_Proxy", - "blob": "1e00421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d010300002c000000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Real [2/2] : 1me9MXvVn", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", "2 | Force proxy type : Staking", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 5.552342355555" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Real [2/2] : 1me9MXvVn", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", "2 | Force proxy type : Staking", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13030,26 +13014,26 @@ { "index": 542, "name": "Proxy_Proxy", - "blob": "1e002c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054010200002c000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010000002c000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Real [2/2] : 2GoCpzMtB", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.000055555555" + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Real [2/2] : 2GoCpzMtB", - "2 | Force proxy type : Governance", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 100", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13059,28 +13043,26 @@ { "index": 543, "name": "Proxy_Proxy", - "blob": "1e006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166010300002c000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Real [2/2] : 2uX6ovmqC", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Governance", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Real [2/2] : 2uX6ovmqC", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Governance", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", "5 | Nonce : 50283", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13090,57 +13072,53 @@ { "index": 544, "name": "Proxy_Proxy", - "blob": "1e006257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166010000002c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010000002c000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Real [2/2] : 2uX6ovmqC", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", - "3 | Call [2/2] : 0.0000044%", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "3 | Call [2/2] : 0.0000044%" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Real [2/2] : 2uX6ovmqC", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", "2 | Force proxy type : Any", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 545, "name": "Proxy_Proxy", - "blob": "1e0074dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f010300002c000000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Real [2/2] : 3mpD1YowH", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Governance", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", - "4 | Tip : KSM 0.000055555555" + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Proxy", - "1 | Real [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Real [2/2] : 3mpD1YowH", - "2 | Force proxy type : Staking", + "1 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Real [2/2] : DyGtAWNbn", + "2 | Force proxy type : Governance", "3 | Call [1/2] : Fill block", "3 | Call [2/2] : 0.0000044%", "4 | Chain : Kusama", "5 | Nonce : 1", - "6 | Tip : KSM 0.000055555555", + "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13150,26 +13128,24 @@ { "index": 546, "name": "Proxy_Add_proxy", - "blob": "1e015670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f0201000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f02ff030000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : Governance", - "3 | Delay : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "3 | Delay : 1023", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : Governance", - "3 | Delay : 1", + "3 | Delay : 1023", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 100", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13179,21 +13155,21 @@ { "index": 547, "name": "Proxy_Add_proxy", - "blob": "1e0174dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92f037b000000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f01ac350000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Delegate [2/2] : 3mpD1YowH", - "2 | Proxy type : Staking", - "3 | Delay : 123", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", + "3 | Delay : 13740", "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Delegate [2/2] : 3mpD1YowH", - "2 | Proxy type : Staking", - "3 | Delay : 123", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", + "3 | Delay : 13740", "4 | Chain : Kusama", "5 | Nonce : 50283", "6 | Tip : KSM 0.00123456789", @@ -13206,23 +13182,23 @@ { "index": 548, "name": "Proxy_Add_proxy", - "blob": "1e01e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840017b000000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f027b000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Delegate [2/2] : zBUmsjRJA", - "2 | Proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", "3 | Delay : 123", "4 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Delegate [2/2] : zBUmsjRJA", - "2 | Proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", "3 | Delay : 123", "4 | Chain : Kusama", - "5 | Nonce : 100", + "5 | Nonce : 0", "6 | Tip : KSM 0.000000000987", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13233,26 +13209,24 @@ { "index": 549, "name": "Proxy_Add_proxy", - "blob": "1e016257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add2083184681660125010000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f02ff030000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Delegate [2/2] : 2uX6ovmqC", - "2 | Proxy type : NonTransfer", - "3 | Delay : 293", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", + "3 | Delay : 1023", + "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Delegate [2/2] : 2uX6ovmqC", - "2 | Proxy type : NonTransfer", - "3 | Delay : 293", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", + "3 | Delay : 1023", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 1", + "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13262,77 +13236,73 @@ { "index": 550, "name": "Proxy_Add_proxy", - "blob": "1e016257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add2083184681660325010000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f027b000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Delegate [2/2] : 2uX6ovmqC", - "2 | Proxy type : Staking", - "3 | Delay : 293", - "4 | Tip : KSM 5.552342355555" + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", + "3 | Delay : 123" ], "output_expert": [ "0 | Proxy : Add proxy", - "1 | Delegate [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "1 | Delegate [2/2] : 2uX6ovmqC", - "2 | Proxy type : Staking", - "3 | Delay : 293", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", + "3 | Delay : 123", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 551, "name": "Proxy_Remove_proxy", - "blob": "1e02c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a4303ff030000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0325010000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Delegate [2/2] : nEdzjPoWQ", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : Staking", - "3 | Delay : 1023", - "4 | Tip : KSM 0.000000000987" + "3 | Delay : 293" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Delegate [2/2] : nEdzjPoWQ", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : Staking", - "3 | Delay : 1023", + "3 | Delay : 293", "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 552, "name": "Proxy_Remove_proxy", - "blob": "1e02e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c8400100000000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f007b000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Delegate [2/2] : zBUmsjRJA", - "2 | Proxy type : NonTransfer", - "3 | Delay : 0", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Any", + "3 | Delay : 123", "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Delegate [2/2] : zBUmsjRJA", - "2 | Proxy type : NonTransfer", - "3 | Delay : 0", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Any", + "3 | Delay : 123", "4 | Chain : Kusama", - "5 | Nonce : 2339", + "5 | Nonce : 0", "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13343,24 +13313,24 @@ { "index": 553, "name": "Proxy_Remove_proxy", - "blob": "1e022c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054027b000000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0100000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Delegate [2/2] : 2GoCpzMtB", - "2 | Proxy type : Governance", - "3 | Delay : 123", - "4 | Tip : KSM 0.000055555555" + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", + "3 | Delay : 0", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Delegate [2/2] : 2GoCpzMtB", - "2 | Proxy type : Governance", - "3 | Delay : 123", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", + "3 | Delay : 0", "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.000055555555", + "5 | Nonce : 50283", + "6 | Tip : KSM 5.552342355555", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13370,24 +13340,24 @@ { "index": 554, "name": "Proxy_Remove_proxy", - "blob": "1e02066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d171502b3e30100d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0325010000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Delegate [2/2] : ZN2wsYzvW", - "2 | Proxy type : Governance", - "3 | Delay : 123827", - "4 | Tip : KSM 5.552342355555" + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Staking", + "3 | Delay : 293", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Delegate [2/2] : ZN2wsYzvW", - "2 | Proxy type : Governance", - "3 | Delay : 123827", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Proxy type : Staking", + "3 | Delay : 293", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 5.552342355555", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13397,23 +13367,23 @@ { "index": 555, "name": "Proxy_Remove_proxy", - "blob": "1e02066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d17150100000000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e026a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f0101000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Delegate [2/2] : ZN2wsYzvW", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : NonTransfer", - "3 | Delay : 0", + "3 | Delay : 1", "4 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxy", - "1 | Delegate [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Delegate [2/2] : ZN2wsYzvW", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", "2 | Proxy type : NonTransfer", - "3 | Delay : 0", + "3 | Delay : 1", "4 | Chain : Kusama", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : KSM 0.000055555555", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13424,16 +13394,16 @@ { "index": 556, "name": "Proxy_Remove_proxies", - "blob": "1e03d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", "2 | Nonce : 50283", - "3 | Tip : KSM 5.552342355555", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13443,35 +13413,33 @@ { "index": 557, "name": "Proxy_Remove_proxies", - "blob": "1e03d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Proxy : Remove proxies", - "1 | Tip : KSM 5.552342355555" + "0 | Proxy : Remove proxies" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 558, "name": "Proxy_Remove_proxies", - "blob": "1e03d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 0", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13481,37 +13449,33 @@ { "index": 559, "name": "Proxy_Remove_proxies", - "blob": "1e03d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Proxy : Remove proxies", - "1 | Tip : KSM 0.000000000987" + "0 | Proxy : Remove proxies" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000000000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 560, "name": "Proxy_Remove_proxies", - "blob": "1e03d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e03d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Remove proxies", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Remove proxies", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13521,46 +13485,44 @@ { "index": 561, "name": "Proxy_Anonymous", - "blob": "1e0403ac3500005c00d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400010000004e03d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Staking", - "2 | Delay : 13740", - "3 | Index : 92", - "4 | Tip : KSM 0.00123456789" + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 846" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Staking", - "2 | Delay : 13740", - "3 | Index : 92", + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 846", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 562, "name": "Proxy_Anonymous", - "blob": "1e0403250100000004d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0402b3e301005c00d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Staking", - "2 | Delay : 293", - "3 | Index : 1024", + "1 | Proxy type : Governance", + "2 | Delay : 123827", + "3 | Index : 92", "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : Staking", - "2 | Delay : 293", - "3 | Index : 1024", + "1 | Proxy type : Governance", + "2 | Delay : 123827", + "3 | Index : 92", "4 | Chain : Kusama", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", @@ -13571,51 +13533,45 @@ { "index": 563, "name": "Proxy_Anonymous", - "blob": "1e04007b0000004e03d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400250100000100d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", - "2 | Delay : 123", - "3 | Index : 846", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "2 | Delay : 293", + "3 | Index : 1" ], "output_expert": [ "0 | Proxy : Anonymous", "1 | Proxy type : Any", - "2 | Delay : 123", - "3 | Index : 846", + "2 | Delay : 293", + "3 | Index : 1", "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 564, "name": "Proxy_Anonymous", - "blob": "1e0401ff0300005c00d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400010000000100d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : NonTransfer", - "2 | Delay : 1023", - "3 | Index : 92", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 1", + "4 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : NonTransfer", - "2 | Delay : 1023", - "3 | Index : 92", + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 1", "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", + "5 | Nonce : 0", + "6 | Tip : KSM 0.00123456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13625,22 +13581,24 @@ { "index": 565, "name": "Proxy_Anonymous", - "blob": "1e0401000000000100d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e0400010000002c01d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Anonymous", - "1 | Proxy type : NonTransfer", - "2 | Delay : 0", - "3 | Index : 1", - "4 | Tip : KSM 0.000055555555" + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 300", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Anonymous", - "1 | Proxy type : NonTransfer", - "2 | Delay : 0", - "3 | Index : 1", + "1 | Proxy type : Any", + "2 | Delay : 1", + "3 | Index : 300", "4 | Chain : Kusama", "5 | Nonce : 2339", - "6 | Tip : KSM 0.000055555555", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13650,28 +13608,28 @@ { "index": 566, "name": "Proxy_Kill_anonymous", - "blob": "1e05066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715022c018830d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f020004dc0916d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Spawner [2/2] : ZN2wsYzvW", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", "2 | Proxy type : Governance", - "3 | Index : 300", - "4 | Height : 34", - "5 | Ext index : 12", - "6 | Tip : KSM 0.00123456789" + "3 | Index : 1024", + "4 | Height : 55", + "5 | Ext index : 1410", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Spawner [2/2] : ZN2wsYzvW", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", "2 | Proxy type : Governance", - "3 | Index : 300", - "4 | Height : 34", - "5 | Ext index : 12", + "3 | Index : 1024", + "4 | Height : 55", + "5 | Ext index : 1410", "6 | Chain : Kusama", "7 | Nonce : 1", - "8 | Tip : KSM 0.00123456789", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13681,59 +13639,59 @@ { "index": 567, "name": "Proxy_Kill_anonymous", - "blob": "1e052c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b705403010032bcf23532bcf235d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f035c00091696fb6477d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", "2 | Proxy type : Staking", - "3 | Index : 1", - "4 | Height : 226275084", - "5 | Ext index : 226275084" + "3 | Index : 92", + "4 | Height : 1410", + "5 | Ext index : 500776677", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", "2 | Proxy type : Staking", - "3 | Index : 1", - "4 | Height : 226275084", - "5 | Ext index : 226275084", + "3 | Index : 92", + "4 | Height : 1410", + "5 | Ext index : 500776677", "6 | Chain : Kusama", "7 | Nonce : 100", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Tip : KSM 5.552342355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 568, "name": "Proxy_Kill_anonymous", - "blob": "1e052c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054012c018888d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f022c01f1990916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", - "2 | Proxy type : NonTransfer", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", "3 | Index : 300", - "4 | Height : 34", - "5 | Ext index : 34", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789" + "4 | Height : 9852", + "5 | Ext index : 1410", + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", - "2 | Proxy type : NonTransfer", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : Governance", "3 | Index : 300", - "4 | Height : 34", - "5 | Ext index : 34", + "4 | Height : 9852", + "5 | Ext index : 1410", "6 | Chain : Kusama", - "7 | Nonce : 0", - "8 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "8 | Tip [2/2] : 456789", + "7 | Nonce : 1", + "8 | Tip : KSM 0.00123456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13743,28 +13701,28 @@ { "index": 569, "name": "Proxy_Kill_anonymous", - "blob": "1e052c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054032c013032bcf235d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f005c00f199dcd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", - "2 | Proxy type : Staking", - "3 | Index : 300", - "4 | Height : 12", - "5 | Ext index : 226275084", - "6 | Tip : KSM 0.000055555555" + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : Any", + "3 | Index : 92", + "4 | Height : 9852", + "5 | Ext index : 55", + "6 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "1 | Spawner [2/2] : 2GoCpzMtB", - "2 | Proxy type : Staking", - "3 | Index : 300", - "4 | Height : 12", - "5 | Ext index : 226275084", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : Any", + "3 | Index : 92", + "4 | Height : 9852", + "5 | Ext index : 55", "6 | Chain : Kusama", "7 | Nonce : 2339", - "8 | Tip : KSM 0.000055555555", + "8 | Tip : KSM 0.000000000987", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13774,28 +13732,28 @@ { "index": 570, "name": "Proxy_Kill_anonymous", - "blob": "1e05c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b034e035a83100f88d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e056a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f014e0396fb6477f199d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Spawner [2/2] : Wk42jTTrE", - "2 | Proxy type : Staking", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", "3 | Index : 846", - "4 | Height : 63185110", - "5 | Ext index : 34", - "6 | Tip : KSM 0.000000000987" + "4 | Height : 500776677", + "5 | Ext index : 9852", + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Proxy : Kill anonymous", - "1 | Spawner [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Spawner [2/2] : Wk42jTTrE", - "2 | Proxy type : Staking", + "1 | Spawner [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Spawner [2/2] : DyGtAWNbn", + "2 | Proxy type : NonTransfer", "3 | Index : 846", - "4 | Height : 63185110", - "5 | Ext index : 34", + "4 | Height : 500776677", + "5 | Ext index : 9852", "6 | Chain : Kusama", - "7 | Nonce : 50283", - "8 | Tip : KSM 0.000000000987", + "7 | Nonce : 1", + "8 | Tip : KSM 0.00123456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13805,30 +13763,30 @@ { "index": 571, "name": "Proxy_Proxy_announced", - "blob": "1e09c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a436257717a34d64421b1014a84ae6a04ad9fb9420a9c9e07ab2add208318468166010100002c000000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Delegate [2/2] : nEdzjPoWQ", - "2 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Real [2/2] : 2uX6ovmqC", - "3 | Force proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Tip : KSM 0.000055555555" + "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "1 | Delegate [2/2] : nEdzjPoWQ", - "2 | Real [1/2] : EoGBmrVJ8V1jc974Sh9ga9F8uWzwsDRDB2RmBx", - "2 | Real [2/2] : 2uX6ovmqC", - "3 | Force proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 50283", + "7 | Tip : KSM 5.552342355555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13838,61 +13796,65 @@ { "index": 572, "name": "Proxy_Proxy_announced", - "blob": "1e095670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4fc687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b010000002c000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", - "2 | Real [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Real [2/2] : Wk42jTTrE", - "3 | Force proxy type : Any", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Governance", "4 | Call [1/2] : Fill block", - "4 | Call [2/2] : 0.0000044%" + "4 | Call [2/2] : 0.0000044%", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", - "2 | Real [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Real [2/2] : Wk42jTTrE", - "3 | Force proxy type : Any", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Governance", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 0", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 573, "name": "Proxy_Proxy_announced", - "blob": "1e09421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02d066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715010100002c000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010200002c000000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Delegate [2/2] : 1me9MXvVn", - "2 | Real [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | Real [2/2] : ZN2wsYzvW", - "3 | Force proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Governance", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Tip : KSM 5.552342355555" + "5 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Delegate [2/2] : 1me9MXvVn", - "2 | Real [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "2 | Real [2/2] : ZN2wsYzvW", - "3 | Force proxy type : NonTransfer", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Governance", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 2339", - "7 | Tip : KSM 5.552342355555", + "6 | Nonce : 1", + "7 | Tip : KSM 0.000000000987", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13902,63 +13864,59 @@ { "index": 574, "name": "Proxy_Proxy_announced", - "blob": "1e095670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f5670d5a741951d40d614ac174209797f2d3065d09c1da2644fc562ddf6788b4f010200002c000000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", - "2 | Real [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "2 | Real [2/2] : G2gesBwNB", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", - "4 | Call [2/2] : 0.0000044%", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789" + "4 | Call [2/2] : 0.0000044%" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "1 | Delegate [2/2] : G2gesBwNB", - "2 | Real [1/2] : EXf9vooPUbaL7W8HCSkcGyTVWRdwLaVAVLMXaA", - "2 | Real [2/2] : G2gesBwNB", - "3 | Force proxy type : Governance", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", + "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 100", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "6 | Nonce : 50283", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 575, "name": "Proxy_Proxy_announced", - "blob": "1e09421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dc81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43010300002c000000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1e096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f010300002c000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Delegate [2/2] : 1me9MXvVn", - "2 | Real [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Real [2/2] : nEdzjPoWQ", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%" ], "output_expert": [ "0 | Proxy : Proxy announced", - "1 | Delegate [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "1 | Delegate [2/2] : 1me9MXvVn", - "2 | Real [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Real [2/2] : nEdzjPoWQ", + "1 | Delegate [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Delegate [2/2] : DyGtAWNbn", + "2 | Real [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Real [2/2] : DyGtAWNbn", "3 | Force proxy type : Staking", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Chain : Kusama", - "6 | Nonce : 100", + "6 | Nonce : 2339", "7 | Era Phase : 61", "8 | Era Period : 64", "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -13968,44 +13926,34 @@ { "index": 576, "name": "Multisig_As_multi", - "blob": "1f0101000ccea150e974ce5cc3d4abb85e38b0c92d3a222d429f607748bc0de2e6e433880b6c4e6ce8aeb63aaf84906e1d9d974574c33d1aa259c9f87e4516d124a5fa70513ef2d34364033db5b1bdba50bca88b03d1a4d30c42dc8955a7a975ff04aa0c2401aa700000102700001800002c000000010000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0101000482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa700000102700001800002c000000012362000000000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", "1 | Threshold : 1", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789" + "6 | Max weight : 25123", + "7 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Multisig : As multi", "1 | Threshold : 1", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 0", + "6 | Max weight : 25123", "7 | Chain : Kusama", - "8 | Nonce : 100", - "9 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "9 | Tip [2/2] : 456789", + "8 | Nonce : 1", + "9 | Tip : KSM 0.000055555555", "10 | Era Phase : 61", "11 | Era Period : 64", "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14015,93 +13963,89 @@ { "index": 577, "name": "Multisig_As_multi", - "blob": "1f014e031830a66dbf8ceffea6269c49221fb0a2e50e01c90322f073a82b379f8ecf9cd377da35626db94fcd2af849348ea51d8dc9355d08608cc148808c6d85685113d3194ef3a997f758fb479f1fe4bd425cb3db57ac7b69b7f61ff9f7fe6cb8ec775579a0eb7ad531b7a856d851fe77405de70c9fba053b0063e77c47542a69713d18387c68abdc5c5f8a320906b9f7fa6bdbaca625aa571d7445b7017b37df6a56cb5690673d4708d4e9084aa21c0c015e933d104ce47ef2232c3be6be2025a12a9c6401aa700000102700001800002c000000000000000000000000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0101000482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa700000102700001800002c000000012362000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 846", - "2 | Other signatories [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "2 | Other signatories [2/12] : m3uYMdDnw", - "2 | Other signatories [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "2 | Other signatories [4/12] : eN42iFxdC", - "2 | Other signatories [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "2 | Other signatories [6/12] : E5YyvY58q", - "2 | Other signatories [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "2 | Other signatories [8/12] : yPTJKVj5W", - "2 | Other signatories [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "2 | Other signatories [10/12] : nqJHdbWqW", - "2 | Other signatories [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "2 | Other signatories [12/12] : t9eiJ5mQg", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : False", - "6 | Max weight : 0", - "7 | Tip : KSM 5.552342355555" + "5 | Store call : True", + "6 | Max weight : 25123" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 846", - "2 | Other signatories [1/12] : Dg7Fo7SZyPCMCCZVscpT7UUC9SuhxeFqt6y3ZL", - "2 | Other signatories [2/12] : m3uYMdDnw", - "2 | Other signatories [3/12] : HWRpESPaHeow7sfC3hgE4xRXxp4yr68uZFThbL", - "2 | Other signatories [4/12] : eN42iFxdC", - "2 | Other signatories [5/12] : EMqdpdr7hbnw2qrBqKrLmBWq6nCgLq6NySZ448", - "2 | Other signatories [6/12] : E5YyvY58q", - "2 | Other signatories [7/12] : GDK8aU53tfGzDGqFKa56pUrCiUadggK2cppHEY", - "2 | Other signatories [8/12] : yPTJKVj5W", - "2 | Other signatories [9/12] : FPSYpL8sjW3oyhdJ6AdZSveioQSnhxDRSatjYa", - "2 | Other signatories [10/12] : nqJHdbWqW", - "2 | Other signatories [11/12] : Fqf5h2TrgwcnxFKzxNts94rdm53TDwh3Qr2HHA", - "2 | Other signatories [12/12] : t9eiJ5mQg", + "1 | Threshold : 1", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : False", - "6 | Max weight : 0", + "5 | Store call : True", + "6 | Max weight : 25123", "7 | Chain : Kusama", "8 | Nonce : 1", - "9 | Tip : KSM 5.552342355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "12 | Block [2/2] : 01197a149ca93654499ea3dafe" + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 578, "name": "Multisig_As_multi", - "blob": "1f01000404ba095e54cde13bd8a44adcd1bde3bb1e66ef8af6ea5ebad75bffbdfa374a283701aa700000102700001800002c000000012362000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f015c001838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700001800002c000000010000000000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "1 | Threshold : 92", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 25123", - "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "7 | Tip [2/2] : 456789" + "6 | Max weight : 0", + "7 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 1024", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "1 | Threshold : 92", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", "5 | Store call : True", - "6 | Max weight : 25123", + "6 | Max weight : 0", "7 | Chain : Kusama", - "8 | Nonce : 50283", - "9 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "9 | Tip [2/2] : 456789", + "8 | Nonce : 0", + "9 | Tip : KSM 0.000000000987", "10 | Era Phase : 61", "11 | Era Period : 64", "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14111,54 +14055,58 @@ { "index": 579, "name": "Multisig_As_multi", - "blob": "1f012c01183a829c163b1e6b1e6dfd0314cc7b0f52af95c5b229818ee21798ccf5eaf2c16a24c56842c62d3394343ec1df35fe93011c6eb2a7d7df2c6fa034f10c68147867d08ba449fac4a5f4ffd8fccc7a9ac498d9641e5529c95d2f1b91f3273f6f0e4b925c18828db0f797fff64435f657019b7b8c295a2bfb315de911ec8623042a2dfcc7416f272c296337b99414959ff213f220522b85f649fec353bf9cb769606c7c4b493a8cef1f62f050f1bc325876c0f5ef17b3572ec5f2a05d7ef66782272d01aa700000102700001800002c000000012362000000000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f014e031cc42d88583dc936f6a0bd3605c45f99a4ba2c29f343205302738a370f12250622d48d6ae19ee00d62852774bec2277d772869b229c64343abd87d5acd2f26b95e3e7d1929c3d48157069b962056f49c458fb224d2d1f172a51bee5273a5fcb169f4ca900ff62e3efa94a764bc9821a68c2cc904e0e1a7174ee588a67de0d65305d87d306969605b38697d7ffc8e3cae7a2ff782552eb0aa743ad961c6a2d5037788929d686bab169b14623bb47c0bc26acbbfca076fdd1cf7549b067987e577664e2097fa4a0497b41878d71d35145abe7f9df374dc6698abcbe71aea55a7e27201aa700000102700001800002c000000002362000000000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 300", - "2 | Other signatories [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "2 | Other signatories [2/12] : BgjDiuBYC", - "2 | Other signatories [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "2 | Other signatories [4/12] : 87e3n88MK", - "2 | Other signatories [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "2 | Other signatories [6/12] : TXXUkCQow", - "2 | Other signatories [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "2 | Other signatories [8/12] : vcSiQLjiJ", - "2 | Other signatories [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "2 | Other signatories [10/12] : GvHZw4YER", - "2 | Other signatories [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "2 | Other signatories [12/12] : YRYebRK3W", + "1 | Threshold : 846", + "2 | Other signatories [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "2 | Other signatories [2/14] : Wdk6br5YQ", + "2 | Other signatories [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "2 | Other signatories [4/14] : BmoqLJxyA", + "2 | Other signatories [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "2 | Other signatories [6/14] : kVGQ3xjtt", + "2 | Other signatories [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "2 | Other signatories [8/14] : EjcU4JCyR", + "2 | Other signatories [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "2 | Other signatories [10/14] : KAv6rp1cu", + "2 | Other signatories [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "2 | Other signatories [12/14] : qd5iDUNuG", + "2 | Other signatories [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "2 | Other signatories [14/14] : wnihdWnXG", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", + "5 | Store call : False", "6 | Max weight : 25123", - "7 | Tip : KSM 0.000055555555" + "7 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 300", - "2 | Other signatories [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "2 | Other signatories [2/12] : BgjDiuBYC", - "2 | Other signatories [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "2 | Other signatories [4/12] : 87e3n88MK", - "2 | Other signatories [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "2 | Other signatories [6/12] : TXXUkCQow", - "2 | Other signatories [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "2 | Other signatories [8/12] : vcSiQLjiJ", - "2 | Other signatories [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "2 | Other signatories [10/12] : GvHZw4YER", - "2 | Other signatories [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "2 | Other signatories [12/12] : YRYebRK3W", + "1 | Threshold : 846", + "2 | Other signatories [1/14] : H1YRr4YifWnH9Cu2wR7goU1Ferq6zgHSJF8GLu", + "2 | Other signatories [2/14] : Wdk6br5YQ", + "2 | Other signatories [3/14] : HP1gLoUztAAoQjm4D8ZEFS9twTDE2Z7DoLJqTr", + "2 | Other signatories [4/14] : BmoqLJxyA", + "2 | Other signatories [5/14] : DzFea7rYK8wLTjm4tV3snP2xdJdY9SSCtwYiqT", + "2 | Other signatories [6/14] : kVGQ3xjtt", + "2 | Other signatories [7/14] : J7HNixLTNZBd6sh3cqX9qoF8Sn8E2JkP24QTWQ", + "2 | Other signatories [8/14] : EjcU4JCyR", + "2 | Other signatories [9/14] : HUB3qq7euebcPHiDVyKeoFSoWgvMWrMyM9X1cA", + "2 | Other signatories [10/14] : KAv6rp1cu", + "2 | Other signatories [11/14] : FfPapE2Gs6CzCgbLzW9KS7P9TxnoJesFxPmNxq", + "2 | Other signatories [12/14] : qd5iDUNuG", + "2 | Other signatories [13/14] : ELkwC3GGhPPBCA3Hk3CopmU9yFMj7b6WaXApxU", + "2 | Other signatories [14/14] : wnihdWnXG", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : True", + "5 | Store call : False", "6 | Max weight : 25123", "7 | Chain : Kusama", - "8 | Nonce : 50283", - "9 | Tip : KSM 0.000055555555", + "8 | Nonce : 0", + "9 | Tip : KSM 0.00123456789", "10 | Era Phase : 61", "11 | Era Period : 64", "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14168,126 +14116,152 @@ { "index": 580, "name": "Multisig_As_multi", - "blob": "1f0101001c3aae8b9b77a65189634d9ee0374d189bc5c0ee56f8b0af310564dbb888849f4718c6ae0a1f8365fa619ed94e053cfee58aa43fd6c0463afe4c5e459fd426ee39fed0c139bcd1252ed0cbf8894a8c8c22168fb1e0d86f78c3de4feb9d904d770ba0ab2fde47363a235db34ac4479305b1ef8e8ffb14d40dc221cd40126e6e666c52d9aab1f48bcac4dc25e2726216c487977cdd3135d121368ea773c45b536b444a58cab507fd0f40629ffc3394808a2482af15494c721ba7013ff0d97574c73412244c715f3d3cb35de146f54b14c7f679fb075fee894d203893d513f048813201aa700000102700001800002c000000002362000000000000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f014e031838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700001800002c000000010000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/14] : DuG9R3Xi8vTtZQADSdHF2c9tdzpo6YEmCVU6gq", - "2 | Other signatories [2/14] : RpsNfYijX", - "2 | Other signatories [3/14] : D8ogpCDS6XAX6zb9ftuz4snRKfqG27phaGTeNr", - "2 | Other signatories [4/14] : zVqguqFQu", - "2 | Other signatories [5/14] : JLRhBcHhvXSJvki7w5PtoUSA36JMeTTgRDSsrR", - "2 | Other signatories [6/14] : FycC6jLXT", - "2 | Other signatories [7/14] : GCz2qZomJvNN2fkhJae7enXtPuU5rd2GPBLnn4", - "2 | Other signatories [8/14] : R4TAU9qUj", - "2 | Other signatories [9/14] : ESx7338FVFmDFmh2AR4WSaEXNZ5Ns143nNQ3UK", - "2 | Other signatories [10/14] : 6uyHxmfXA", - "2 | Other signatories [11/14] : EFoSMU39SNwLmH7DEBRaLduU46GTx9PG1HUcPC", - "2 | Other signatories [12/14] : bUzbTEHV9", - "2 | Other signatories [13/14] : Cz7APQFU25ThLpmAt6MDvqkXUr1MrCa7v4UuC4", - "2 | Other signatories [14/14] : hoV2Hn1WM", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : False", - "6 | Max weight : 25123" + "5 | Store call : True", + "6 | Max weight : 0", + "7 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "7 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Multisig : As multi", - "1 | Threshold : 1", - "2 | Other signatories [1/14] : DuG9R3Xi8vTtZQADSdHF2c9tdzpo6YEmCVU6gq", - "2 | Other signatories [2/14] : RpsNfYijX", - "2 | Other signatories [3/14] : D8ogpCDS6XAX6zb9ftuz4snRKfqG27phaGTeNr", - "2 | Other signatories [4/14] : zVqguqFQu", - "2 | Other signatories [5/14] : JLRhBcHhvXSJvki7w5PtoUSA36JMeTTgRDSsrR", - "2 | Other signatories [6/14] : FycC6jLXT", - "2 | Other signatories [7/14] : GCz2qZomJvNN2fkhJae7enXtPuU5rd2GPBLnn4", - "2 | Other signatories [8/14] : R4TAU9qUj", - "2 | Other signatories [9/14] : ESx7338FVFmDFmh2AR4WSaEXNZ5Ns143nNQ3UK", - "2 | Other signatories [10/14] : 6uyHxmfXA", - "2 | Other signatories [11/14] : EFoSMU39SNwLmH7DEBRaLduU46GTx9PG1HUcPC", - "2 | Other signatories [12/14] : bUzbTEHV9", - "2 | Other signatories [13/14] : Cz7APQFU25ThLpmAt6MDvqkXUr1MrCa7v4UuC4", - "2 | Other signatories [14/14] : hoV2Hn1WM", + "1 | Threshold : 846", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", "4 | Call [1/2] : Fill block", "4 | Call [2/2] : 0.0000044%", - "5 | Store call : False", - "6 | Max weight : 25123", + "5 | Store call : True", + "6 | Max weight : 0", "7 | Chain : Kusama", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "11 | Block [2/2] : 01197a149ca93654499ea3dafe" + "8 | Nonce : 2339", + "9 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "9 | Tip [2/2] : 456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "12 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 581, "name": "Multisig_Approve_as_multi", - "blob": "1f022c0104ba095e54cde13bd8a44adcd1bde3bb1e66ef8af6ea5ebad75bffbdfa374a283701aa700000102700002273741de225c19f01ab7fa1eb914c6b26baa8d33b5f11403f1d5cc7534b200b2362000000000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f022c010482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231c01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", "1 | Threshold : 300", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Max weight : 25123", - "6 | Tip : KSM 0.000000000987" + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Max weight : 0" ], "output_expert": [ "0 | Multisig : Approve as multi", "1 | Threshold : 300", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Max weight : 25123", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Max weight : 0", "6 | Chain : Kusama", - "7 | Nonce : 2339", - "8 | Tip : KSM 0.000000000987", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "11 | Block [2/2] : 01197a149ca93654499ea3dafe" + "7 | Nonce : 1", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 582, "name": "Multisig_Approve_as_multi", - "blob": "1f024e0304ba095e54cde13bd8a44adcd1bde3bb1e66ef8af6ea5ebad75bffbdfa374a283701aa700000102700002273741de225c19f01ab7fa1eb914c6b26baa8d33b5f11403f1d5cc7534b200b2362000000000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f024e032080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7d01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", "1 | Threshold : 846", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Max weight : 25123", - "6 | Tip : KSM 0.000000000987" + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Max weight : 0", + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Approve as multi", "1 | Threshold : 846", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Max weight : 25123", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Max weight : 0", "6 | Chain : Kusama", "7 | Nonce : 2339", - "8 | Tip : KSM 0.000000000987", + "8 | Tip : KSM 0.00123456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14297,52 +14271,48 @@ { "index": 583, "name": "Multisig_Approve_as_multi", - "blob": "1f022c01183a829c163b1e6b1e6dfd0314cc7b0f52af95c5b229818ee21798ccf5eaf2c16a24c56842c62d3394343ec1df35fe93011c6eb2a7d7df2c6fa034f10c68147867d08ba449fac4a5f4ffd8fccc7a9ac498d9641e5529c95d2f1b91f3273f6f0e4b925c18828db0f797fff64435f657019b7b8c295a2bfb315de911ec8623042a2dfcc7416f272c296337b99414959ff213f220522b85f649fec353bf9cb769606c7c4b493a8cef1f62f050f1bc325876c0f5ef17b3572ec5f2a05d7ef66782272d01aa70000010270000ff306f837affb14875191057372851c42da004be6a6262c00127c82cc86a81190000000000000000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f025c00149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e92801aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf082362000000000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "2 | Other signatories [2/12] : BgjDiuBYC", - "2 | Other signatories [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "2 | Other signatories [4/12] : 87e3n88MK", - "2 | Other signatories [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "2 | Other signatories [6/12] : TXXUkCQow", - "2 | Other signatories [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "2 | Other signatories [8/12] : vcSiQLjiJ", - "2 | Other signatories [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "2 | Other signatories [10/12] : GvHZw4YER", - "2 | Other signatories [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "2 | Other signatories [12/12] : YRYebRK3W", + "1 | Threshold : 92", + "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "2 | Other signatories [2/10] : nhmBqN68n", + "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "2 | Other signatories [4/10] : auzMC5Tst", + "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "2 | Other signatories [6/10] : 2opmno4dh", + "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "2 | Other signatories [8/10] : 4Bw4jugnm", + "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "2 | Other signatories [10/10] : tKP64yEmd", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : ff306f837affb14875191057372851c42da004", - "4 | Call hash [2/2] : be6a6262c00127c82cc86a8119", - "5 | Max weight : 0", - "6 | Tip : KSM 0.00123456789" + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "5 | Max weight : 25123", + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/12] : Du36RSKRwVNhW9yx5GHxVy6FbjyzGceivyAB86", - "2 | Other signatories [2/12] : BgjDiuBYC", - "2 | Other signatories [3/12] : DQXtDVySZpJXpznQh3HPUcaD8Lbr15FyqKLTKN", - "2 | Other signatories [4/12] : 87e3n88MK", - "2 | Other signatories [5/12] : HHkxdvkj9VshsXqzCEhFwRfziMBTWKTzTWeSnh", - "2 | Other signatories [6/12] : TXXUkCQow", - "2 | Other signatories [7/12] : FtDsFBhfnqTooKgqgUea8pNBvGUDzPH2NaDkhD", - "2 | Other signatories [8/12] : vcSiQLjiJ", - "2 | Other signatories [9/12] : JHkmxkFKvgjNBKCsUNETD78tYCN8GLUUedAY7J", - "2 | Other signatories [10/12] : GvHZw4YER", - "2 | Other signatories [11/12] : FPHpX8KzDVkRvNAy18Anx5s6W2kFNo9Mi87FxY", - "2 | Other signatories [12/12] : YRYebRK3W", + "1 | Threshold : 92", + "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "2 | Other signatories [2/10] : nhmBqN68n", + "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "2 | Other signatories [4/10] : auzMC5Tst", + "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "2 | Other signatories [6/10] : 2opmno4dh", + "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "2 | Other signatories [8/10] : 4Bw4jugnm", + "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "2 | Other signatories [10/10] : tKP64yEmd", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : ff306f837affb14875191057372851c42da004", - "4 | Call hash [2/2] : be6a6262c00127c82cc86a8119", - "5 | Max weight : 0", + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "5 | Max weight : 25123", "6 | Chain : Kusama", "7 | Nonce : 100", - "8 | Tip : KSM 0.00123456789", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14352,40 +14322,52 @@ { "index": 584, "name": "Multisig_Approve_as_multi", - "blob": "1f024e030ccea150e974ce5cc3d4abb85e38b0c92d3a222d429f607748bc0de2e6e433880b6c4e6ce8aeb63aaf84906e1d9d974574c33d1aa259c9f87e4516d124a5fa70513ef2d34364033db5b1bdba50bca88b03d1a4d30c42dc8955a7a975ff04aa0c2401aa700000102700002273741de225c19f01ab7fa1eb914c6b26baa8d33b5f11403f1d5cc7534b200b2362000000000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0200041838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c50401aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf082362000000000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1024", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", "5 | Max weight : 25123", - "6 | Tip : KSM 0.000055555555" + "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1024", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", "5 | Max weight : 25123", "6 | Chain : Kusama", - "7 | Nonce : 50283", - "8 | Tip : KSM 0.000055555555", + "7 | Nonce : 2339", + "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14395,70 +14377,120 @@ { "index": 585, "name": "Multisig_Approve_as_multi", - "blob": "1f022c010ccea150e974ce5cc3d4abb85e38b0c92d3a222d429f607748bc0de2e6e433880b6c4e6ce8aeb63aaf84906e1d9d974574c33d1aa259c9f87e4516d124a5fa70513ef2d34364033db5b1bdba50bca88b03d1a4d30c42dc8955a7a975ff04aa0c2401aa700000102700002273741de225c19f01ab7fa1eb914c6b26baa8d33b5f11403f1d5cc7534b200b0000000000000000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0201002080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7d01aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d00000000000000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Max weight : 0" + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Max weight : 0", + "6 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Approve as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Maybe timepoint [1/2] : 28842", "3 | Maybe timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Max weight : 0", "6 | Chain : Kusama", - "7 | Nonce : 1", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "10 | Block [2/2] : 01197a149ca93654499ea3dafe" + "7 | Nonce : 100", + "8 | Tip : KSM 0.00123456789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "11 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 586, "name": "Multisig_Cancel_as_multi", - "blob": "1f03000404ba095e54cde13bd8a44adcd1bde3bb1e66ef8af6ea5ebad75bffbdfa374a2837aa700000102700000c6c0ef23b26ed2bc67d32255f361aa6324645c8398f7f25a1093dc80af73701d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0300042080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7daa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 1024", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0c6c0ef23b26ed2bc67d32255f361aa6324645", - "4 | Call hash [2/2] : c8398f7f25a1093dc80af73701", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Cancel as multi", "1 | Threshold : 1024", - "2 | Other signatories [1/2] : GnFCypEi8YPk3bmjexayTcZiPuEtu3ck5ir7EP", - "2 | Other signatories [2/2] : L5Frtifrn", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0c6c0ef23b26ed2bc67d32255f361aa6324645", - "4 | Call hash [2/2] : c8398f7f25a1093dc80af73701", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Chain : Kusama", - "6 | Nonce : 0", + "6 | Nonce : 2339", "7 | Tip : KSM 5.552342355555", "8 | Era Phase : 61", "9 | Era Period : 64", @@ -14469,58 +14501,58 @@ { "index": 587, "name": "Multisig_Cancel_as_multi", - "blob": "1f034e0320aa8423e55ad2c1ea1e6e8dc7050983bf4d7806f10510c33d85bee788d3d5db1642b86c5e81a970abf4abce88bda5e0f8af173b59ac9700daf46448fa9955a73246884f7a367e2edff83948a631852e8ef981e55f66e52f12cba731f8b653f21852500d099f23fab1320076a876bf644e106d25d226f1fb5196dfbeb33bcf560d26f2c69cee52175057ec1381f35079248c81c8c87ee3f6b6c9d1c3e22752fd0600b65c3e197e8b862a5d2119e64a3cbd8320787c4bedea67e0e015549d21f0621c0a01419ff51ce4e7adc57f51afafc6bb8407f6048cb73499fca529bbb6fc3c2286f526fdd3968f14f2a8d661c8fb19dc53aa1a7d4515f88a13cc5da1231700aa700000102700000c6c0ef23b26ed2bc67d32255f361aa6324645c8398f7f25a1093dc80af73701d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0301002080b19cbdc5b8b3885fbd06f641d4d0801a26bfc31df45e0a323f4680735f7025c6a6b49f4b4e200916f8642946927b7583a3734219bb769b452c00f1c436d5367e717e0093314a8113efb8197c90a0aefcf568e7e857efe3dbbedc8f23bf6f16d053fc7ce9cef795d544c44aabc6b0b82818914f1a44c36552245ed753d496161405ce06381470059c401403007b8c7229dd9ffac4c01e165044c7dcff11c3725c95eb3e87484481c32b4360402b2f6d6c355feda4f5374019bdc753f800791168569cba86bc4b93bb4bd224e5273ffb218c01bf07c1fe6db223eb142461f73004d203dfc75700d89d89f738d6f6c0e487c8cd57f7b204ea2dd32ccfba06de7daa70000010270000bc1f4378ab31896bf73f945c9300c36489ae79c68cdea4b7ea49d6604eba610bd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/16] : GRturKXKsnmgfbNHsNFUZDbbt3ZFE2ynMkJbQR", - "2 | Other signatories [2/16] : EG3cvTGuz", - "2 | Other signatories [3/16] : E5oTpwjA5gjdBL6JCjLfSzT7AV1my1dYu6TwyP", - "2 | Other signatories [4/16] : JBFsu4UeT", - "2 | Other signatories [5/16] : EAoMyJ94uVCqYiiSrKK9FTJP6z4KtBc4jVfcB8", - "2 | Other signatories [6/16] : zqniT2Pb6", - "2 | Other signatories [7/16] : ESFDyDTzpJqpJ8tkMJVdtgWZzymjZVuGdwBYhf", - "2 | Other signatories [8/16] : fRyDn4DPt", - "2 | Other signatories [9/16] : DTPTTEUKWpwq5cWSfbrt5VLRhpoH3NrLiv8GNf", - "2 | Other signatories [10/16] : d4KZ3S5c6", - "2 | Other signatories [11/16] : CbFgyoh1bUz65caCfV7eGFhr3tewwEL4im4D2v", - "2 | Other signatories [12/16] : tEE3P38Ux", - "2 | Other signatories [13/16] : DD5q8WcYEAvQEzXQQq2UMPYSKbxJ1KVMEJua4M", - "2 | Other signatories [14/16] : 524hEpvNx", - "2 | Other signatories [15/16] : DMbEgMn4gq2GN2S12f4TcD1XERCrTEAYB6Po7t", - "2 | Other signatories [16/16] : ixVZUApBk", + "1 | Threshold : 1", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0c6c0ef23b26ed2bc67d32255f361aa6324645", - "4 | Call hash [2/2] : c8398f7f25a1093dc80af73701", - "5 | Tip : KSM 0.000055555555" + "4 | Call hash [1/2] : bc1f4378ab31896bf73f945c9300c36489ae79", + "4 | Call hash [2/2] : c68cdea4b7ea49d6604eba610b", + "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/16] : GRturKXKsnmgfbNHsNFUZDbbt3ZFE2ynMkJbQR", - "2 | Other signatories [2/16] : EG3cvTGuz", - "2 | Other signatories [3/16] : E5oTpwjA5gjdBL6JCjLfSzT7AV1my1dYu6TwyP", - "2 | Other signatories [4/16] : JBFsu4UeT", - "2 | Other signatories [5/16] : EAoMyJ94uVCqYiiSrKK9FTJP6z4KtBc4jVfcB8", - "2 | Other signatories [6/16] : zqniT2Pb6", - "2 | Other signatories [7/16] : ESFDyDTzpJqpJ8tkMJVdtgWZzymjZVuGdwBYhf", - "2 | Other signatories [8/16] : fRyDn4DPt", - "2 | Other signatories [9/16] : DTPTTEUKWpwq5cWSfbrt5VLRhpoH3NrLiv8GNf", - "2 | Other signatories [10/16] : d4KZ3S5c6", - "2 | Other signatories [11/16] : CbFgyoh1bUz65caCfV7eGFhr3tewwEL4im4D2v", - "2 | Other signatories [12/16] : tEE3P38Ux", - "2 | Other signatories [13/16] : DD5q8WcYEAvQEzXQQq2UMPYSKbxJ1KVMEJua4M", - "2 | Other signatories [14/16] : 524hEpvNx", - "2 | Other signatories [15/16] : DMbEgMn4gq2GN2S12f4TcD1XERCrTEAYB6Po7t", - "2 | Other signatories [16/16] : ixVZUApBk", + "1 | Threshold : 1", + "2 | Other signatories [1/16] : FV4QfmYdfUvd23LUKr3HtgbQuCKgqcU1TGi4cs", + "2 | Other signatories [2/16] : cPE9HNZtC", + "2 | Other signatories [3/16] : H4nXAPw3jvcBqmDXyhLwVastM4S8qnooNv1kjE", + "2 | Other signatories [4/16] : d9zfkoLPG", + "2 | Other signatories [5/16] : FS7GMLWN1XFytNky7DxFBdDPxoxxrcEyv5eRoX", + "2 | Other signatories [6/16] : kPRyCgHWG", + "2 | Other signatories [7/16] : HHURiUvVXdQPBKztb3y8Gt2FRkCfr86Svzjg5e", + "2 | Other signatories [8/16] : ihc3wMX7R", + "2 | Other signatories [9/16] : D2aCYakntwAvqiS5d5r5bQMYxi5sajq4Eszt63", + "2 | Other signatories [10/16] : 4VDSd2fVA", + "2 | Other signatories [11/16] : EfiTYK9Kf7vshfGrCsdQdrbXhQTKth3NWGgWDs", + "2 | Other signatories [12/16] : kQZ2XjNoV", + "2 | Other signatories [13/16] : Ew8E7spKwNiC6xv1TZ84K8s5N8L68LNq55VfYY", + "2 | Other signatories [14/16] : 2bm5TtoKh", + "2 | Other signatories [15/16] : Cge6a4J43tiphCRG3S2hcHnKnZF27cZzEjgkTD", + "2 | Other signatories [16/16] : 36FMd9BdM", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 0c6c0ef23b26ed2bc67d32255f361aa6324645", - "4 | Call hash [2/2] : c8398f7f25a1093dc80af73701", + "4 | Call hash [1/2] : bc1f4378ab31896bf73f945c9300c36489ae79", + "4 | Call hash [2/2] : c68cdea4b7ea49d6604eba610b", "5 | Chain : Kusama", - "6 | Nonce : 0", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 1", + "7 | Tip : KSM 5.552342355555", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14530,54 +14562,46 @@ { "index": 588, "name": "Multisig_Cancel_as_multi", - "blob": "1f0301001c3aae8b9b77a65189634d9ee0374d189bc5c0ee56f8b0af310564dbb888849f4718c6ae0a1f8365fa619ed94e053cfee58aa43fd6c0463afe4c5e459fd426ee39fed0c139bcd1252ed0cbf8894a8c8c22168fb1e0d86f78c3de4feb9d904d770ba0ab2fde47363a235db34ac4479305b1ef8e8ffb14d40dc221cd40126e6e666c52d9aab1f48bcac4dc25e2726216c487977cdd3135d121368ea773c45b536b444a58cab507fd0f40629ffc3394808a2482af15494c721ba7013ff0d97574c73412244c715f3d3cb35de146f54b14c7f679fb075fee894d203893d513f0488132aa700000102700002273741de225c19f01ab7fa1eb914c6b26baa8d33b5f11403f1d5cc7534b200bd503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f032c01149e1020f1a9ee428ca121a8e2281493b02603f014561e27f63a35ea2ae18a0717908a17ab3f12c6649981968a24e1a8b1f6198acaa637818e7f076135ce5b437fc6537adbbd296e5b53a83cc673f0b5a387c0c0d21e0ce23cfd93cf3125337b5736932cb1ee9c3ab0ce94d188634d202b8433ca38619ab2e7ba523b176acacd3c9eefb8bc6a3b0cc2b9573d77038cea8487428c570c1b28ccc84ea36888e7e928aa700000102700000845487cde2a526b75bfc972fb35d8be2ed039b4c56521ebd0329ea579a6cf08d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/14] : DuG9R3Xi8vTtZQADSdHF2c9tdzpo6YEmCVU6gq", - "2 | Other signatories [2/14] : RpsNfYijX", - "2 | Other signatories [3/14] : D8ogpCDS6XAX6zb9ftuz4snRKfqG27phaGTeNr", - "2 | Other signatories [4/14] : zVqguqFQu", - "2 | Other signatories [5/14] : JLRhBcHhvXSJvki7w5PtoUSA36JMeTTgRDSsrR", - "2 | Other signatories [6/14] : FycC6jLXT", - "2 | Other signatories [7/14] : GCz2qZomJvNN2fkhJae7enXtPuU5rd2GPBLnn4", - "2 | Other signatories [8/14] : R4TAU9qUj", - "2 | Other signatories [9/14] : ESx7338FVFmDFmh2AR4WSaEXNZ5Ns143nNQ3UK", - "2 | Other signatories [10/14] : 6uyHxmfXA", - "2 | Other signatories [11/14] : EFoSMU39SNwLmH7DEBRaLduU46GTx9PG1HUcPC", - "2 | Other signatories [12/14] : bUzbTEHV9", - "2 | Other signatories [13/14] : Cz7APQFU25ThLpmAt6MDvqkXUr1MrCa7v4UuC4", - "2 | Other signatories [14/14] : hoV2Hn1WM", + "1 | Threshold : 300", + "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "2 | Other signatories [2/10] : nhmBqN68n", + "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "2 | Other signatories [4/10] : auzMC5Tst", + "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "2 | Other signatories [6/10] : 2opmno4dh", + "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "2 | Other signatories [8/10] : 4Bw4jugnm", + "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "2 | Other signatories [10/10] : tKP64yEmd", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", - "5 | Tip : KSM 0.000055555555" + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", + "5 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 1", - "2 | Other signatories [1/14] : DuG9R3Xi8vTtZQADSdHF2c9tdzpo6YEmCVU6gq", - "2 | Other signatories [2/14] : RpsNfYijX", - "2 | Other signatories [3/14] : D8ogpCDS6XAX6zb9ftuz4snRKfqG27phaGTeNr", - "2 | Other signatories [4/14] : zVqguqFQu", - "2 | Other signatories [5/14] : JLRhBcHhvXSJvki7w5PtoUSA36JMeTTgRDSsrR", - "2 | Other signatories [6/14] : FycC6jLXT", - "2 | Other signatories [7/14] : GCz2qZomJvNN2fkhJae7enXtPuU5rd2GPBLnn4", - "2 | Other signatories [8/14] : R4TAU9qUj", - "2 | Other signatories [9/14] : ESx7338FVFmDFmh2AR4WSaEXNZ5Ns143nNQ3UK", - "2 | Other signatories [10/14] : 6uyHxmfXA", - "2 | Other signatories [11/14] : EFoSMU39SNwLmH7DEBRaLduU46GTx9PG1HUcPC", - "2 | Other signatories [12/14] : bUzbTEHV9", - "2 | Other signatories [13/14] : Cz7APQFU25ThLpmAt6MDvqkXUr1MrCa7v4UuC4", - "2 | Other signatories [14/14] : hoV2Hn1WM", + "1 | Threshold : 300", + "2 | Other signatories [1/10] : G9Zsh3dPeNbaiLTT4mSNmS7mcsrPd9m1Q6iuo9", + "2 | Other signatories [2/10] : nhmBqN68n", + "2 | Other signatories [3/10] : FqqSCJa5iiuNhkUD8UAcjY6os3DGsRNZhzNLDq", + "2 | Other signatories [4/10] : auzMC5Tst", + "2 | Other signatories [5/10] : H4MoDcyu4beRfVtxQiJRbwXBcYipCKeQeUEURf", + "2 | Other signatories [6/10] : 2opmno4dh", + "2 | Other signatories [7/10] : Dospif8xbpDbP7454yFcwq5NrMS9q9z56Xou7n", + "2 | Other signatories [8/10] : 4Bw4jugnm", + "2 | Other signatories [9/10] : GAiJ7D9vBkoxBVZtANMDmMbcVAyHHkjpLyzgiG", + "2 | Other signatories [10/10] : tKP64yEmd", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 2273741de225c19f01ab7fa1eb914c6b26baa8", - "4 | Call hash [2/2] : d33b5f11403f1d5cc7534b200b", + "4 | Call hash [1/2] : 0845487cde2a526b75bfc972fb35d8be2ed039", + "4 | Call hash [2/2] : b4c56521ebd0329ea579a6cf08", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Tip : KSM 0.000055555555", + "6 | Nonce : 2339", + "7 | Tip : KSM 0.00123456789", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14587,38 +14611,50 @@ { "index": 589, "name": "Multisig_Cancel_as_multi", - "blob": "1f034e030ccea150e974ce5cc3d4abb85e38b0c92d3a222d429f607748bc0de2e6e433880b6c4e6ce8aeb63aaf84906e1d9d974574c33d1aa259c9f87e4516d124a5fa70513ef2d34364033db5b1bdba50bca88b03d1a4d30c42dc8955a7a975ff04aa0c24aa700000102700003fcea04556505a8236f7dd8dfcb117954823028336fc9d4e48b3028171a3a7ecd503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0301001838e3c579152afb81af724be8d22e5e8764a9aedf4cdca2ee492e15d5c71bb81636fd2d78224ce73c428a098734d96437c2bf5afbacfe7562faec117941026e5dc43af0eae75f9e4db908ea11638903ef4e7d29af3aea883882ba1b026c154503526d8a047f93077dd3e10fa75f01d53849f3a14260cfa009cdcc58e2f162714170a028a89a88dca88921fd36234b00f69af2262fa68e5b4d6165ec3c021e9a5b82c88472a889a7f835f6dd68917976e7fb5f55e0f5d8e0968412803cbb12c504aa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 3fcea04556505a8236f7dd8dfcb11795482302", - "4 | Call hash [2/2] : 8336fc9d4e48b3028171a3a7ec", - "5 | Tip : KSM 0.00123456789" + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", + "5 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 846", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1", + "2 | Other signatories [1/12] : DrurvYebZRH5JrgHHjR7VJBd1qRjpDunZcjdLu", + "2 | Other signatories [2/12] : cvQWPpFkm", + "2 | Other signatories [3/12] : DpRK7FiSPn4tUZag9LRgjwMt2e8Ev3EDMHJ2Yf", + "2 | Other signatories [4/12] : CQAFseSbM", + "2 | Other signatories [5/12] : H1cQsPUXZ9mXi1iAvuPVMPtWBdiY3qmvsrP8Zb", + "2 | Other signatories [6/12] : fYV5bKw79", + "2 | Other signatories [7/12] : ESPz3GeQ4EtoyKAMuwjNgiQ9zQhBoMsESQZcQw", + "2 | Other signatories [8/12] : G9LDWNMg4", + "2 | Other signatories [9/12] : F7zTWu9FyH8K1CHMHEo4sEfPxAQgwML1V42gbn", + "2 | Other signatories [10/12] : VGQhB9Yx2", + "2 | Other signatories [11/12] : FXoJsPcfEdocFRCLRiF6Mt2GWJo2koqshNRo8e", + "2 | Other signatories [12/12] : BwJyoET7z", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 3fcea04556505a8236f7dd8dfcb11795482302", - "4 | Call hash [2/2] : 8336fc9d4e48b3028171a3a7ec", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Chain : Kusama", - "6 | Nonce : 50283", - "7 | Tip : KSM 0.00123456789", + "6 | Nonce : 2339", + "7 | Tip : KSM 0.000000000987", "8 | Era Phase : 61", "9 | Era Period : 64", "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14628,35 +14664,27 @@ { "index": 590, "name": "Multisig_Cancel_as_multi", - "blob": "1f032c010ccea150e974ce5cc3d4abb85e38b0c92d3a222d429f607748bc0de2e6e433880b6c4e6ce8aeb63aaf84906e1d9d974574c33d1aa259c9f87e4516d124a5fa70513ef2d34364033db5b1bdba50bca88b03d1a4d30c42dc8955a7a975ff04aa0c24aa700000102700003fcea04556505a8236f7dd8dfcb117954823028336fc9d4e48b3028171a3a7ecd50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "1f0300040482b8473c44d5793a142531a5340d8047c7ccfb94f0b734b63c77e4138a8b231caa7000001027000037c808a4775d0efd50affb087bb0a7faa66e70cc497974f4ea0aa741e16a87d0d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1024", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 3fcea04556505a8236f7dd8dfcb11795482302", - "4 | Call hash [2/2] : 8336fc9d4e48b3028171a3a7ec", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Multisig : Cancel as multi", - "1 | Threshold : 300", - "2 | Other signatories [1/6] : HFFJXFweM8qBsLkRYMjqxwYiguyvDzdYW5Wy6S", - "2 | Other signatories [2/6] : DuF8wquq8", - "2 | Other signatories [3/6] : F2KzB1dCaSpX9fAyV9yghnc4XYBX9sWaZ6kJRb", - "2 | Other signatories [4/6] : cTYg3tx7z", - "2 | Other signatories [5/6] : DzrcxdiLmvsgnywECxBGJFYebSfQuvnBpdRDUz", - "2 | Other signatories [6/6] : tHmUvhyUM", + "1 | Threshold : 1024", + "2 | Other signatories [1/2] : FXiV5NiMCECX5q7aVDFB62444C9CVYSkyJ3GUw", + "2 | Other signatories [2/2] : 263hGYSem", "3 | Timepoint [1/2] : 28842", "3 | Timepoint [2/2] : 10000", - "4 | Call hash [1/2] : 3fcea04556505a8236f7dd8dfcb11795482302", - "4 | Call hash [2/2] : 8336fc9d4e48b3028171a3a7ec", + "4 | Call hash [1/2] : 37c808a4775d0efd50affb087bb0a7faa66e70", + "4 | Call hash [2/2] : cc497974f4ea0aa741e16a87d0", "5 | Chain : Kusama", "6 | Nonce : 100", "7 | Tip : KSM 5.552342355555", @@ -14668,60 +14696,54 @@ }, { "index": 591, - "name": "Bounties_Propose_bounty", - "blob": "230003d2029649010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Description [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Description [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Description [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Description [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Description [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Description [7/7] : 7fed4553016566979ccedc8c4d56", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "name": "Preimage_Note_preimage", + "blob": "2000100e2a0c49d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "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 [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Description [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Description [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Description [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Description [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Description [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Description [7/7] : 7fed4553016566979ccedc8c4d56", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "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 : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 592, - "name": "Bounties_Propose_bounty", - "blob": "230033158139ae28a3dfaac5fe1560a5e9e05c80c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "2 | Description [2/2] : d3c2213811916ffe6b767ec708" + "name": "Preimage_Note_preimage", + "blob": "200010200b200bd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "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 : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "2 | Description [2/2] : d3c2213811916ffe6b767ec708", - "3 | Chain : Kusama", - "4 | Nonce : 100", + "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 : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14730,106 +14752,106 @@ }, { "index": 593, - "name": "Bounties_Propose_bounty", - "blob": "230003d2029649800c406e8c3b4f44d619dada7f3025b1c70458460c9e974225420cfc774132f6f4d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "2 | Description [2/2] : 0c9e974225420cfc774132f6f4", - "3 | Tip : KSM 0.000000000987" + "name": "Preimage_Note_preimage", + "blob": "2000100c293435d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "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] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.00123456789", - "2 | Description [1/2] : 0c406e8c3b4f44d619dada7f3025b1c7045846", - "2 | Description [2/2] : 0c9e974225420cfc774132f6f4", - "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.000000000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "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 : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 594, - "name": "Bounties_Propose_bounty", - "blob": "230000010172b749949072208241c0d6513bf29e5e06e606a222af2cc62dd4374ce82b0b0ed13f038ae7b729aa8223ba731bb07016084bcfe507bbc07faa4ed890f9071d40d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.0", - "2 | Description [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "2 | Description [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "2 | Description [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "2 | Description [4/4] : 4ed890f9071d40", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "name": "Preimage_Note_preimage", + "blob": "2000100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "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] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Propose bounty", - "1 | Amount : KSM 0.0", - "2 | Description [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "2 | Description [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "2 | Description [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "2 | Description [4/4] : 4ed890f9071d40", - "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "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 : Kusama", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 595, - "name": "Bounties_Propose_bounty", - "blob": "230033158139ae28a3dfaac5fe1560a5e9e05c0101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ed5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Note_preimage", + "blob": "2000100e2a0c49d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Description [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Description [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Description [4/4] : 9d62d23182367e", - "3 | Tip : KSM 5.552342355555" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 14", + "1 | Bytes [2/4] : 42", + "1 | Bytes [3/4] : 12", + "1 | Bytes [4/4] : 73" ], "output_expert": [ - "0 | Bounties : Propose bounty", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Description [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "2 | Description [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "2 | Description [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "2 | Description [4/4] : 9d62d23182367e", - "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "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 : Kusama", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 596, - "name": "Bounties_Approve_bounty", - "blob": "230132bcf235d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Unnote_preimage", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", - "2 | Tip : KSM 5.552342355555" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14838,40 +14860,42 @@ }, { "index": 597, - "name": "Bounties_Approve_bounty", - "blob": "230130d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Unnote_preimage", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 12", - "2 | Tip : KSM 0.000055555555" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 12", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 598, - "name": "Bounties_Approve_bounty", - "blob": "230132bcf235d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Unnote_preimage", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", - "2 | Tip : KSM 0.000000000987" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14880,19 +14904,21 @@ }, { "index": 599, - "name": "Bounties_Approve_bounty", - "blob": "230132bcf235d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Unnote_preimage", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", - "2 | Tip : KSM 0.00123456789" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 226275084", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14901,19 +14927,21 @@ }, { "index": 600, - "name": "Bounties_Approve_bounty", - "blob": "230130d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Unnote_preimage", + "blob": "2001b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 12", - "2 | Tip : KSM 0.00123456789" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Approve bounty", - "1 | Bounty id : 12", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -14922,218 +14950,106 @@ }, { "index": 601, - "name": "Bounties_Propose_curator", - "blob": "230288008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b08ed73e0dd5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Request_preimage", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.000055555555", - "4 | Tip : KSM 5.552342355555" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.000055555555", - "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 602, - "name": "Bounties_Propose_curator", - "blob": "23025a83100f008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Request_preimage", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 63185110", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 63185110", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.0", - "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 603, - "name": "Bounties_Propose_curator", - "blob": "230288008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b033158139ae28a3dfaac5fe1560a5e9e05cd5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Preimage_Request_preimage", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee [1/2] : KSM 123456789012345678901234567.890123", - "3 | Fee [2/2] : 456789", - "4 | Tip : KSM 0.00123456789" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee [1/2] : KSM 123456789012345678901234567.890123", - "3 | Fee [2/2] : 456789", - "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 604, - "name": "Bounties_Propose_curator", - "blob": "230230008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 12", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.0", - "4 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 12", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.0", - "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 605, - "name": "Bounties_Propose_curator", - "blob": "230288008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b003d2029649d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.00123456789", - "4 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Bounties : Propose curator", - "1 | Bounty id : 34", - "2 | Curator [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Curator [2/2] : 1Z3SQRDB6", - "3 | Fee : KSM 0.00123456789", - "4 | Chain : Kusama", - "5 | Nonce : 2339", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 606, - "name": "Bounties_Unassign_curator", - "blob": "23035a83100fd503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", - "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 607, - "name": "Bounties_Unassign_curator", - "blob": "23035a83100fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 608, - "name": "Bounties_Unassign_curator", - "blob": "23035a83100fd503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 604, + "name": "Preimage_Request_preimage", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 0.000000000987" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" ], "output_expert": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 63185110", + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 609, - "name": "Bounties_Unassign_curator", - "blob": "230388d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 605, + "name": "Preimage_Request_preimage", + "blob": "2002b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 34", + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 34", + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", @@ -15144,20 +15060,22 @@ ] }, { - "index": 610, - "name": "Bounties_Unassign_curator", - "blob": "230388d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 606, + "name": "Preimage_Unrequest_preimage", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 34", - "2 | Tip : KSM 0.000055555555" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Unassign curator", - "1 | Bounty id : 34", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15165,19 +15083,21 @@ ] }, { - "index": 611, - "name": "Bounties_Accept_curator", - "blob": "230488d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 607, + "name": "Preimage_Unrequest_preimage", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -15186,40 +15106,21 @@ ] }, { - "index": 612, - "name": "Bounties_Accept_curator", - "blob": "23045a83100fd503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 0.00123456789" - ], - "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 63185110", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 613, - "name": "Bounties_Accept_curator", - "blob": "230432bcf235d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 608, + "name": "Preimage_Unrequest_preimage", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 226275084", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 226275084", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -15228,20 +15129,22 @@ ] }, { - "index": 614, - "name": "Bounties_Accept_curator", - "blob": "230488d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 609, + "name": "Preimage_Unrequest_preimage", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", - "2 | Tip : KSM 0.000055555555" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15249,20 +15152,24 @@ ] }, { - "index": 615, - "name": "Bounties_Accept_curator", - "blob": "230488d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 610, + "name": "Preimage_Unrequest_preimage", + "blob": "2003b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", - "2 | Tip : KSM 5.552342355555" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Accept curator", - "1 | Bounty id : 34", + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15270,24 +15177,34 @@ ] }, { - "index": 616, - "name": "Bounties_Award_bounty", - "blob": "23055a83100f008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 611, + "name": "Bounties_Propose_bounty", + "blob": "2300000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 63185110", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 0.000000000987" + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.0", + "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 63185110", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.0", + "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15295,23 +15212,27 @@ ] }, { - "index": 617, - "name": "Bounties_Award_bounty", - "blob": "230588008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 612, + "name": "Bounties_Propose_bounty", + "blob": "230003d202964901013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9fd503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 34", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.00123456789", + "2 | Description [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "2 | Description [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "2 | Description [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "2 | Description [4/4] : 29e6b2f9890d9f", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 34", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.00123456789", + "2 | Description [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "2 | Description [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "2 | Description [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "2 | Description [4/4] : 29e6b2f9890d9f", "3 | Chain : Kusama", - "4 | Nonce : 1", + "4 | Nonce : 50283", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -15320,26 +15241,24 @@ ] }, { - "index": 618, - "name": "Bounties_Award_bounty", - "blob": "230532bcf235008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 613, + "name": "Bounties_Propose_bounty", + "blob": "23006d0f80b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 226275084", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Description [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 226275084", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.000000000987", + "2 | Description [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Description [2/2] : 54c8c31cf7ef8c895cc744c6f5", "3 | Chain : Kusama", "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15347,24 +15266,34 @@ ] }, { - "index": 619, - "name": "Bounties_Award_bounty", - "blob": "230530008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 614, + "name": "Bounties_Propose_bounty", + "blob": "23008ed73e0d0102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e9740d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 12", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", - "3 | Tip : KSM 0.000055555555" + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.000055555555", + "2 | Description [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "2 | Description [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "2 | Description [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "2 | Description [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "2 | Description [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "2 | Description [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "2 | Description [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 12", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount : KSM 0.000055555555", + "2 | Description [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "2 | Description [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "2 | Description [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "2 | Description [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "2 | Description [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "2 | Description [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "2 | Description [7/7] : 42ea91e8f32b62aaba0a0c3e9740", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15372,45 +15301,57 @@ ] }, { - "index": 620, - "name": "Bounties_Award_bounty", - "blob": "230530008cbe756327cadd7afae06877fc211aac82dcd7ed2d962f37fcb605f4d3c210b0d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 615, + "name": "Bounties_Propose_bounty", + "blob": "230033158139ae28a3dfaac5fe1560a5e9e05c0102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c4d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 12", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6" + "0 | Bounties : Propose bounty", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Award bounty", - "1 | Bounty id : 12", - "2 | Beneficiary [1/2] : FkroLGtSzdrfxN1vqtbbGB6gp5BEvYTawJEQ94", - "2 | Beneficiary [2/2] : 1Z3SQRDB6", + "0 | Bounties : Propose bounty", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Description [1/7] : b1949666437de73950d06473ca806a691e91e0", + "2 | Description [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "2 | Description [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "2 | Description [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "2 | Description [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "2 | Description [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "2 | Description [7/7] : 15ed00d70e7bb9161e10557d44c4", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 621, - "name": "Bounties_Claim_bounty", - "blob": "230688d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 616, + "name": "Bounties_Approve_bounty", + "blob": "230196fb6477d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 34", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Bounties : Approve bounty", + "1 | Bounty id : 500776677", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 34", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15418,22 +15359,20 @@ ] }, { - "index": 622, - "name": "Bounties_Claim_bounty", - "blob": "23065a83100fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 617, + "name": "Bounties_Approve_bounty", + "blob": "23010916d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 63185110", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Bounties : Approve bounty", + "1 | Bounty id : 1410", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 63185110", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 1410", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15441,17 +15380,17 @@ ] }, { - "index": 623, - "name": "Bounties_Claim_bounty", - "blob": "23065a83100fd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 618, + "name": "Bounties_Approve_bounty", + "blob": "2301dcd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 63185110", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 55", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 63185110", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 55", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", @@ -15462,20 +15401,20 @@ ] }, { - "index": 624, - "name": "Bounties_Claim_bounty", - "blob": "230632bcf235d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 619, + "name": "Bounties_Approve_bounty", + "blob": "230196fb6477d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 226275084", - "2 | Tip : KSM 0.000055555555" + "0 | Bounties : Approve bounty", + "1 | Bounty id : 500776677", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 226275084", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15483,39 +15422,178 @@ ] }, { - "index": 625, - "name": "Bounties_Claim_bounty", - "blob": "230632bcf235d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 620, + "name": "Bounties_Approve_bounty", + "blob": "23010916d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 226275084", - "2 | Tip : KSM 0.000000000987" + "0 | Bounties : Approve bounty", + "1 | Bounty id : 1410", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Claim bounty", - "1 | Bounty id : 226275084", + "0 | Bounties : Approve bounty", + "1 | Bounty id : 1410", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, + { + "index": 621, + "name": "Bounties_Propose_curator", + "blob": "2302f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b0b63ce64c10c05d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 9852", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 9852", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 5.552342355555", + "4 | Chain : Kusama", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 622, + "name": "Bounties_Propose_curator", + "blob": "2302f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 9852", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000055555555", + "4 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 9852", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000055555555", + "4 | Chain : Kusama", + "5 | Nonce : 1", + "6 | Tip : KSM 5.552342355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 623, + "name": "Bounties_Propose_curator", + "blob": "230296fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b03d2029649d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 500776677", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.00123456789", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 500776677", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.00123456789", + "4 | Chain : Kusama", + "5 | Nonce : 0", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 624, + "name": "Bounties_Propose_curator", + "blob": "23020916006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b8ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 1410", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000055555555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 1410", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000055555555", + "4 | Chain : Kusama", + "5 | Nonce : 50283", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 625, + "name": "Bounties_Propose_curator", + "blob": "230296fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75b6d0fd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 500776677", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000000000987", + "4 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Bounties : Propose curator", + "1 | Bounty id : 500776677", + "2 | Curator [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Curator [2/2] : G1ft7ngXT", + "3 | Fee : KSM 0.000000000987", + "4 | Chain : Kusama", + "5 | Nonce : 2339", + "6 | Tip : KSM 0.00123456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, { "index": 626, - "name": "Bounties_Close_bounty", - "blob": "230730d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Unassign_curator", + "blob": "2303f199d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 12", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 9852", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 12", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 9852", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -15528,16 +15606,35 @@ }, { "index": 627, - "name": "Bounties_Close_bounty", - "blob": "230730d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Unassign_curator", + "blob": "230396fb6477d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 12", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677" + ], + "output_expert": [ + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 628, + "name": "Bounties_Unassign_curator", + "blob": "230396fb6477d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 12", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Tip : KSM 0.00123456789", @@ -15548,16 +15645,16 @@ ] }, { - "index": 628, - "name": "Bounties_Close_bounty", - "blob": "230732bcf235d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 629, + "name": "Bounties_Unassign_curator", + "blob": "230396fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 226275084" + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 226275084", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -15567,41 +15664,39 @@ ] }, { - "index": 629, - "name": "Bounties_Close_bounty", - "blob": "23075a83100fd503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 630, + "name": "Bounties_Unassign_curator", + "blob": "230396fb6477d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 0.000055555555" + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 63185110", + "0 | Bounties : Unassign curator", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 630, - "name": "Bounties_Close_bounty", - "blob": "23075a83100fd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 631, + "name": "Bounties_Accept_curator", + "blob": "230496fb6477d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 63185110", - "2 | Tip : KSM 0.000055555555" + "0 | Bounties : Accept curator", + "1 | Bounty id : 500776677", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Bounties : Close bounty", - "1 | Bounty id : 63185110", + "0 | Bounties : Accept curator", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15609,102 +15704,43 @@ ] }, { - "index": 631, - "name": "Bounties_Extend_bounty_expiry", - "blob": "2308880102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 632, + "name": "Bounties_Accept_curator", + "blob": "23040916d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 34", - "2 | Remark [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "2 | Remark [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "2 | Remark [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "2 | Remark [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "2 | Remark [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "2 | Remark [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "2 | Remark [7/7] : d523795122322c6ae0b92cf4ac98" + "0 | Bounties : Accept curator", + "1 | Bounty id : 1410", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 34", - "2 | Remark [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "2 | Remark [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "2 | Remark [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "2 | Remark [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "2 | Remark [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "2 | Remark [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "2 | Remark [7/7] : d523795122322c6ae0b92cf4ac98", - "3 | Chain : Kusama", - "4 | Nonce : 2339", + "0 | Bounties : Accept curator", + "1 | Bounty id : 1410", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, - { - "index": 632, - "name": "Bounties_Extend_bounty_expiry", - "blob": "230832bcf235010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 226275084", - "2 | Remark [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "2 | Remark [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "2 | Remark [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "2 | Remark [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "2 | Remark [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "2 | Remark [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "2 | Remark [7/7] : 04dca258dce7091bfcfd667a47d7", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" - ], - "output_expert": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 226275084", - "2 | Remark [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "2 | Remark [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "2 | Remark [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "2 | Remark [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "2 | Remark [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "2 | Remark [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "2 | Remark [7/7] : 04dca258dce7091bfcfd667a47d7", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, { "index": 633, - "name": "Bounties_Extend_bounty_expiry", - "blob": "23085a83100f0102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Accept_curator", + "blob": "230496fb6477d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 63185110", - "2 | Remark [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "2 | Remark [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "2 | Remark [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "2 | Remark [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "2 | Remark [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "2 | Remark [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "2 | Remark [7/7] : d523795122322c6ae0b92cf4ac98" + "0 | Bounties : Accept curator", + "1 | Bounty id : 500776677", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 63185110", - "2 | Remark [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "2 | Remark [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "2 | Remark [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "2 | Remark [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "2 | Remark [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "2 | Remark [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "2 | Remark [7/7] : d523795122322c6ae0b92cf4ac98", - "3 | Chain : Kusama", - "4 | Nonce : 50283", + "0 | Bounties : Accept curator", + "1 | Bounty id : 500776677", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15713,128 +15749,90 @@ }, { "index": 634, - "name": "Bounties_Extend_bounty_expiry", - "blob": "230830010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Accept_curator", + "blob": "23040916d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 12", - "2 | Remark [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Remark [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Remark [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Remark [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Remark [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Remark [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Remark [7/7] : 7fed4553016566979ccedc8c4d56", - "3 | Tip : KSM 5.552342355555" + "0 | Bounties : Accept curator", + "1 | Bounty id : 1410", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 12", - "2 | Remark [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "2 | Remark [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "2 | Remark [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "2 | Remark [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "2 | Remark [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "2 | Remark [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "2 | Remark [7/7] : 7fed4553016566979ccedc8c4d56", - "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Accept curator", + "1 | Bounty id : 1410", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 635, - "name": "Bounties_Extend_bounty_expiry", - "blob": "230832bcf23501010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de324791d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Accept_curator", + "blob": "2304dcd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 226275084", - "2 | Remark [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "2 | Remark [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "2 | Remark [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "2 | Remark [4/4] : 6e1755de324791", - "3 | Tip : KSM 0.000000000987" + "0 | Bounties : Accept curator", + "1 | Bounty id : 55" ], "output_expert": [ - "0 | Bounties : Extend bounty expiry", - "1 | Bounty id : 226275084", - "2 | Remark [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "2 | Remark [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "2 | Remark [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "2 | Remark [4/4] : 6e1755de324791", - "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Accept curator", + "1 | Bounty id : 55", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 636, - "name": "Tips_Report_awesome", - "blob": "24000101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367ec687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Award_bounty", + "blob": "230596fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Report awesome", - "1 | Reason [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Reason [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Reason [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Reason [4/4] : 9d62d23182367e", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE" + "0 | Bounties : Award bounty", + "1 | Bounty id : 500776677", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Report awesome", - "1 | Reason [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Reason [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Reason [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Reason [4/4] : 9d62d23182367e", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", + "0 | Bounties : Award bounty", + "1 | Bounty id : 500776677", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 637, - "name": "Tips_Report_awesome", - "blob": "2400010201de05984c217a46e2abaea72c321605e4a6bf9b56cb419c44c07b589c785c6a7a7749da48e6e447fe9a1cca6280c18e9c960da1d8cbd15acde09c4ca8d79e58c971b0a39e0f0e4b3bca2e62831d5464173856cbd8adf169e03a8d5d824bc9f85d1853ddbe7a38ce16a85e9b18e1b872834f04dca258dce7091bfcfd667a47d7421e6f5e36f19a8a1d0b2125b620555780b0553783c54ede9e5b714ea93fa02dd50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Award_bounty", + "blob": "2305f199006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Report awesome", - "1 | Reason [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Reason [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Reason [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Reason [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Reason [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Reason [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Reason [7/7] : 04dca258dce7091bfcfd667a47d7", - "2 | Who [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "2 | Who [2/2] : 1me9MXvVn", - "3 | Tip : KSM 0.000055555555" + "0 | Bounties : Award bounty", + "1 | Bounty id : 9852", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Tips : Report awesome", - "1 | Reason [1/7] : 01de05984c217a46e2abaea72c321605e4a6bf", - "1 | Reason [2/7] : 9b56cb419c44c07b589c785c6a7a7749da48e6", - "1 | Reason [3/7] : e447fe9a1cca6280c18e9c960da1d8cbd15acd", - "1 | Reason [4/7] : e09c4ca8d79e58c971b0a39e0f0e4b3bca2e62", - "1 | Reason [5/7] : 831d5464173856cbd8adf169e03a8d5d824bc9", - "1 | Reason [6/7] : f85d1853ddbe7a38ce16a85e9b18e1b872834f", - "1 | Reason [7/7] : 04dca258dce7091bfcfd667a47d7", - "2 | Who [1/2] : E51ifscgjzVrJyQTxMe9pD5xzx33cj6ZZ6fEEj", - "2 | Who [2/2] : 1me9MXvVn", + "0 | Bounties : Award bounty", + "1 | Bounty id : 9852", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", "4 | Nonce : 100", - "5 | Tip : KSM 0.000055555555", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15843,35 +15841,25 @@ }, { "index": 638, - "name": "Tips_Report_awesome", - "blob": "24000102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Award_bounty", + "blob": "2305dc006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Report awesome", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Who [2/2] : zBUmsjRJA", - "3 | Tip : KSM 0.000000000987" + "0 | Bounties : Award bounty", + "1 | Bounty id : 55", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Report awesome", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "2 | Who [2/2] : zBUmsjRJA", + "0 | Bounties : Award bounty", + "1 | Bounty id : 55", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15880,27 +15868,23 @@ }, { "index": 639, - "name": "Tips_Report_awesome", - "blob": "240080c2c656dcdfcb1aaf0eff158d78cdf48f57092bd3c2213811916ffe6b767ec708c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a43d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Award_bounty", + "blob": "230596fb6477006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Report awesome", - "1 | Reason [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Reason [2/2] : d3c2213811916ffe6b767ec708", - "2 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Who [2/2] : nEdzjPoWQ", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Bounties : Award bounty", + "1 | Bounty id : 500776677", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Tips : Report awesome", - "1 | Reason [1/2] : c2c656dcdfcb1aaf0eff158d78cdf48f57092b", - "1 | Reason [2/2] : d3c2213811916ffe6b767ec708", - "2 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Who [2/2] : nEdzjPoWQ", + "0 | Bounties : Award bounty", + "1 | Bounty id : 500776677", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15909,29 +15893,23 @@ }, { "index": 640, - "name": "Tips_Report_awesome", - "blob": "240001010a26abc8314342b4d37c52be17679795be0b307d868e2b9e3b0deef01dba5a85686d916643a3f2ca0141690224c4ebc6edd3f04bee0b8393c96e1755de3247912c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b7054d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Award_bounty", + "blob": "2305dc006c067dadb825463115948cd0548bad7b631dfa872962de0b646d380de32ff75bd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Report awesome", - "1 | Reason [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Reason [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Reason [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Reason [4/4] : 6e1755de324791", - "2 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Who [2/2] : 2GoCpzMtB", - "3 | Tip : KSM 0.00123456789" + "0 | Bounties : Award bounty", + "1 | Bounty id : 55", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Tips : Report awesome", - "1 | Reason [1/4] : 0a26abc8314342b4d37c52be17679795be0b30", - "1 | Reason [2/4] : 7d868e2b9e3b0deef01dba5a85686d916643a3", - "1 | Reason [3/4] : f2ca0141690224c4ebc6edd3f04bee0b8393c9", - "1 | Reason [4/4] : 6e1755de324791", - "2 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Who [2/2] : 2GoCpzMtB", + "0 | Bounties : Award bounty", + "1 | Bounty id : 55", + "2 | Beneficiary [1/2] : F1xcmfiuf4cYFeFNbwXycQaAyPoE7dzbp3yaYZ", + "2 | Beneficiary [2/2] : G1ft7ngXT", "3 | Chain : Kusama", - "4 | Nonce : 0", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15940,21 +15918,19 @@ }, { "index": 641, - "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Claim_bounty", + "blob": "230696fb6477d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 5.552342355555" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 500776677", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 500776677", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -15963,44 +15939,40 @@ }, { "index": 642, - "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Claim_bounty", + "blob": "2306f199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 9852", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 9852", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 643, - "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Claim_bounty", + "blob": "2306dcd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 55", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 55", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16009,19 +15981,17 @@ }, { "index": 644, - "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Claim_bounty", + "blob": "23060916d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 1410" ], "output_expert": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 1410", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16030,23 +16000,19 @@ }, { "index": 645, - "name": "Tips_Retract_tip", - "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Claim_bounty", + "blob": "2306dcd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Bounties : Claim bounty", + "1 | Bounty id : 55", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Tips : Retract tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "0 | Bounties : Claim bounty", + "1 | Bounty id : 55", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16055,229 +16021,155 @@ }, { "index": 646, - "name": "Tips_Tip_new", - "blob": "2402010172b749949072208241c0d6513bf29e5e06e606a222af2cc62dd4374ce82b0b0ed13f038ae7b729aa8223ba731bb07016084bcfe507bbc07faa4ed890f9071d40c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b270785823689e03c9e02414eb7a5d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Close_bounty", + "blob": "2307f199d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip new", - "1 | Reason [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Reason [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Reason [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Reason [4/4] : 4ed890f9071d40", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Tip : KSM 5.552342355555" + "0 | Bounties : Close bounty", + "1 | Bounty id : 9852", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Tips : Tip new", - "1 | Reason [1/4] : 72b749949072208241c0d6513bf29e5e06e606", - "1 | Reason [2/4] : a222af2cc62dd4374ce82b0b0ed13f038ae7b7", - "1 | Reason [3/4] : 29aa8223ba731bb07016084bcfe507bbc07faa", - "1 | Reason [4/4] : 4ed890f9071d40", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Chain : Kusama", - "5 | Nonce : 0", - "6 | Tip : KSM 5.552342355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Close bounty", + "1 | Bounty id : 9852", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 647, - "name": "Tips_Tip_new", - "blob": "2402010268cfe1b415cb5f1797f57c7fa61c8b84b6e18b63da2a6ca2d42ad1b9a8c286f73761cf18a28bdfd9adec262c26f932b94dcedc63a0cab9eee3bae0404b5ced5770bf7747d72870082a5f5e8efd3106795aa65c82a0ca56b1dc861dcfeb5eba6c0708e3d1a1a0052f0b12bf0a1d9c8103a6067fed4553016566979ccedc8c4d56c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b270785823689e03c9e02414eb7a5d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Close_bounty", + "blob": "23070916d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Reason [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Reason [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Reason [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Reason [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Reason [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Reason [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Tip : KSM 0.000000000987" + "0 | Bounties : Close bounty", + "1 | Bounty id : 1410", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 68cfe1b415cb5f1797f57c7fa61c8b84b6e18b", - "1 | Reason [2/7] : 63da2a6ca2d42ad1b9a8c286f73761cf18a28b", - "1 | Reason [3/7] : dfd9adec262c26f932b94dcedc63a0cab9eee3", - "1 | Reason [4/7] : bae0404b5ced5770bf7747d72870082a5f5e8e", - "1 | Reason [5/7] : fd3106795aa65c82a0ca56b1dc861dcfeb5eba", - "1 | Reason [6/7] : 6c0708e3d1a1a0052f0b12bf0a1d9c8103a606", - "1 | Reason [7/7] : 7fed4553016566979ccedc8c4d56", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Close bounty", + "1 | Bounty id : 1410", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 648, - "name": "Tips_Tip_new", - "blob": "24020102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6b270785823689e03c9e02414eb7a5d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Close_bounty", + "blob": "230796fb6477d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Tip : KSM 0.00123456789" + "0 | Bounties : Close bounty", + "1 | Bounty id : 500776677" ], "output_expert": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "2 | Who [2/2] : Wk42jTTrE", - "3 | Tip value : 13129377174866968901497896731911", - "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.00123456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Close bounty", + "1 | Bounty id : 500776677", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 649, - "name": "Tips_Tip_new", - "blob": "24020101acc3359cc613f7e6149a20f292985f3dd055a17d947563c8a97bda9e00a73c5ef0d8a784b6a5c8f69ed739b33daf857b034dd30e2cedde4ccf9d62d23182367e2c880165363f0bcbeff473dcdd3f70e9476b39515c8dc37d1449836dad9b70542f71f9a3686c261ee9f4f09dbb52c1b1d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Close_bounty", + "blob": "2307dcd50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip new", - "1 | Reason [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Reason [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Reason [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Reason [4/4] : 9d62d23182367e", - "2 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Who [2/2] : 2GoCpzMtB", - "3 | Tip value : 922957603788131508347775579511322993", - "4 | Tip : KSM 0.000000000987" + "0 | Bounties : Close bounty", + "1 | Bounty id : 55", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Tips : Tip new", - "1 | Reason [1/4] : acc3359cc613f7e6149a20f292985f3dd055a1", - "1 | Reason [2/4] : 7d947563c8a97bda9e00a73c5ef0d8a784b6a5", - "1 | Reason [3/4] : c8f69ed739b33daf857b034dd30e2cedde4ccf", - "1 | Reason [4/4] : 9d62d23182367e", - "2 | Who [1/2] : Dai2WJsd6JgjPw4exqBToiAbzgJ7cn8XKaT1dF", - "2 | Who [2/2] : 2GoCpzMtB", - "3 | Tip value : 922957603788131508347775579511322993", - "4 | Chain : Kusama", - "5 | Nonce : 1", - "6 | Tip : KSM 0.000000000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Close bounty", + "1 | Bounty id : 55", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 650, - "name": "Tips_Tip_new", - "blob": "24020102616ab767d098cdd92eb35365cac1b9f1aafad0896b3bcdff1fb49c85e7e864ec416153492282ad1083dfd9cddd3e68218c1a11c6e94874a630eb93c31a4278659c2a2cff1ec23ce15f90753c471a3ed3b8206686d6bf398859c86e4ff753906002f3a48b85c3f92ff803a7be1c4e9a06957ad523795122322c6ae0b92cf4ac98c81f179bc10420f3924ed70e6a5127d67224b3ec57c9c64295b3061430274a432f71f9a3686c261ee9f4f09dbb52c1b1d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Close_bounty", + "blob": "230796fb6477d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Who [2/2] : nEdzjPoWQ", - "3 | Tip value : 922957603788131508347775579511322993", - "4 | Tip : KSM 0.000055555555" + "0 | Bounties : Close bounty", + "1 | Bounty id : 500776677", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Tip new", - "1 | Reason [1/7] : 616ab767d098cdd92eb35365cac1b9f1aafad0", - "1 | Reason [2/7] : 896b3bcdff1fb49c85e7e864ec416153492282", - "1 | Reason [3/7] : ad1083dfd9cddd3e68218c1a11c6e94874a630", - "1 | Reason [4/7] : eb93c31a4278659c2a2cff1ec23ce15f90753c", - "1 | Reason [5/7] : 471a3ed3b8206686d6bf398859c86e4ff75390", - "1 | Reason [6/7] : 6002f3a48b85c3f92ff803a7be1c4e9a06957a", - "1 | Reason [7/7] : d523795122322c6ae0b92cf4ac98", - "2 | Who [1/2] : H6iL9tX5osoEYBdRvy9LcpXnvZreuDwpYcLUJB", - "2 | Who [2/2] : nEdzjPoWQ", - "3 | Tip value : 922957603788131508347775579511322993", - "4 | Chain : Kusama", - "5 | Nonce : 50283", - "6 | Tip : KSM 0.000055555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "9 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Bounties : Close bounty", + "1 | Bounty id : 500776677", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 651, - "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeda2c1008d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Extend_bounty_expiry", + "blob": "2308f19980c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446" + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 9852", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446", + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 9852", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Nonce : 100", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 652, - "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeda2c1008d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Extend_bounty_expiry", + "blob": "230896fb647780c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446", - "3 | Tip : KSM 0.00123456789" + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 500776677", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", + "3 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446", + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 500776677", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", "3 | Chain : Kusama", - "4 | Nonce : 100", - "5 | Tip : KSM 0.00123456789", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16286,22 +16178,80 @@ }, { "index": 653, - "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe2f71f9a3686c261ee9f4f09dbb52c1b1d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bounties_Extend_bounty_expiry", + "blob": "2308dc01028e121c5d3fb950e59a9a00a54148b09d920764247f20fcf43e0ca405beb3e94162f6fa2bb604c8779ac23cad9fa4c64f4d8303b03234e85b6f3cb63fb6937e3c0a3261fac11152e0da7d9d7a5d8c1a64d0c39116452acb1eab8950286609954314deff8440b4d11637f9438d6bc4d08512b5981e2df7f997de23b266e33ef909d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 922957603788131508347775579511322993", + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 55", + "2 | Remark [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "2 | Remark [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "2 | Remark [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "2 | Remark [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "2 | Remark [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "2 | Remark [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "2 | Remark [7/7] : 981e2df7f997de23b266e33ef909", + "3 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 55", + "2 | Remark [1/7] : 8e121c5d3fb950e59a9a00a54148b09d920764", + "2 | Remark [2/7] : 247f20fcf43e0ca405beb3e94162f6fa2bb604", + "2 | Remark [3/7] : c8779ac23cad9fa4c64f4d8303b03234e85b6f", + "2 | Remark [4/7] : 3cb63fb6937e3c0a3261fac11152e0da7d9d7a", + "2 | Remark [5/7] : 5d8c1a64d0c39116452acb1eab895028660995", + "2 | Remark [6/7] : 4314deff8440b4d11637f9438d6bc4d08512b5", + "2 | Remark [7/7] : 981e2df7f997de23b266e33ef909", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 0.000055555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 654, + "name": "Bounties_Extend_bounty_expiry", + "blob": "2308f19980b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f5d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 9852", + "2 | Remark [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Remark [2/2] : 54c8c31cf7ef8c895cc744c6f5" + ], + "output_expert": [ + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 9852", + "2 | Remark [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "2 | Remark [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "3 | Chain : Kusama", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 655, + "name": "Bounties_Extend_bounty_expiry", + "blob": "2308dc80c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f4d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 55", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 922957603788131508347775579511322993", + "0 | Bounties : Extend bounty expiry", + "1 | Bounty id : 55", + "2 | Remark [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "2 | Remark [2/2] : 57257aca85a53c1f005b0f70f4", "3 | Chain : Kusama", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -16310,21 +16260,33 @@ ] }, { - "index": 654, - "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe2f71f9a3686c261ee9f4f09dbb52c1b1d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 656, + "name": "Tips_Report_awesome", + "blob": "24000102b1949666437de73950d06473ca806a691e91e045e1928e16bb84ddc9e87d300a1a292e9b8bb0ab974a6e75db50bbe23ade3c30db17f1812f308a652a916e551458233f2e8b494dd93811a2835afafc0366a699c7e96963a8c6d65f69268f7a23aec67b13fdd8aa5af1d1043e51a8333f055c15ed00d70e7bb9161e10557d44c46a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 922957603788131508347775579511322993", + "0 | Tips : Report awesome", + "1 | Reason [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Reason [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Reason [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Reason [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Reason [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Reason [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Reason [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 922957603788131508347775579511322993", + "0 | Tips : Report awesome", + "1 | Reason [1/7] : b1949666437de73950d06473ca806a691e91e0", + "1 | Reason [2/7] : 45e1928e16bb84ddc9e87d300a1a292e9b8bb0", + "1 | Reason [3/7] : ab974a6e75db50bbe23ade3c30db17f1812f30", + "1 | Reason [4/7] : 8a652a916e551458233f2e8b494dd93811a283", + "1 | Reason [5/7] : 5afafc0366a699c7e96963a8c6d65f69268f7a", + "1 | Reason [6/7] : 23aec67b13fdd8aa5af1d1043e51a8333f055c", + "1 | Reason [7/7] : 15ed00d70e7bb9161e10557d44c4", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", "3 | Chain : Kusama", "4 | Nonce : 100", "5 | Tip : KSM 5.552342355555", @@ -16335,24 +16297,32 @@ ] }, { - "index": 655, - "name": "Tips_Tip", - "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeda2c1008d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 657, + "name": "Tips_Report_awesome", + "blob": "2400010108d15ce7d0b00cdd30fbc7bbb47b2b79c80c42025c7b718e1a9dab78096045b85bde88bf4ddc4f3b53c3c385072fa3521f5c8e0805a61f5cd7683807d2d3ef096a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446", - "3 | Tip : KSM 5.552342355555" + "0 | Tips : Report awesome", + "1 | Reason [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Reason [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Reason [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Reason [4/4] : 683807d2d3ef09", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip value : 33819446", + "0 | Tips : Report awesome", + "1 | Reason [1/4] : 08d15ce7d0b00cdd30fbc7bbb47b2b79c80c42", + "1 | Reason [2/4] : 025c7b718e1a9dab78096045b85bde88bf4ddc", + "1 | Reason [3/4] : 4f3b53c3c385072fa3521f5c8e0805a61f5cd7", + "1 | Reason [4/4] : 683807d2d3ef09", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 5.552342355555", + "4 | Nonce : 100", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16360,22 +16330,24 @@ ] }, { - "index": 656, - "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 658, + "name": "Tips_Report_awesome", + "blob": "240080b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000000000987" + "0 | Tips : Report awesome", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn" ], "output_expert": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "0 | Tips : Report awesome", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Chain : Kusama", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16383,89 +16355,76 @@ ] }, { - "index": 657, - "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 659, + "name": "Tips_Report_awesome", + "blob": "240080b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Report awesome", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 658, - "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" - ], - "output_expert": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Report awesome", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 659, - "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 660, + "name": "Tips_Report_awesome", + "blob": "240080c065071bea25639dcd75c190b7dd9a21f6013d57257aca85a53c1f005b0f70f46a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Report awesome", + "1 | Reason [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Reason [2/2] : 57257aca85a53c1f005b0f70f4", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Tips : Close tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Report awesome", + "1 | Reason [1/2] : c065071bea25639dcd75c190b7dd9a21f6013d", + "1 | Reason [2/2] : 57257aca85a53c1f005b0f70f4", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 660, - "name": "Tips_Close_tip", - "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 661, + "name": "Tips_Retract_tip", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Close tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Tips : Close tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16473,68 +16432,45 @@ ] }, { - "index": 661, - "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 662, + "name": "Tips_Retract_tip", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, - { - "index": 662, - "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Tips : Slash tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" - ], - "output_expert": [ - "0 | Tips : Slash tip", - "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, { "index": 663, - "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Retract_tip", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16543,21 +16479,23 @@ }, { "index": 664, - "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Retract_tip", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16566,21 +16504,23 @@ }, { "index": 665, - "name": "Tips_Slash_tip", - "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Retract_tip", + "blob": "2401b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", - "2 | Tip : KSM 0.000055555555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Tips : Slash tip", + "0 | Tips : Retract tip", "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16589,94 +16529,132 @@ }, { "index": 666, - "name": "Gilt_Place_bid", - "blob": "26006d0ff7010000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip_new", + "blob": "240201013b9896a8e79f8c359ec2a48b8dfae600ac3fa6c077cb1e8bd9044239503a06d1ef9d2c41a90cbdc6c22afae375496ff615727ba31503ce1bed29e6b2f9890d9f6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f39c9d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.000000000987", - "2 | Duration : 503", - "3 | Tip : KSM 0.00123456789" + "0 | Tips : Tip new", + "1 | Reason [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Reason [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Reason [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Reason [4/4] : 29e6b2f9890d9f", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12878", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.000000000987", - "2 | Duration : 503", - "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Tip new", + "1 | Reason [1/4] : 3b9896a8e79f8c359ec2a48b8dfae600ac3fa6", + "1 | Reason [2/4] : c077cb1e8bd9044239503a06d1ef9d2c41a90c", + "1 | Reason [3/4] : bdc6c22afae375496ff615727ba31503ce1bed", + "1 | Reason [4/4] : 29e6b2f9890d9f", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12878", + "4 | Chain : Kusama", + "5 | Nonce : 0", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 667, - "name": "Gilt_Place_bid", - "blob": "260003d20296499d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip_new", + "blob": "240280b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f9a505dbfd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.00123456789", - "2 | Duration : 7325", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Tips : Tip new", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 802640934", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.00123456789", - "2 | Duration : 7325", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Tip new", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 802640934", + "4 | Chain : Kusama", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 668, - "name": "Gilt_Place_bid", - "blob": "26000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip_new", + "blob": "24020102508ed77b11fc385d6982cb1ea1c16fe51cffc82b06c5861142c48f854e00ba796ea59a478d0ac93eab2de16c6b254578fb8443205ade63b2391428758164360c897096e626f204f7c9b4ef1a63d803b45bdcff83452f7ad692f6687bd81e78b9937a8242ee70109853ad6a5fa231bf80aa4a42ea91e8f32b62aaba0a0c3e97406a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fc9bfd503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.0", - "2 | Duration : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Tips : Tip new", + "1 | Reason [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Reason [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Reason [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Reason [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Reason [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Reason [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Reason [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12274", + "4 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 0.0", - "2 | Duration : 0", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Tip new", + "1 | Reason [1/7] : 508ed77b11fc385d6982cb1ea1c16fe51cffc8", + "1 | Reason [2/7] : 2b06c5861142c48f854e00ba796ea59a478d0a", + "1 | Reason [3/7] : c93eab2de16c6b254578fb8443205ade63b239", + "1 | Reason [4/7] : 1428758164360c897096e626f204f7c9b4ef1a", + "1 | Reason [5/7] : 63d803b45bdcff83452f7ad692f6687bd81e78", + "1 | Reason [6/7] : b9937a8242ee70109853ad6a5fa231bf80aa4a", + "1 | Reason [7/7] : 42ea91e8f32b62aaba0a0c3e9740", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12274", + "4 | Chain : Kusama", + "5 | Nonce : 50283", + "6 | Tip : KSM 5.552342355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 669, - "name": "Gilt_Place_bid", - "blob": "26000b63ce64c10c059d1c0000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip_new", + "blob": "24020101e0dd9c16771f0500a4c2dc39c191507a2bfb3c53cc64a08a2e086536054be8495f2c437d12cca229ebf7524d08566ca15014598d93287239416ef8294aecb62b6a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fc9bfd5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 5.552342355555", - "2 | Duration : 7325", - "3 | Tip : KSM 0.00123456789" + "0 | Tips : Tip new", + "1 | Reason [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Reason [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Reason [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Reason [4/4] : 6ef8294aecb62b", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12274" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount : KSM 5.552342355555", - "2 | Duration : 7325", - "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.00123456789", + "0 | Tips : Tip new", + "1 | Reason [1/4] : e0dd9c16771f0500a4c2dc39c191507a2bfb3c", + "1 | Reason [2/4] : 53cc64a08a2e086536054be8495f2c437d12cc", + "1 | Reason [3/4] : a229ebf7524d08566ca15014598d9328723941", + "1 | Reason [4/4] : 6ef8294aecb62b", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12274", + "4 | Chain : Kusama", + "5 | Nonce : 1", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16685,48 +16663,54 @@ }, { "index": 670, - "name": "Gilt_Place_bid", - "blob": "260033158139ae28a3dfaac5fe1560a5e9e05c9d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip_new", + "blob": "240280b3db2f5014c9e287ed1637f60e293907d507cb54c8c31cf7ef8c895cc744c6f56a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305f39c9d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 7325", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Tips : Tip new", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12878", + "4 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Gilt : Place bid", - "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "1 | Amount [2/2] : 456789", - "2 | Duration : 7325", - "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + "0 | Tips : Tip new", + "1 | Reason [1/2] : b3db2f5014c9e287ed1637f60e293907d507cb", + "1 | Reason [2/2] : 54c8c31cf7ef8c895cc744c6f5", + "2 | Who [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "2 | Who [2/2] : DyGtAWNbn", + "3 | Tip value : 12878", + "4 | Chain : Kusama", + "5 | Nonce : 0", + "6 | Tip : KSM 0.000000000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "9 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { "index": 671, - "name": "Gilt_Retract_bid", - "blob": "26018ed73e0dd3040000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe9a505dbfd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 1235", - "3 | Tip : KSM 5.552342355555" + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 802640934", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 1235", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 802640934", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 5.552342355555", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16735,21 +16719,23 @@ }, { "index": 672, - "name": "Gilt_Retract_bid", - "blob": "260103d202964900000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe9a505dbfd5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.00123456789", - "2 | Duration : 0", - "3 | Tip : KSM 0.000055555555" + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 802640934", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.00123456789", - "2 | Duration : 0", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 802640934", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16758,20 +16744,22 @@ }, { "index": 673, - "name": "Gilt_Retract_bid", - "blob": "26018ed73e0dd3040000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe821c2f4dd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 1235", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 323733280", "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 1235", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 323733280", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -16781,21 +16769,23 @@ }, { "index": 674, - "name": "Gilt_Retract_bid", - "blob": "26016d0f9d1c0000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafec9bfd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000000000987", - "2 | Duration : 7325", - "3 | Tip : KSM 0.000000000987" + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 12274", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000000000987", - "2 | Duration : 7325", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 12274", "3 | Chain : Kusama", "4 | Nonce : 2339", - "5 | Tip : KSM 0.000000000987", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16804,23 +16794,23 @@ }, { "index": 675, - "name": "Gilt_Retract_bid", - "blob": "26018ed73e0d00000000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Tip", + "blob": "2403b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafec9bfd503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 0", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789" + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 12274", + "3 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Gilt : Retract bid", - "1 | Amount : KSM 0.000055555555", - "2 | Duration : 0", + "0 | Tips : Tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip value : 12274", "3 | Chain : Kusama", "4 | Nonce : 1", - "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "5 | Tip [2/2] : 456789", + "5 | Tip : KSM 0.000000000987", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16829,20 +16819,1002 @@ }, { "index": 676, - "name": "Bagslist_Rebag", - "blob": "270074dcae8b0fc2b827d1ffc7d23d4cf55ab12d65844489fb06b14a5a614f31c92fd503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tips_Close_tip", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Dislocated [2/2] : 3mpD1YowH", - "2 | Tip : KSM 5.552342355555" + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : FDYdQsQZcsmLgWaP9dUQSQ1n7zaRLjHMhtRWu5", - "1 | Dislocated [2/2] : 3mpD1YowH", + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 677, + "name": "Tips_Close_tip", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 678, + "name": "Tips_Close_tip", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + ], + "output_expert": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 679, + "name": "Tips_Close_tip", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe" + ], + "output_expert": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 680, + "name": "Tips_Close_tip", + "blob": "2404b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Tips : Close tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 681, + "name": "Tips_Slash_tip", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 682, + "name": "Tips_Slash_tip", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 683, + "name": "Tips_Slash_tip", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 684, + "name": "Tips_Slash_tip", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 685, + "name": "Tips_Slash_tip", + "blob": "2405b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafed503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Tips : Slash tip", + "1 | Hash [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "1 | Hash [2/2] : 01197a149ca93654499ea3dafe", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 686, + "name": "Gilt_Place_bid", + "blob": "260033158139ae28a3dfaac5fe1560a5e9e05cf7010000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 503", + "3 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 503", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 687, + "name": "Gilt_Place_bid", + "blob": "26000b63ce64c10c05f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 5.552342355555", + "2 | Duration : 503", + "3 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 5.552342355555", + "2 | Duration : 503", + "3 | Chain : Kusama", + "4 | Nonce : 50283", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 688, + "name": "Gilt_Place_bid", + "blob": "26006d0ff7010000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.000000000987", + "2 | Duration : 503", + "3 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.000000000987", + "2 | Duration : 503", + "3 | Chain : Kusama", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 689, + "name": "Gilt_Place_bid", + "blob": "260000d3040000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.0", + "2 | Duration : 1235", + "3 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount : KSM 0.0", + "2 | Duration : 1235", + "3 | Chain : Kusama", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 690, + "name": "Gilt_Place_bid", + "blob": "260033158139ae28a3dfaac5fe1560a5e9e05c34300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 12340" + ], + "output_expert": [ + "0 | Gilt : Place bid", + "1 | Amount [1/2] : KSM 123456789012345678901234567.890123", + "1 | Amount [2/2] : 456789", + "2 | Duration : 12340", + "3 | Chain : Kusama", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 691, + "name": "Gilt_Retract_bid", + "blob": "26018ed73e0d00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.000055555555", + "2 | Duration : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.000055555555", + "2 | Duration : 0", + "3 | Chain : Kusama", + "4 | Nonce : 50283", + "5 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "5 | Tip [2/2] : 456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 692, + "name": "Gilt_Retract_bid", + "blob": "260103d202964900000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0" + ], + "output_expert": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 0", + "3 | Chain : Kusama", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 693, + "name": "Gilt_Retract_bid", + "blob": "26018ed73e0df7010000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.000055555555", + "2 | Duration : 503", + "3 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.000055555555", + "2 | Duration : 503", + "3 | Chain : Kusama", + "4 | Nonce : 100", + "5 | Tip : KSM 5.552342355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 694, + "name": "Gilt_Retract_bid", + "blob": "260100d3040000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.0", + "2 | Duration : 1235", + "3 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.0", + "2 | Duration : 1235", + "3 | Chain : Kusama", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 695, + "name": "Gilt_Retract_bid", + "blob": "260103d20296499d1c0000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 7325", + "3 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Gilt : Retract bid", + "1 | Amount : KSM 0.00123456789", + "2 | Duration : 7325", + "3 | Chain : Kusama", + "4 | Nonce : 50283", + "5 | Tip : KSM 0.000000000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "8 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 696, + "name": "Bagslist_Rebag", + "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 697, + "name": "Bagslist_Rebag", + "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 698, + "name": "Bagslist_Rebag", + "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 699, + "name": "Bagslist_Rebag", + "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 700, + "name": "Bagslist_Rebag", + "blob": "27006a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Bagslist : Rebag", + "1 | Dislocated [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Dislocated [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 701, + "name": "Bagslist_Put_in_front_of", + "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 702, + "name": "Bagslist_Put_in_front_of", + "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 703, + "name": "Bagslist_Put_in_front_of", + "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 704, + "name": "Bagslist_Put_in_front_of", + "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 705, + "name": "Bagslist_Put_in_front_of", + "blob": "27016a49989d54dba43fe890046b7f61713548071cd78ccc46cfa1e9a72146bb305fd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Bagslist : Put in front of", + "1 | Lighter [1/2] : EygTQsJruAG8Nh7RsKVp9FY9SK4Z1Eovj7PQTM", + "1 | Lighter [2/2] : DyGtAWNbn", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 706, + "name": "Configuration_Set_validation_upgrade_cooldown", + "blob": "330001000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 1", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 1", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 707, + "name": "Configuration_Set_validation_upgrade_cooldown", + "blob": "3300b3e30100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 123827", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 123827", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 708, + "name": "Configuration_Set_validation_upgrade_cooldown", + "blob": "330000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 709, + "name": "Configuration_Set_validation_upgrade_cooldown", + "blob": "3300ff030000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 1023", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 1023", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 710, + "name": "Configuration_Set_validation_upgrade_cooldown", + "blob": "3300b3e30100d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 123827", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade cooldown", + "1 | New : 123827", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 711, + "name": "Configuration_Set_validation_upgrade_delay", + "blob": "330125010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 293", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 293", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 712, + "name": "Configuration_Set_validation_upgrade_delay", + "blob": "3301ff030000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 1023" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 1023", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 713, + "name": "Configuration_Set_validation_upgrade_delay", + "blob": "330100000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 714, + "name": "Configuration_Set_validation_upgrade_delay", + "blob": "3301b3e30100d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 123827", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 123827", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 715, + "name": "Configuration_Set_validation_upgrade_delay", + "blob": "330100000000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 0" + ], + "output_expert": [ + "0 | Configuration : Set validation upgrade delay", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 716, + "name": "Configuration_Set_code_retention_period", + "blob": "330225010000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 293", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 293", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 717, + "name": "Configuration_Set_code_retention_period", + "blob": "3302b3e30100d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 123827" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 123827", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 718, + "name": "Configuration_Set_code_retention_period", + "blob": "330201000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 1" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 1", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 719, + "name": "Configuration_Set_code_retention_period", + "blob": "33027b000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 123", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 123", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 720, + "name": "Configuration_Set_code_retention_period", + "blob": "3302ff030000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set code retention period", + "1 | New : 1023", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Configuration : Set code retention period", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -16851,20 +17823,18 @@ ] }, { - "index": 677, - "name": "Bagslist_Rebag", - "blob": "2700066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 721, + "name": "Configuration_Set_max_code_size", + "blob": "330334300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dislocated [2/2] : ZN2wsYzvW" + "0 | Configuration : Set max code size", + "1 | New : 12340" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dislocated [2/2] : ZN2wsYzvW", + "0 | Configuration : Set max code size", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16872,22 +17842,22 @@ ] }, { - "index": 678, - "name": "Bagslist_Rebag", - "blob": "2700066f6d5cdd25d495ab4bca0bc13b1ea4c12401f70d998de781242605868d1715d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 722, + "name": "Configuration_Set_max_code_size", + "blob": "3303d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dislocated [2/2] : ZN2wsYzvW", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set max code size", + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : CikuVeoEcWca1jxeHT7BXXbnwGwAeAHZVYFT83", - "1 | Dislocated [2/2] : ZN2wsYzvW", + "0 | Configuration : Set max code size", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16895,22 +17865,20 @@ ] }, { - "index": 679, - "name": "Bagslist_Rebag", - "blob": "2700e0ffdfea6d8ab85974eb4291892338297312b3e238cbe6a980ec24939548c840d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 723, + "name": "Configuration_Set_max_code_size", + "blob": "33039d1c0000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Dislocated [2/2] : zBUmsjRJA", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max code size", + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : HfLFimnow3jwnag5aEeTMH6wtp2WY5h9SsG1z4", - "1 | Dislocated [2/2] : zBUmsjRJA", + "0 | Configuration : Set max code size", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16918,22 +17886,20 @@ ] }, { - "index": 680, - "name": "Bagslist_Rebag", - "blob": "2700c687c5c26d2798cb198a05261681a3284b32fa6205603f4346b0be2dcd6e5d6bd503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 724, + "name": "Configuration_Set_max_code_size", + "blob": "330300000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dislocated [2/2] : Wk42jTTrE", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set max code size", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Bagslist : Rebag", - "1 | Dislocated [1/2] : H4dLCUSmwqnxTFbT8Za2Uan5AgokEyMnigZxYu", - "1 | Dislocated [2/2] : Wk42jTTrE", + "0 | Configuration : Set max code size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16941,20 +17907,41 @@ ] }, { - "index": 681, - "name": "Configuration_Set_validation_upgrade_frequency", - "blob": "330001000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 725, + "name": "Configuration_Set_max_code_size", + "blob": "330300000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max code size", + "1 | New : 0" ], "output_expert": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1", + "0 | Configuration : Set max code size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 726, + "name": "Configuration_Set_max_pov_size", + "blob": "330434300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16962,20 +17949,20 @@ ] }, { - "index": 682, - "name": "Configuration_Set_validation_upgrade_frequency", - "blob": "330000000000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 727, + "name": "Configuration_Set_max_pov_size", + "blob": "330400000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade frequency", + "0 | Configuration : Set max pov size", "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set validation upgrade frequency", + "0 | Configuration : Set max pov size", "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -16983,20 +17970,39 @@ ] }, { - "index": 683, - "name": "Configuration_Set_validation_upgrade_frequency", - "blob": "330025010000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 728, + "name": "Configuration_Set_max_pov_size", + "blob": "330434300000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 293", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set max pov size", + "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 293", + "0 | Configuration : Set max pov size", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 729, + "name": "Configuration_Set_max_pov_size", + "blob": "330434300000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Tip : KSM 0.00123456789" + ], + "output_expert": [ + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17004,19 +18010,42 @@ ] }, { - "index": 684, - "name": "Configuration_Set_validation_upgrade_frequency", - "blob": "3300ff030000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 730, + "name": "Configuration_Set_max_pov_size", + "blob": "330434300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1023", + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Configuration : Set max pov size", + "1 | New : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 731, + "name": "Configuration_Set_max_head_data_size", + "blob": "330534300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max head data size", + "1 | New : 12340", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1023", + "0 | Configuration : Set max head data size", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17025,20 +18054,22 @@ ] }, { - "index": 685, - "name": "Configuration_Set_validation_upgrade_frequency", - "blob": "3300ff030000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 732, + "name": "Configuration_Set_max_head_data_size", + "blob": "3305d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1023", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max head data size", + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set validation upgrade frequency", - "1 | New : 1023", + "0 | Configuration : Set max head data size", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17046,20 +18077,20 @@ ] }, { - "index": 686, - "name": "Configuration_Set_validation_upgrade_delay", - "blob": "3301ac350000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 733, + "name": "Configuration_Set_max_head_data_size", + "blob": "330500000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 13740", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max head data size", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 13740", + "0 | Configuration : Set max head data size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17067,20 +18098,20 @@ ] }, { - "index": 687, - "name": "Configuration_Set_validation_upgrade_delay", - "blob": "3301b3e30100d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 734, + "name": "Configuration_Set_max_head_data_size", + "blob": "33059d1c0000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max head data size", + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", + "0 | Configuration : Set max head data size", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17088,20 +18119,20 @@ ] }, { - "index": 688, - "name": "Configuration_Set_validation_upgrade_delay", - "blob": "33017b000000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 735, + "name": "Configuration_Set_max_head_data_size", + "blob": "3305d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123", + "0 | Configuration : Set max head data size", + "1 | New : 1235", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123", + "0 | Configuration : Set max head data size", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -17111,20 +18142,20 @@ ] }, { - "index": 689, - "name": "Configuration_Set_validation_upgrade_delay", - "blob": "3301b3e30100d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 736, + "name": "Configuration_Set_parathread_cores", + "blob": "3306d3040000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set parathread cores", + "1 | New : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 123827", + "0 | Configuration : Set parathread cores", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17132,20 +18163,20 @@ ] }, { - "index": 690, - "name": "Configuration_Set_validation_upgrade_delay", - "blob": "330101000000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 737, + "name": "Configuration_Set_parathread_cores", + "blob": "330634300000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 1", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set parathread cores", + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set validation upgrade delay", - "1 | New : 1", + "0 | Configuration : Set parathread cores", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17153,19 +18184,19 @@ ] }, { - "index": 691, - "name": "Configuration_Set_code_retention_period", - "blob": "3302ff030000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 738, + "name": "Configuration_Set_parathread_cores", + "blob": "3306f7010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", + "0 | Configuration : Set parathread cores", + "1 | New : 503", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", + "0 | Configuration : Set parathread cores", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17174,36 +18205,38 @@ ] }, { - "index": 692, - "name": "Configuration_Set_code_retention_period", - "blob": "3302ff030000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 739, + "name": "Configuration_Set_parathread_cores", + "blob": "33069d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023" + "0 | Configuration : Set parathread cores", + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", + "0 | Configuration : Set parathread cores", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 693, - "name": "Configuration_Set_code_retention_period", - "blob": "330201000000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 740, + "name": "Configuration_Set_parathread_cores", + "blob": "3306f7010000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1", + "0 | Configuration : Set parathread cores", + "1 | New : 503", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1", + "0 | Configuration : Set parathread cores", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", @@ -17214,20 +18247,20 @@ ] }, { - "index": 694, - "name": "Configuration_Set_code_retention_period", - "blob": "330201000000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 741, + "name": "Configuration_Set_parathread_retries", + "blob": "330734300000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set parathread retries", + "1 | New : 12340", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1", + "0 | Configuration : Set parathread retries", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17235,20 +18268,20 @@ ] }, { - "index": 695, - "name": "Configuration_Set_code_retention_period", - "blob": "3302ff030000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 742, + "name": "Configuration_Set_parathread_retries", + "blob": "3307f7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set parathread retries", + "1 | New : 503", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set code retention period", - "1 | New : 1023", + "0 | Configuration : Set parathread retries", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17256,41 +18289,22 @@ ] }, { - "index": 696, - "name": "Configuration_Set_max_code_size", - "blob": "3303d3040000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 743, + "name": "Configuration_Set_parathread_retries", + "blob": "3307d3040000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 697, - "name": "Configuration_Set_max_code_size", - "blob": "33039d1c0000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max code size", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Configuration : Set max code size", - "1 | New : 7325", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17298,20 +18312,20 @@ ] }, { - "index": 698, - "name": "Configuration_Set_max_code_size", - "blob": "3303f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 744, + "name": "Configuration_Set_parathread_retries", + "blob": "3307f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 503", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -17321,18 +18335,18 @@ ] }, { - "index": 699, - "name": "Configuration_Set_max_code_size", - "blob": "3303d3040000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 745, + "name": "Configuration_Set_parathread_retries", + "blob": "3307d3040000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set max code size", + "0 | Configuration : Set parathread retries", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17340,40 +18354,19 @@ ] }, { - "index": 700, - "name": "Configuration_Set_max_code_size", - "blob": "330334300000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max code size", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" - ], - "output_expert": [ - "0 | Configuration : Set max code size", - "1 | New : 12340", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 701, - "name": "Configuration_Set_max_pov_size", - "blob": "33049d1c0000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 746, + "name": "Configuration_Set_group_rotation_frequency", + "blob": "3308ac350000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 7325", + "0 | Configuration : Set group rotation frequency", + "1 | New : 13740", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 7325", + "0 | Configuration : Set group rotation frequency", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17382,43 +18375,39 @@ ] }, { - "index": 702, - "name": "Configuration_Set_max_pov_size", - "blob": "3304d3040000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 747, + "name": "Configuration_Set_group_rotation_frequency", + "blob": "330801000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set group rotation frequency", + "1 | New : 1" ], "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 1235", + "0 | Configuration : Set group rotation frequency", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 703, - "name": "Configuration_Set_max_pov_size", - "blob": "330434300000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 748, + "name": "Configuration_Set_group_rotation_frequency", + "blob": "33087b000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set group rotation frequency", + "1 | New : 123", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 12340", + "0 | Configuration : Set group rotation frequency", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17426,60 +18415,39 @@ ] }, { - "index": 704, - "name": "Configuration_Set_max_pov_size", - "blob": "33049d1c0000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 7325" - ], - "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 7325", - "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 705, - "name": "Configuration_Set_max_pov_size", - "blob": "3304d3040000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 749, + "name": "Configuration_Set_group_rotation_frequency", + "blob": "3308ff030000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max pov size", - "1 | New : 1235", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set group rotation frequency", + "1 | New : 1023" ], "output_expert": [ - "0 | Configuration : Set max pov size", - "1 | New : 1235", + "0 | Configuration : Set group rotation frequency", + "1 | New : 1023", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 706, - "name": "Configuration_Set_max_head_data_size", - "blob": "33059d1c0000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 750, + "name": "Configuration_Set_group_rotation_frequency", + "blob": "3308b3e30100d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set group rotation frequency", + "1 | New : 123827", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max head data size", - "1 | New : 7325", + "0 | Configuration : Set group rotation frequency", + "1 | New : 123827", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17487,20 +18455,20 @@ ] }, { - "index": 707, - "name": "Configuration_Set_max_head_data_size", - "blob": "330534300000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 751, + "name": "Configuration_Set_chain_availability_period", + "blob": "3309ff030000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set chain availability period", + "1 | New : 1023", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", + "0 | Configuration : Set chain availability period", + "1 | New : 1023", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17508,18 +18476,18 @@ ] }, { - "index": 708, - "name": "Configuration_Set_max_head_data_size", - "blob": "330500000000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 752, + "name": "Configuration_Set_chain_availability_period", + "blob": "33097b000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", - "1 | New : 0" + "0 | Configuration : Set chain availability period", + "1 | New : 123" ], "output_expert": [ - "0 | Configuration : Set max head data size", - "1 | New : 0", + "0 | Configuration : Set chain availability period", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17527,20 +18495,20 @@ ] }, { - "index": 709, - "name": "Configuration_Set_max_head_data_size", - "blob": "330534300000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 753, + "name": "Configuration_Set_chain_availability_period", + "blob": "330901000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set chain availability period", + "1 | New : 1", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", + "0 | Configuration : Set chain availability period", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17548,19 +18516,19 @@ ] }, { - "index": 710, - "name": "Configuration_Set_max_head_data_size", - "blob": "330534300000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 754, + "name": "Configuration_Set_chain_availability_period", + "blob": "33097b000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", + "0 | Configuration : Set chain availability period", + "1 | New : 123", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set max head data size", - "1 | New : 12340", + "0 | Configuration : Set chain availability period", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17569,60 +18537,60 @@ ] }, { - "index": 711, - "name": "Configuration_Set_parathread_cores", - "blob": "3306d3040000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 755, + "name": "Configuration_Set_chain_availability_period", + "blob": "330925010000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread cores", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set chain availability period", + "1 | New : 293" ], "output_expert": [ - "0 | Configuration : Set parathread cores", - "1 | New : 1235", + "0 | Configuration : Set chain availability period", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 712, - "name": "Configuration_Set_parathread_cores", - "blob": "330634300000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 756, + "name": "Configuration_Set_thread_availability_period", + "blob": "330aff030000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread cores", - "1 | New : 12340" + "0 | Configuration : Set thread availability period", + "1 | New : 1023", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set parathread cores", - "1 | New : 12340", + "0 | Configuration : Set thread availability period", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 713, - "name": "Configuration_Set_parathread_cores", - "blob": "3306f7010000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 757, + "name": "Configuration_Set_thread_availability_period", + "blob": "330ab3e30100d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread cores", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set thread availability period", + "1 | New : 123827", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set parathread cores", - "1 | New : 503", + "0 | Configuration : Set thread availability period", + "1 | New : 123827", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17630,20 +18598,20 @@ ] }, { - "index": 714, - "name": "Configuration_Set_parathread_cores", - "blob": "330600000000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 758, + "name": "Configuration_Set_thread_availability_period", + "blob": "330ab3e30100d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread cores", - "1 | New : 0", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set thread availability period", + "1 | New : 123827", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set parathread cores", - "1 | New : 0", + "0 | Configuration : Set thread availability period", + "1 | New : 123827", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17651,18 +18619,18 @@ ] }, { - "index": 715, - "name": "Configuration_Set_parathread_cores", - "blob": "330600000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 759, + "name": "Configuration_Set_thread_availability_period", + "blob": "330aac350000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread cores", - "1 | New : 0" + "0 | Configuration : Set thread availability period", + "1 | New : 13740" ], "output_expert": [ - "0 | Configuration : Set parathread cores", - "1 | New : 0", + "0 | Configuration : Set thread availability period", + "1 | New : 13740", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17670,20 +18638,20 @@ ] }, { - "index": 716, - "name": "Configuration_Set_parathread_retries", - "blob": "33079d1c0000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 760, + "name": "Configuration_Set_thread_availability_period", + "blob": "330a00000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread retries", - "1 | New : 7325", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set thread availability period", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set parathread retries", - "1 | New : 7325", + "0 | Configuration : Set thread availability period", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17691,20 +18659,20 @@ ] }, { - "index": 717, - "name": "Configuration_Set_parathread_retries", - "blob": "33079d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 761, + "name": "Configuration_Set_scheduling_lookahead", + "blob": "330b9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -17714,22 +18682,20 @@ ] }, { - "index": 718, - "name": "Configuration_Set_parathread_retries", - "blob": "330734300000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 762, + "name": "Configuration_Set_scheduling_lookahead", + "blob": "330b34300000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17737,19 +18703,40 @@ ] }, { - "index": 719, - "name": "Configuration_Set_parathread_retries", - "blob": "330700000000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 763, + "name": "Configuration_Set_scheduling_lookahead", + "blob": "330bd3040000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set scheduling lookahead", + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set scheduling lookahead", + "1 | New : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 764, + "name": "Configuration_Set_scheduling_lookahead", + "blob": "330b00000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set parathread retries", + "0 | Configuration : Set scheduling lookahead", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17758,20 +18745,20 @@ ] }, { - "index": 720, - "name": "Configuration_Set_parathread_retries", - "blob": "33079d1c0000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 765, + "name": "Configuration_Set_scheduling_lookahead", + "blob": "330bf7010000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set parathread retries", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set scheduling lookahead", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set parathread retries", - "1 | New : 7325", + "0 | Configuration : Set scheduling lookahead", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17779,20 +18766,20 @@ ] }, { - "index": 721, - "name": "Configuration_Set_group_rotation_frequency", - "blob": "33087b000000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 766, + "name": "Configuration_Set_max_validators_per_core", + "blob": "330c01f7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max validators per core", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123", + "0 | Configuration : Set max validators per core", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17800,19 +18787,19 @@ ] }, { - "index": 722, - "name": "Configuration_Set_group_rotation_frequency", - "blob": "330800000000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 767, + "name": "Configuration_Set_max_validators_per_core", + "blob": "330c01f7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 0", + "0 | Configuration : Set max validators per core", + "1 | New : 503", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 0", + "0 | Configuration : Set max validators per core", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17821,20 +18808,20 @@ ] }, { - "index": 723, - "name": "Configuration_Set_group_rotation_frequency", - "blob": "33087b000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 768, + "name": "Configuration_Set_max_validators_per_core", + "blob": "330c0134300000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set max validators per core", + "1 | New : 12340", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123", + "0 | Configuration : Set max validators per core", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17842,20 +18829,20 @@ ] }, { - "index": 724, - "name": "Configuration_Set_group_rotation_frequency", - "blob": "3308b3e30100d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 769, + "name": "Configuration_Set_max_validators_per_core", + "blob": "330c01d3040000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max validators per core", + "1 | New : 1235", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", + "0 | Configuration : Set max validators per core", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17863,20 +18850,20 @@ ] }, { - "index": 725, - "name": "Configuration_Set_group_rotation_frequency", - "blob": "3308b3e30100d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 770, + "name": "Configuration_Set_max_validators_per_core", + "blob": "330c0100000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max validators per core", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set group rotation frequency", - "1 | New : 123827", + "0 | Configuration : Set max validators per core", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17884,41 +18871,39 @@ ] }, { - "index": 726, - "name": "Configuration_Set_chain_availability_period", - "blob": "330901000000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 771, + "name": "Configuration_Set_max_validators", + "blob": "330d0134300000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set chain availability period", - "1 | New : 1", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max validators", + "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set chain availability period", - "1 | New : 1", + "0 | Configuration : Set max validators", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 727, - "name": "Configuration_Set_chain_availability_period", - "blob": "3309ac350000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 772, + "name": "Configuration_Set_max_validators", + "blob": "330d0134300000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set chain availability period", - "1 | New : 13740", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set max validators", + "1 | New : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set chain availability period", - "1 | New : 13740", + "0 | Configuration : Set max validators", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -17926,19 +18911,19 @@ ] }, { - "index": 728, - "name": "Configuration_Set_chain_availability_period", - "blob": "3309ac350000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 773, + "name": "Configuration_Set_max_validators", + "blob": "330d019d1c0000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set chain availability period", - "1 | New : 13740", + "0 | Configuration : Set max validators", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set chain availability period", - "1 | New : 13740", + "0 | Configuration : Set max validators", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17947,16 +18932,16 @@ ] }, { - "index": 729, - "name": "Configuration_Set_chain_availability_period", - "blob": "330925010000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 774, + "name": "Configuration_Set_max_validators", + "blob": "330d01d3040000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set chain availability period", - "1 | New : 293" + "0 | Configuration : Set max validators", + "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set chain availability period", - "1 | New : 293", + "0 | Configuration : Set max validators", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Era Phase : 61", @@ -17966,19 +18951,19 @@ ] }, { - "index": 730, - "name": "Configuration_Set_chain_availability_period", - "blob": "330925010000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 775, + "name": "Configuration_Set_max_validators", + "blob": "330d01f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set chain availability period", - "1 | New : 293", + "0 | Configuration : Set max validators", + "1 | New : 503", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set chain availability period", - "1 | New : 293", + "0 | Configuration : Set max validators", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -17987,22 +18972,41 @@ ] }, { - "index": 731, - "name": "Configuration_Set_thread_availability_period", - "blob": "330ab3e30100d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 776, + "name": "Configuration_Set_dispute_period", + "blob": "330e9d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set thread availability period", - "1 | New : 123827", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set dispute period", + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set thread availability period", - "1 | New : 123827", + "0 | Configuration : Set dispute period", + "1 | New : 7325", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 777, + "name": "Configuration_Set_dispute_period", + "blob": "330e05000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set dispute period", + "1 | New : 5", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set dispute period", + "1 | New : 5", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18010,20 +19014,20 @@ ] }, { - "index": 732, - "name": "Configuration_Set_thread_availability_period", - "blob": "330a00000000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 778, + "name": "Configuration_Set_dispute_period", + "blob": "330e0a000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set thread availability period", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set dispute period", + "1 | New : 10", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set thread availability period", - "1 | New : 0", + "0 | Configuration : Set dispute period", + "1 | New : 10", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18031,19 +19035,40 @@ ] }, { - "index": 733, - "name": "Configuration_Set_thread_availability_period", - "blob": "330aff030000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 779, + "name": "Configuration_Set_dispute_period", + "blob": "330e0a000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set thread availability period", - "1 | New : 1023", + "0 | Configuration : Set dispute period", + "1 | New : 10", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Configuration : Set dispute period", + "1 | New : 10", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 780, + "name": "Configuration_Set_dispute_period", + "blob": "330e34300000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set dispute period", + "1 | New : 12340", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set thread availability period", - "1 | New : 1023", + "0 | Configuration : Set dispute period", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18052,39 +19077,43 @@ ] }, { - "index": 734, - "name": "Configuration_Set_thread_availability_period", - "blob": "330aff030000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 781, + "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", + "blob": "330fb3e30100d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set thread availability period", - "1 | New : 1023" + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123827", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set thread availability period", - "1 | New : 1023", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123827", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 735, - "name": "Configuration_Set_thread_availability_period", - "blob": "330a25010000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 782, + "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", + "blob": "330f01000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set thread availability period", - "1 | New : 293", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 1", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set thread availability period", - "1 | New : 293", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18092,40 +19121,38 @@ ] }, { - "index": 736, - "name": "Configuration_Set_scheduling_lookahead", - "blob": "330bf7010000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 783, + "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", + "blob": "330f01000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 1" ], "output_expert": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 503", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 1", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 737, - "name": "Configuration_Set_scheduling_lookahead", - "blob": "330bd3040000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 784, + "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", + "blob": "330f7b000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18134,17 +19161,17 @@ ] }, { - "index": 738, - "name": "Configuration_Set_scheduling_lookahead", - "blob": "330bd3040000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 785, + "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", + "blob": "330f7b000000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 1235", + "0 | Configuration : Set dispute post conclusion acceptance", + "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", @@ -18155,19 +19182,19 @@ ] }, { - "index": 739, - "name": "Configuration_Set_scheduling_lookahead", - "blob": "330b34300000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 786, + "name": "Configuration_Set_dispute_max_spam_slots", + "blob": "33109d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 12340", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 7325", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 12340", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18176,16 +19203,16 @@ ] }, { - "index": 740, - "name": "Configuration_Set_scheduling_lookahead", - "blob": "330b00000000d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 787, + "name": "Configuration_Set_dispute_max_spam_slots", + "blob": "33109d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 0" + "0 | Configuration : Set dispute max spam slots", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set scheduling lookahead", - "1 | New : 0", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Era Phase : 61", @@ -18195,20 +19222,22 @@ ] }, { - "index": 741, - "name": "Configuration_Set_max_validators_per_core", - "blob": "330c019d1c0000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 788, + "name": "Configuration_Set_dispute_max_spam_slots", + "blob": "33109d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators per core", + "0 | Configuration : Set dispute max spam slots", "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max validators per core", + "0 | Configuration : Set dispute max spam slots", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18216,22 +19245,20 @@ ] }, { - "index": 742, - "name": "Configuration_Set_max_validators_per_core", - "blob": "330c0100000000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 789, + "name": "Configuration_Set_dispute_max_spam_slots", + "blob": "3310f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators per core", - "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set dispute max spam slots", + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max validators per core", - "1 | New : 0", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18239,17 +19266,17 @@ ] }, { - "index": 743, - "name": "Configuration_Set_max_validators_per_core", - "blob": "330c019d1c0000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 790, + "name": "Configuration_Set_dispute_max_spam_slots", + "blob": "3310f7010000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators per core", - "1 | New : 7325", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 503", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set max validators per core", - "1 | New : 7325", + "0 | Configuration : Set dispute max spam slots", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 0.00123456789", @@ -18260,17 +19287,38 @@ ] }, { - "index": 744, - "name": "Configuration_Set_max_validators_per_core", - "blob": "330c019d1c0000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 791, + "name": "Configuration_Set_dispute_conclusion_by_time_out_period", + "blob": "331125010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators per core", - "1 | New : 7325", + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 293", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 293", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 792, + "name": "Configuration_Set_dispute_conclusion_by_time_out_period", + "blob": "33117b000000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 123", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max validators per core", - "1 | New : 7325", + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 123", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", @@ -18281,22 +19329,20 @@ ] }, { - "index": 745, - "name": "Configuration_Set_max_validators_per_core", - "blob": "330c0134300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 793, + "name": "Configuration_Set_dispute_conclusion_by_time_out_period", + "blob": "3311ff030000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators per core", - "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 1023", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set max validators per core", - "1 | New : 12340", + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18304,20 +19350,39 @@ ] }, { - "index": 746, - "name": "Configuration_Set_max_validators", - "blob": "330d0100000000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 794, + "name": "Configuration_Set_dispute_conclusion_by_time_out_period", + "blob": "33117b000000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 123" ], "output_expert": [ - "0 | Configuration : Set max validators", - "1 | New : 0", + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 795, + "name": "Configuration_Set_dispute_conclusion_by_time_out_period", + "blob": "331101000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 1", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set dispute conclusion by time out per", + "1 | New : 1", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18325,16 +19390,16 @@ ] }, { - "index": 747, - "name": "Configuration_Set_max_validators", - "blob": "330d0100000000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 796, + "name": "Configuration_Set_no_show_slots", + "blob": "331200000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators", + "0 | Configuration : Set no show slots", "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max validators", + "0 | Configuration : Set no show slots", "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 0", @@ -18346,20 +19411,20 @@ ] }, { - "index": 748, - "name": "Configuration_Set_max_validators", - "blob": "330d0100000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 797, + "name": "Configuration_Set_no_show_slots", + "blob": "33129d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators", - "1 | New : 0", + "0 | Configuration : Set no show slots", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max validators", - "1 | New : 0", + "0 | Configuration : Set no show slots", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -18369,20 +19434,20 @@ ] }, { - "index": 749, - "name": "Configuration_Set_max_validators", - "blob": "330d019d1c0000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 798, + "name": "Configuration_Set_no_show_slots", + "blob": "3312f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set no show slots", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max validators", - "1 | New : 7325", + "0 | Configuration : Set no show slots", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18390,19 +19455,19 @@ ] }, { - "index": 750, - "name": "Configuration_Set_max_validators", - "blob": "330d019d1c0000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 799, + "name": "Configuration_Set_no_show_slots", + "blob": "331234300000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max validators", - "1 | New : 7325", + "0 | Configuration : Set no show slots", + "1 | New : 12340", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max validators", - "1 | New : 7325", + "0 | Configuration : Set no show slots", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18411,20 +19476,20 @@ ] }, { - "index": 751, - "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330fff030000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 800, + "name": "Configuration_Set_no_show_slots", + "blob": "33129d1c0000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set no show slots", + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023", + "0 | Configuration : Set no show slots", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18432,18 +19497,18 @@ ] }, { - "index": 752, - "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f7b000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 801, + "name": "Configuration_Set_n_delay_tranches", + "blob": "3313d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123", + "0 | Configuration : Set n delay tranches", + "1 | New : 1235", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 123", + "0 | Configuration : Set n delay tranches", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -18455,40 +19520,19 @@ ] }, { - "index": 753, - "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330f25010000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 293", - "2 | Tip : KSM 0.000000000987" - ], - "output_expert": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 293", - "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 754, - "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330fff030000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 802, + "name": "Configuration_Set_n_delay_tranches", + "blob": "3313f7010000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023", + "0 | Configuration : Set n delay tranches", + "1 | New : 503", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023", + "0 | Configuration : Set n delay tranches", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18497,16 +19541,16 @@ ] }, { - "index": 755, - "name": "Configuration_Set_dispute_post_conclusion_acceptance_period", - "blob": "330fff030000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 803, + "name": "Configuration_Set_n_delay_tranches", + "blob": "3313d3040000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023" + "0 | Configuration : Set n delay tranches", + "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set dispute post conclusion acceptance", - "1 | New : 1023", + "0 | Configuration : Set n delay tranches", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 50283", "4 | Era Phase : 61", @@ -18516,58 +19560,41 @@ ] }, { - "index": 756, - "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "33109d1c0000d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325" - ], - "output_expert": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 7325", - "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 757, - "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "3310d3040000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 804, + "name": "Configuration_Set_n_delay_tranches", + "blob": "331300000000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 1235" + "0 | Configuration : Set n delay tranches", + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 1235", + "0 | Configuration : Set n delay tranches", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 758, - "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "3310d3040000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 805, + "name": "Configuration_Set_n_delay_tranches", + "blob": "33139d1c0000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set n delay tranches", + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 1235", + "0 | Configuration : Set n delay tranches", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18575,18 +19602,18 @@ ] }, { - "index": 759, - "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "331034300000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 806, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "33149d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 12340", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 7325", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 12340", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -18598,58 +19625,58 @@ ] }, { - "index": 760, - "name": "Configuration_Set_dispute_max_spam_slots", - "blob": "331000000000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 807, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "3314f7010000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 503" ], "output_expert": [ - "0 | Configuration : Set dispute max spam slots", - "1 | New : 0", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 761, - "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "3311b3e30100d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 808, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "33149d1c0000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123827" + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 123827", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 762, - "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "331100000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 809, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "3314d3040000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 0" + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 0", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18657,20 +19684,20 @@ ] }, { - "index": 763, - "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "331101000000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 810, + "name": "Configuration_Set_zeroth_delay_tranche_width", + "blob": "3314d3040000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 1235", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1", + "0 | Configuration : Set zeroth delay tranche width", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18678,55 +19705,61 @@ ] }, { - "index": 764, - "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "3311ff030000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 811, + "name": "Configuration_Set_needed_approvals", + "blob": "3315f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1023" + "0 | Configuration : Set needed approvals", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1023", + "0 | Configuration : Set needed approvals", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 765, - "name": "Configuration_Set_dispute_conclusion_by_time_out_period", - "blob": "331101000000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 812, + "name": "Configuration_Set_needed_approvals", + "blob": "33159d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1" + "0 | Configuration : Set needed approvals", + "1 | New : 7325", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set dispute conclusion by time out per", - "1 | New : 1", + "0 | Configuration : Set needed approvals", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 766, - "name": "Configuration_Set_no_show_slots", - "blob": "3312f7010000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 813, + "name": "Configuration_Set_needed_approvals", + "blob": "33159d1c0000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set no show slots", - "1 | New : 503", + "0 | Configuration : Set needed approvals", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set no show slots", - "1 | New : 503", + "0 | Configuration : Set needed approvals", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", @@ -18737,20 +19770,20 @@ ] }, { - "index": 767, - "name": "Configuration_Set_no_show_slots", - "blob": "3312f7010000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 814, + "name": "Configuration_Set_needed_approvals", + "blob": "3315f7010000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set no show slots", + "0 | Configuration : Set needed approvals", "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set no show slots", + "0 | Configuration : Set needed approvals", "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18758,20 +19791,22 @@ ] }, { - "index": 768, - "name": "Configuration_Set_no_show_slots", - "blob": "3312d3040000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 815, + "name": "Configuration_Set_needed_approvals", + "blob": "3315d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set no show slots", + "0 | Configuration : Set needed approvals", "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set no show slots", + "0 | Configuration : Set needed approvals", "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18779,20 +19814,20 @@ ] }, { - "index": 769, - "name": "Configuration_Set_no_show_slots", - "blob": "33129d1c0000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 816, + "name": "Configuration_Set_relay_vrf_modulo_samples", + "blob": "331600000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set no show slots", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set no show slots", - "1 | New : 7325", + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18800,22 +19835,20 @@ ] }, { - "index": 770, - "name": "Configuration_Set_no_show_slots", - "blob": "3312f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 817, + "name": "Configuration_Set_relay_vrf_modulo_samples", + "blob": "331600000000d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set no show slots", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set no show slots", - "1 | New : 503", + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18823,20 +19856,20 @@ ] }, { - "index": 771, - "name": "Configuration_Set_n_delay_tranches", - "blob": "331300000000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 818, + "name": "Configuration_Set_relay_vrf_modulo_samples", + "blob": "33169d1c0000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 7325", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 0", + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18844,20 +19877,20 @@ ] }, { - "index": 772, - "name": "Configuration_Set_n_delay_tranches", - "blob": "3313f7010000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 819, + "name": "Configuration_Set_relay_vrf_modulo_samples", + "blob": "331600000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 503", + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 1", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18865,20 +19898,22 @@ ] }, { - "index": 773, - "name": "Configuration_Set_n_delay_tranches", - "blob": "3313d3040000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 820, + "name": "Configuration_Set_relay_vrf_modulo_samples", + "blob": "3316f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 1235", + "0 | Configuration : Set relay vrf modulo samples", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18886,19 +19921,19 @@ ] }, { - "index": 774, - "name": "Configuration_Set_n_delay_tranches", - "blob": "331334300000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 821, + "name": "Configuration_Set_max_upward_queue_count", + "blob": "331700000000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 12340", + "0 | Configuration : Set max upward queue count", + "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 12340", + "0 | Configuration : Set max upward queue count", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18907,20 +19942,20 @@ ] }, { - "index": 775, - "name": "Configuration_Set_n_delay_tranches", - "blob": "33139d1c0000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 822, + "name": "Configuration_Set_max_upward_queue_count", + "blob": "3317d3040000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max upward queue count", + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set n delay tranches", - "1 | New : 7325", + "0 | Configuration : Set max upward queue count", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18928,19 +19963,19 @@ ] }, { - "index": 776, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "331434300000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 823, + "name": "Configuration_Set_max_upward_queue_count", + "blob": "331734300000d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue count", "1 | New : 12340", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue count", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -18949,20 +19984,20 @@ ] }, { - "index": 777, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "331434300000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 824, + "name": "Configuration_Set_max_upward_queue_count", + "blob": "331734300000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue count", "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue count", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18970,22 +20005,20 @@ ] }, { - "index": 778, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "33149d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 825, + "name": "Configuration_Set_max_upward_queue_count", + "blob": "3317d3040000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set max upward queue count", + "1 | New : 1235", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 7325", + "0 | Configuration : Set max upward queue count", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -18993,20 +20026,20 @@ ] }, { - "index": 779, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "3314d3040000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 826, + "name": "Configuration_Set_max_upward_queue_size", + "blob": "3318f7010000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max upward queue size", + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", - "1 | New : 1235", + "0 | Configuration : Set max upward queue size", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19014,20 +20047,20 @@ ] }, { - "index": 780, - "name": "Configuration_Set_zeroth_delay_tranche_width", - "blob": "331400000000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 827, + "name": "Configuration_Set_max_upward_queue_size", + "blob": "331800000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue size", "1 | New : 0", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set zeroth delay tranche width", + "0 | Configuration : Set max upward queue size", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -19037,20 +20070,20 @@ ] }, { - "index": 781, - "name": "Configuration_Set_needed_approvals", - "blob": "331500000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 828, + "name": "Configuration_Set_max_upward_queue_size", + "blob": "331800000000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", + "0 | Configuration : Set max upward queue size", "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set needed approvals", + "0 | Configuration : Set max upward queue size", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19058,39 +20091,41 @@ ] }, { - "index": 782, - "name": "Configuration_Set_needed_approvals", - "blob": "33159d1c0000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 829, + "name": "Configuration_Set_max_upward_queue_size", + "blob": "33189d1c0000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", - "1 | New : 7325" + "0 | Configuration : Set max upward queue size", + "1 | New : 7325", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set needed approvals", + "0 | Configuration : Set max upward queue size", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 783, - "name": "Configuration_Set_needed_approvals", - "blob": "3315d3040000d503000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 830, + "name": "Configuration_Set_max_upward_queue_size", + "blob": "3318f7010000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max upward queue size", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set needed approvals", - "1 | New : 1235", + "0 | Configuration : Set max upward queue size", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19098,20 +20133,20 @@ ] }, { - "index": 784, - "name": "Configuration_Set_needed_approvals", - "blob": "33159d1c0000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 831, + "name": "Configuration_Set_max_downward_message_size", + "blob": "33199d1c0000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", + "0 | Configuration : Set max downward message size", "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set needed approvals", + "0 | Configuration : Set max downward message size", "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19119,19 +20154,38 @@ ] }, { - "index": 785, - "name": "Configuration_Set_needed_approvals", - "blob": "33159d1c0000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 832, + "name": "Configuration_Set_max_downward_message_size", + "blob": "331900000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set needed approvals", - "1 | New : 7325", + "0 | Configuration : Set max downward message size", + "1 | New : 0" + ], + "output_expert": [ + "0 | Configuration : Set max downward message size", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 833, + "name": "Configuration_Set_max_downward_message_size", + "blob": "3319f7010000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max downward message size", + "1 | New : 503", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set needed approvals", - "1 | New : 7325", + "0 | Configuration : Set max downward message size", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19140,39 +20194,43 @@ ] }, { - "index": 786, - "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "3316f7010000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 834, + "name": "Configuration_Set_max_downward_message_size", + "blob": "331900000000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 503" + "0 | Configuration : Set max downward message size", + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 503", + "0 | Configuration : Set max downward message size", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 0.00123456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 787, - "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "3316d3040000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 835, + "name": "Configuration_Set_max_downward_message_size", + "blob": "331900000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max downward message size", + "1 | New : 0", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 1235", + "0 | Configuration : Set max downward message size", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19180,19 +20238,19 @@ ] }, { - "index": 788, - "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "331600000000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 836, + "name": "Configuration_Set_ump_service_total_weight", + "blob": "331a2362000000000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19201,38 +20259,40 @@ ] }, { - "index": 789, - "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "33169d1c0000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 837, + "name": "Configuration_Set_ump_service_total_weight", + "blob": "331a2362000000000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 7325" + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 7325", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 790, - "name": "Configuration_Set_relay_vrf_modulo_samples", - "blob": "331600000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 838, + "name": "Configuration_Set_ump_service_total_weight", + "blob": "331a2362000000000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set relay vrf modulo samples", - "1 | New : 0", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19241,20 +20301,20 @@ ] }, { - "index": 791, - "name": "Configuration_Set_max_upward_queue_count", - "blob": "33179d1c0000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 839, + "name": "Configuration_Set_ump_service_total_weight", + "blob": "331a2362000000000000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 7325", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 7325", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19262,62 +20322,77 @@ ] }, { - "index": 792, - "name": "Configuration_Set_max_upward_queue_count", - "blob": "3317f7010000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 840, + "name": "Configuration_Set_ump_service_total_weight", + "blob": "331a2362000000000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 503", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set ump service total weight", + "1 | New : 25123" ], "output_expert": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 503", + "0 | Configuration : Set ump service total weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 793, - "name": "Configuration_Set_max_upward_queue_count", - "blob": "3317d3040000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 841, + "name": "Configuration_Set_max_upward_message_size", + "blob": "331b00000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 1235", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max upward message size", + "1 | New : 0" ], "output_expert": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 1235", + "0 | Configuration : Set max upward message size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 794, - "name": "Configuration_Set_max_upward_queue_count", - "blob": "33179d1c0000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 842, + "name": "Configuration_Set_max_upward_message_size", + "blob": "331b9d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue count", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max upward message size", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set max upward queue count", + "0 | Configuration : Set max upward message size", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 843, + "name": "Configuration_Set_max_upward_message_size", + "blob": "331bf7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set max upward message size", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" + ], + "output_expert": [ + "0 | Configuration : Set max upward message size", + "1 | New : 503", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19325,18 +20400,18 @@ ] }, { - "index": 795, - "name": "Configuration_Set_max_upward_queue_count", - "blob": "3317f7010000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 844, + "name": "Configuration_Set_max_upward_message_size", + "blob": "331bf7010000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue count", + "0 | Configuration : Set max upward message size", "1 | New : 503" ], "output_expert": [ - "0 | Configuration : Set max upward queue count", + "0 | Configuration : Set max upward message size", "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19344,20 +20419,20 @@ ] }, { - "index": 796, - "name": "Configuration_Set_max_upward_queue_size", - "blob": "331800000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 845, + "name": "Configuration_Set_max_upward_message_size", + "blob": "331bd3040000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max upward message size", + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 0", + "0 | Configuration : Set max upward message size", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19365,20 +20440,20 @@ ] }, { - "index": 797, - "name": "Configuration_Set_max_upward_queue_size", - "blob": "3318d3040000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 846, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331cf7010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 503", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 1235", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.000000000987", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19386,18 +20461,18 @@ ] }, { - "index": 798, - "name": "Configuration_Set_max_upward_queue_size", - "blob": "33189d1c0000d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 847, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331cd3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 7325" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 1235" ], "output_expert": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 7325", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19405,20 +20480,22 @@ ] }, { - "index": 799, - "name": "Configuration_Set_max_upward_queue_size", - "blob": "3318f7010000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 848, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331c9d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 503", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 7325", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 503", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19426,20 +20503,22 @@ ] }, { - "index": 800, - "name": "Configuration_Set_max_upward_queue_size", - "blob": "331800000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 849, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331cd3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 1235", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max upward queue size", - "1 | New : 0", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 1235", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19447,20 +20526,22 @@ ] }, { - "index": 801, - "name": "Configuration_Set_max_downward_message_size", - "blob": "331900000000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 850, + "name": "Configuration_Set_max_upward_message_num_per_candidate", + "blob": "331c9d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max downward message size", - "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set max upward message num per candida", + "1 | New : 7325", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max downward message size", - "1 | New : 0", + "0 | Configuration : Set max upward message num per candida", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19468,19 +20549,19 @@ ] }, { - "index": 802, - "name": "Configuration_Set_max_downward_message_size", - "blob": "3319f7010000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 851, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331df7010000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max downward message size", + "0 | Configuration : Set hrmp open request ttl", "1 | New : 503", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max downward message size", + "0 | Configuration : Set hrmp open request ttl", "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19489,19 +20570,19 @@ ] }, { - "index": 803, - "name": "Configuration_Set_max_downward_message_size", - "blob": "331934300000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 852, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331d00000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max downward message size", - "1 | New : 12340", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max downward message size", - "1 | New : 12340", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19510,20 +20591,22 @@ ] }, { - "index": 804, - "name": "Configuration_Set_max_downward_message_size", - "blob": "331900000000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 853, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331d34300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max downward message size", - "1 | New : 0", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 12340", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max downward message size", - "1 | New : 0", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19531,20 +20614,20 @@ ] }, { - "index": 805, - "name": "Configuration_Set_max_downward_message_size", - "blob": "331934300000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 854, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331d00000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max downward message size", - "1 | New : 12340", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 0", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set max downward message size", - "1 | New : 12340", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", @@ -19554,20 +20637,20 @@ ] }, { - "index": 806, - "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a0000000000000000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 855, + "name": "Configuration_Set_hrmp_open_request_ttl", + "blob": "331df7010000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 503", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", + "0 | Configuration : Set hrmp open request ttl", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19575,20 +20658,43 @@ ] }, { - "index": 807, - "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 856, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331e8c3544c81220fe2639607fe7644f0fdfd5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 25123", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676" ], "output_expert": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 857, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331e8c3544c81220fe2639607fe7644f0fdfd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", + "2 | Tip : KSM 5.552342355555" + ], + "output_expert": [ + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19596,19 +20702,21 @@ ] }, { - "index": 808, - "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a0000000000000000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 858, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331e8c3544c81220fe2639607fe7644f0fdfd503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19617,17 +20725,40 @@ ] }, { - "index": 809, - "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a2362000000000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 859, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331e8c3544c81220fe2639607fe7644f0fdfd503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676" + ], + "output_expert": [ + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", + "2 | Chain : Kusama", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 860, + "name": "Configuration_Set_hrmp_sender_deposit", + "blob": "331e8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 25123", + "0 | Configuration : Set hrmp sender deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", @@ -19638,20 +20769,22 @@ ] }, { - "index": 810, - "name": "Configuration_Set_ump_service_total_weight", - "blob": "331a0000000000000000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 861, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331f8c3544c81220fe2639607fe7644f0fdfd503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set ump service total weight", - "1 | New : 0", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19659,19 +20792,21 @@ ] }, { - "index": 811, - "name": "Configuration_Set_max_upward_message_size", - "blob": "331b00000000d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 862, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message size", - "1 | New : 0", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max upward message size", - "1 | New : 0", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19680,20 +20815,22 @@ ] }, { - "index": 812, - "name": "Configuration_Set_max_upward_message_size", - "blob": "331bf7010000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 863, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331f8c3544c81220fe2639607fe7644f0fdfd503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message size", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set max upward message size", - "1 | New : 503", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19701,18 +20838,20 @@ ] }, { - "index": 813, - "name": "Configuration_Set_max_upward_message_size", - "blob": "331b00000000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 864, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message size", - "1 | New : 0" + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676" ], "output_expert": [ - "0 | Configuration : Set max upward message size", - "1 | New : 0", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19720,40 +20859,40 @@ ] }, { - "index": 814, - "name": "Configuration_Set_max_upward_message_size", - "blob": "331b34300000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 865, + "name": "Configuration_Set_hrmp_recipient_deposit", + "blob": "331f8c3544c81220fe2639607fe7644f0fdfd5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message size", - "1 | New : 12340", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676" ], "output_expert": [ - "0 | Configuration : Set max upward message size", - "1 | New : 12340", + "0 | Configuration : Set hrmp recipient deposit", + "1 | New [1/2] : KSM 296497337817734227229652438.025266", + "1 | New [2/2] : 017676", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 815, - "name": "Configuration_Set_max_upward_message_size", - "blob": "331bf7010000d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 866, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "33209d1c0000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message size", - "1 | New : 503", + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max upward message size", - "1 | New : 503", + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19762,40 +20901,57 @@ ] }, { - "index": 816, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331cf7010000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 867, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "33209d1c0000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 503", + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 817, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331c9d1c0000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 868, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "332000000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message num per candida", + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 0" + ], + "output_expert": [ + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 869, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "33209d1c0000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp channel max capacity", "1 | New : 7325", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set max upward message num per candida", + "0 | Configuration : Set hrmp channel max capacity", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19804,22 +20960,20 @@ ] }, { - "index": 818, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331c00000000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 870, + "name": "Configuration_Set_hrmp_channel_max_capacity", + "blob": "33209d1c0000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 0", + "0 | Configuration : Set hrmp channel max capacity", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19827,19 +20981,38 @@ ] }, { - "index": 819, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331c34300000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 871, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "332100000000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 12340", + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0" + ], + "output_expert": [ + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0", + "2 | Chain : Kusama", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 872, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "332100000000d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 12340", + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19848,18 +21021,18 @@ ] }, { - "index": 820, - "name": "Configuration_Set_max_upward_message_num_per_candidate", - "blob": "331cd3040000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 873, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "332134300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235" + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set max upward message num per candida", - "1 | New : 1235", + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19867,22 +21040,20 @@ ] }, { - "index": 821, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d34300000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 874, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "332100000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", + "0 | Configuration : Set hrmp channel max total size", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 0", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19890,41 +21061,22 @@ ] }, { - "index": 822, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d34300000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 875, + "name": "Configuration_Set_hrmp_channel_max_total_size", + "blob": "332134300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp open request ttl", + "0 | Configuration : Set hrmp channel max total size", "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", + "0 | Configuration : Set hrmp channel max total size", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 823, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331df7010000d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", - "2 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503", - "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -19932,19 +21084,19 @@ ] }, { - "index": 824, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331d34300000d50391016d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 876, + "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", + "blob": "332200000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19953,40 +21105,19 @@ ] }, { - "index": 825, - "name": "Configuration_Set_hrmp_open_request_ttl", - "blob": "331df7010000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 877, + "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", + "blob": "3322f7010000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp open request ttl", - "1 | New : 503" - ], - "output_expert": [ - "0 | Configuration : Set hrmp open request ttl", + "0 | Configuration : Set hrmp max parachain inbound channel", "1 | New : 503", - "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 826, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f07dd637c4bed333e4eafa309801d9ce0d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -19995,21 +21126,19 @@ ] }, { - "index": 827, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f07dd637c4bed333e4eafa309801d9ce0d503ae1103000b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 878, + "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", + "blob": "3322d3040000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 1235", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 1235", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20018,22 +21147,22 @@ ] }, { - "index": 828, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f07dd637c4bed333e4eafa309801d9ce0d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 879, + "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", + "blob": "3322f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20041,22 +21170,20 @@ ] }, { - "index": 829, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f07dd637c4bed333e4eafa309801d9ce0d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 880, + "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", + "blob": "332200000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parachain inbound channel", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20064,20 +21191,18 @@ ] }, { - "index": 830, - "name": "Configuration_Set_hrmp_recipient_deposit", - "blob": "331f07dd637c4bed333e4eafa309801d9ce0d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 881, + "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", + "blob": "33239d1c0000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543" + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set hrmp recipient deposit", - "1 | New [1/2] : KSM 298557667699819144219233062.447955", - "1 | New [2/2] : 041543", + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20085,40 +21210,57 @@ ] }, { - "index": 831, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "332034300000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 882, + "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", + "blob": "332300000000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 12340", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 0" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 832, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "33209d1c0000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 883, + "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", + "blob": "33239d1c0000d5030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", + "0 | Configuration : Set hrmp max parathread inbound channe", "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 884, + "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", + "blob": "3323d3040000d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 1235", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 50283", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20127,22 +21269,20 @@ ] }, { - "index": 833, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "3320f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 885, + "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", + "blob": "332334300000d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 503", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 503", + "0 | Configuration : Set hrmp max parathread inbound channe", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 1", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20150,40 +21290,38 @@ ] }, { - "index": 834, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "3320f7010000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 886, + "name": "Configuration_Set_hrmp_channel_max_message_size", + "blob": "332434300000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 503", + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 835, - "name": "Configuration_Set_hrmp_channel_max_capacity", - "blob": "332034300000d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 887, + "name": "Configuration_Set_hrmp_channel_max_message_size", + "blob": "332400000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 12340", + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 0", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max capacity", - "1 | New : 12340", + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20192,37 +21330,35 @@ ] }, { - "index": 836, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "33219d1c0000d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 888, + "name": "Configuration_Set_hrmp_channel_max_message_size", + "blob": "33249d1c0000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", - "1 | New : 7325", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 7325" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp channel max message size", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 837, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332100000000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 889, + "name": "Configuration_Set_hrmp_channel_max_message_size", + "blob": "332434300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0" + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", - "1 | New : 0", + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 2339", "4 | Era Phase : 61", @@ -20232,17 +21368,38 @@ ] }, { - "index": 838, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332134300000d5030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 890, + "name": "Configuration_Set_hrmp_channel_max_message_size", + "blob": "332434300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set hrmp channel max message size", + "1 | New : 12340", + "2 | Chain : Kusama", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 891, + "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", + "blob": "332534300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 12340", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 0", @@ -20255,19 +21412,38 @@ ] }, { - "index": 839, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "33219d1c0000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 892, + "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", + "blob": "3325d3040000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 1235" + ], + "output_expert": [ + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 1235", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 893, + "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", + "blob": "33259d1c0000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 7325", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", + "0 | Configuration : Set hrmp max parachain outbound channe", "1 | New : 7325", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20276,17 +21452,17 @@ ] }, { - "index": 840, - "name": "Configuration_Set_hrmp_channel_max_total_size", - "blob": "332134300000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 894, + "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", + "blob": "332500000000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max total size", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 0", "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max total size", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 0", "4 | Tip : KSM 0.000000000987", @@ -20297,41 +21473,39 @@ ] }, { - "index": 841, - "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "332234300000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 895, + "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", + "blob": "3325f7010000d5030400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 503" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 12340", + "0 | Configuration : Set hrmp max parachain outbound channe", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 842, - "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "3322d3040000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 896, + "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", + "blob": "332634300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 12340", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 50283", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20339,22 +21513,20 @@ ] }, { - "index": 843, - "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "332200000000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 897, + "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", + "blob": "332600000000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain inbound channel", + "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 0", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain inbound channel", + "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20362,22 +21534,20 @@ ] }, { - "index": 844, - "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "332234300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 898, + "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", + "blob": "332634300000d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain inbound channel", + "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 12340", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain inbound channel", + "0 | Configuration : Set hrmp max parathread outbound chann", "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20385,20 +21555,20 @@ ] }, { - "index": 845, - "name": "Configuration_Set_hrmp_max_parachain_inbound_channels", - "blob": "3322d3040000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 899, + "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", + "blob": "332600000000d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain inbound channel", - "1 | New : 1235", + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "3 | Nonce : 1", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20406,39 +21576,20 @@ ] }, { - "index": 846, - "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "3323d3040000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235" - ], - "output_expert": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235", - "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 847, - "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "3323d3040000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 900, + "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", + "blob": "33269d1c0000d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 7325", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 1235", + "0 | Configuration : Set hrmp max parathread outbound chann", + "1 | New : 7325", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20446,18 +21597,18 @@ ] }, { - "index": 848, - "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "332300000000d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 901, + "name": "Configuration_Set_hrmp_max_message_num_per_candidate", + "blob": "3327f7010000d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 0", + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 503", "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 0", + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 1", "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", @@ -20469,20 +21620,22 @@ ] }, { - "index": 849, - "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "332300000000d5038d246d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 902, + "name": "Configuration_Set_hrmp_max_message_num_per_candidate", + "blob": "332700000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread inbound channe", + "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread inbound channe", + "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20490,20 +21643,20 @@ ] }, { - "index": 850, - "name": "Configuration_Set_hrmp_max_parathread_inbound_channels", - "blob": "33239d1c0000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 903, + "name": "Configuration_Set_hrmp_max_message_num_per_candidate", + "blob": "332700000000d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 0", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread inbound channe", - "1 | New : 7325", + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 50283", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20511,15 +21664,15 @@ ] }, { - "index": 851, - "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332434300000d5038d2400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 904, + "name": "Configuration_Set_hrmp_max_message_num_per_candidate", + "blob": "332734300000d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max message size", + "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 12340" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max message size", + "0 | Configuration : Set hrmp max message num per candidate", "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 2339", @@ -20530,20 +21683,20 @@ ] }, { - "index": 852, - "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "33249d1c0000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 905, + "name": "Configuration_Set_hrmp_max_message_num_per_candidate", + "blob": "332734300000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 7325", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 12340", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 7325", + "0 | Configuration : Set hrmp max message num per candidate", + "1 | New : 12340", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20551,20 +21704,20 @@ ] }, { - "index": 853, - "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "3324f7010000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 906, + "name": "Configuration_Set_ump_max_individual_weight", + "blob": "33280000000000000000d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 503", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 503", + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20572,22 +21725,20 @@ ] }, { - "index": 854, - "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "3324d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 907, + "name": "Configuration_Set_ump_max_individual_weight", + "blob": "33280000000000000000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 1235", + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "3 | Nonce : 100", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20595,20 +21746,20 @@ ] }, { - "index": 855, - "name": "Configuration_Set_hrmp_channel_max_message_size", - "blob": "332434300000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 908, + "name": "Configuration_Set_ump_max_individual_weight", + "blob": "33282362000000000000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set ump max individual weight", + "1 | New : 25123", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp channel max message size", - "1 | New : 12340", + "0 | Configuration : Set ump max individual weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20616,22 +21767,20 @@ ] }, { - "index": 856, - "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 909, + "name": "Configuration_Set_ump_max_individual_weight", + "blob": "33280000000000000000d50391016d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", + "0 | Configuration : Set ump max individual weight", + "1 | New : 0", "2 | Chain : Kusama", "3 | Nonce : 100", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20639,62 +21788,56 @@ ] }, { - "index": 857, - "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "332534300000d5030403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 910, + "name": "Configuration_Set_ump_max_individual_weight", + "blob": "33282362000000000000d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 12340", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set ump max individual weight", + "1 | New : 25123" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 12340", + "0 | Configuration : Set ump max individual weight", + "1 | New : 25123", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 858, - "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 911, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332900d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "0 | Configuration : Set pvf checking enabled", + "1 | New : False" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", + "0 | Configuration : Set pvf checking enabled", + "1 | New : False", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 859, - "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325d3040000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 912, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332901d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235" + "0 | Configuration : Set pvf checking enabled", + "1 | New : True" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 1235", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20702,19 +21845,19 @@ ] }, { - "index": 860, - "name": "Configuration_Set_hrmp_max_parachain_outbound_channels", - "blob": "3325f7010000d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 913, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332901d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 503", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp max parachain outbound channe", - "1 | New : 503", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20723,19 +21866,19 @@ ] }, { - "index": 861, - "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332634300000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 914, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332901d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20744,20 +21887,62 @@ ] }, { - "index": 862, - "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332634300000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 915, + "name": "Configuration_Set_pvf_checking_enabled", + "blob": "332901d5038d2400c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set pvf checking enabled", + "1 | New : True" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "0 | Configuration : Set pvf checking enabled", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 916, + "name": "Configuration_Set_pvf_voting_ttl", + "blob": "332af7010000d503910133158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", + "2 | Chain : Kusama", + "3 | Nonce : 100", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 917, + "name": "Configuration_Set_pvf_voting_ttl", + "blob": "332a01000000d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Configuration : Set pvf voting ttl", + "1 | New : 1", + "2 | Tip : KSM 0.000055555555" + ], + "output_expert": [ + "0 | Configuration : Set pvf voting ttl", + "1 | New : 1", + "2 | Chain : Kusama", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20765,19 +21950,19 @@ ] }, { - "index": 863, - "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "3326d3040000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 918, + "name": "Configuration_Set_pvf_voting_ttl", + "blob": "332a34300000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 1235", + "0 | Configuration : Set pvf voting ttl", + "1 | New : 12340", "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 1235", + "0 | Configuration : Set pvf voting ttl", + "1 | New : 12340", "2 | Chain : Kusama", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -20786,39 +21971,41 @@ ] }, { - "index": 864, - "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "332634300000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 919, + "name": "Configuration_Set_pvf_voting_ttl", + "blob": "332af7010000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340" + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 12340", + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 865, - "name": "Configuration_Set_hrmp_max_parathread_outbound_channels", - "blob": "33269d1c0000d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 920, + "name": "Configuration_Set_pvf_voting_ttl", + "blob": "332af7010000d5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 7325", - "2 | Tip : KSM 5.552342355555" + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp max parathread outbound chann", - "1 | New : 7325", + "0 | Configuration : Set pvf voting ttl", + "1 | New : 503", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 5.552342355555", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20826,20 +22013,20 @@ ] }, { - "index": 866, - "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "3327d3040000d503910103d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 921, + "name": "Configuration_Set_minimum_validation_upgrade_delay", + "blob": "332b25010000d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 1235", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 293", + "2 | Tip : KSM 0.000000000987" ], "output_expert": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 1235", + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.00123456789", + "3 | Nonce : 0", + "4 | Tip : KSM 0.000000000987", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20847,20 +22034,22 @@ ] }, { - "index": 867, - "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "332734300000d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 922, + "name": "Configuration_Set_minimum_validation_upgrade_delay", + "blob": "332bff030000d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 1023", + "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "2 | Tip [2/2] : 456789" ], "output_expert": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 12340", + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 1", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "4 | Tip [2/2] : 456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20868,39 +22057,41 @@ ] }, { - "index": 868, - "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "3327f7010000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 923, + "name": "Configuration_Set_minimum_validation_upgrade_delay", + "blob": "332b00000000d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503" + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 0", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503", + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 0", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 100", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 869, - "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "3327f7010000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 924, + "name": "Configuration_Set_minimum_validation_upgrade_delay", + "blob": "332bff030000d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 1023", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 503", + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 1023", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20908,20 +22099,20 @@ ] }, { - "index": 870, - "name": "Configuration_Set_hrmp_max_message_num_per_candidate", - "blob": "3327d3040000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 925, + "name": "Configuration_Set_minimum_validation_upgrade_delay", + "blob": "332b7b000000d503000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 1235", - "2 | Tip : KSM 0.000055555555" + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 123", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set hrmp max message num per candidate", - "1 | New : 1235", + "0 | Configuration : Set minimum validation upgrade delay", + "1 | New : 123", "2 | Chain : Kusama", - "3 | Nonce : 2339", - "4 | Tip : KSM 0.000055555555", + "3 | Nonce : 0", + "4 | Tip : KSM 5.552342355555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20929,20 +22120,20 @@ ] }, { - "index": 871, - "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33280000000000000000d503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 926, + "name": "Configuration_Set_bypass_consistency_check", + "blob": "332c00d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 0", - "2 | Tip : KSM 0.000000000987" + "0 | Configuration : Set bypass consistency check", + "1 | New : False", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 0", + "0 | Configuration : Set bypass consistency check", + "1 | New : False", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Tip : KSM 0.000000000987", + "3 | Nonce : 100", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20950,39 +22141,41 @@ ] }, { - "index": 872, - "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33282362000000000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 927, + "name": "Configuration_Set_bypass_consistency_check", + "blob": "332c01d5038d240b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123" + "0 | Configuration : Set bypass consistency check", + "1 | New : True", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123", + "0 | Configuration : Set bypass consistency check", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 873, - "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33282362000000000000d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 928, + "name": "Configuration_Set_bypass_consistency_check", + "blob": "332c00d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set bypass consistency check", + "1 | New : False", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123", + "0 | Configuration : Set bypass consistency check", + "1 | New : False", "2 | Chain : Kusama", "3 | Nonce : 2339", - "4 | Tip : KSM 0.00123456789", + "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -20990,18 +22183,18 @@ ] }, { - "index": 874, - "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33282362000000000000d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 929, + "name": "Configuration_Set_bypass_consistency_check", + "blob": "332c01d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123" + "0 | Configuration : Set bypass consistency check", + "1 | New : True" ], "output_expert": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 25123", + "0 | Configuration : Set bypass consistency check", + "1 | New : True", "2 | Chain : Kusama", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21009,62 +22202,60 @@ ] }, { - "index": 875, - "name": "Configuration_Set_ump_max_individual_weight", - "blob": "33280000000000000000d503ae11030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "index": 930, + "name": "Configuration_Set_bypass_consistency_check", + "blob": "332c00d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 0", - "2 | Tip : KSM 0.00123456789" + "0 | Configuration : Set bypass consistency check", + "1 | New : False" ], "output_expert": [ - "0 | Configuration : Set ump max individual weight", - "1 | New : 0", + "0 | Configuration : Set bypass consistency check", + "1 | New : False", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip : KSM 0.00123456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 876, + "index": 931, "name": "Initializer_Force_approve", - "blob": "3900b3e30100d5030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3900ff030000d5038d248ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 123827" + "1 | Up to : 1023", + "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 123827", + "1 | Up to : 1023", "2 | Chain : Kusama", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 2339", + "4 | Tip : KSM 0.000055555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 877, + "index": 932, "name": "Initializer_Force_approve", - "blob": "39007b000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "390025010000d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 123", - "2 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "2 | Tip [2/2] : 456789" + "1 | Up to : 293", + "2 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 123", + "1 | Up to : 293", "2 | Chain : Kusama", "3 | Nonce : 50283", - "4 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "4 | Tip [2/2] : 456789", + "4 | Tip : KSM 0.00123456789", "5 | Era Phase : 61", "6 | Era Period : 64", "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21072,40 +22263,38 @@ ] }, { - "index": 878, + "index": 933, "name": "Initializer_Force_approve", - "blob": "390000000000d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "390025010000d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 0", - "2 | Tip : KSM 0.000055555555" + "1 | Up to : 293" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 0", + "1 | Up to : 293", "2 | Chain : Kusama", - "3 | Nonce : 100", - "4 | Tip : KSM 0.000055555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "7 | Block [2/2] : 01197a149ca93654499ea3dafe" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 879, + "index": 934, "name": "Initializer_Force_approve", - "blob": "3900ac350000d5038d248ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3900b3e30100d503048ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 13740", + "1 | Up to : 123827", "2 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 13740", + "1 | Up to : 123827", "2 | Chain : Kusama", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : KSM 0.000055555555", "5 | Era Phase : 61", "6 | Era Period : 64", @@ -21114,39 +22303,39 @@ ] }, { - "index": 880, + "index": 935, "name": "Initializer_Force_approve", - "blob": "3900ac350000d5030400bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3900ff030000d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Initializer : Force approve", - "1 | Up to : 13740" + "1 | Up to : 1023", + "2 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Initializer : Force approve", - "1 | Up to : 13740", + "1 | Up to : 1023", "2 | Chain : Kusama", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" + "4 | Tip : KSM 5.552342355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "7 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 881, + "index": 936, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "1 | Tip [2/2] : 456789" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "3 | Tip [2/2] : 456789", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21154,18 +22343,18 @@ ] }, { - "index": 882, + "index": 937, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 1", + "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21173,18 +22362,18 @@ ] }, { - "index": 883, + "index": 938, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.00123456789" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", "1 | Chain : Kusama", "2 | Nonce : 0", - "3 | Tip : KSM 0.00123456789", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21192,18 +22381,18 @@ ] }, { - "index": 884, + "index": 939, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 2339", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21211,18 +22400,18 @@ ] }, { - "index": 885, + "index": 940, "name": "Hrmp_Force_process_hrmp_open", - "blob": "3c04d50391018ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c04d503ae11030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp open", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp open", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21230,35 +22419,37 @@ ] }, { - "index": 886, + "index": 941, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Hrmp : Force process hrmp close" + "0 | Hrmp : Force process hrmp close", + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.00123456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 887, + "index": 942, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05d503ae1103008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 50283", + "3 | Tip : KSM 0.000055555555", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21266,9 +22457,9 @@ ] }, { - "index": 888, + "index": 943, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", "1 | Tip : KSM 5.552342355555" @@ -21285,18 +22476,18 @@ ] }, { - "index": 889, + "index": 944, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05d503910103d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Hrmp : Force process hrmp close", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", "1 | Chain : Kusama", - "2 | Nonce : 1", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 100", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21304,43 +22495,49 @@ ] }, { - "index": 890, + "index": 945, "name": "Hrmp_Force_process_hrmp_close", - "blob": "3c05d503ae11030000bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3c05d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Hrmp : Force process hrmp close" + "0 | Hrmp : Force process hrmp close", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Hrmp : Force process hrmp close", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 891, + "index": 946, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Parasdisputes : Force unfreeze" + "0 | Parasdisputes : Force unfreeze", + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "6 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 892, + "index": 947, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", "1 | Tip : KSM 0.000055555555" @@ -21357,18 +22554,18 @@ ] }, { - "index": 893, + "index": 948, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 2339", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21376,9 +22573,9 @@ ] }, { - "index": 894, + "index": 949, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503ae1103006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Parasdisputes : Force unfreeze", "1 | Tip : KSM 0.000000000987" @@ -21395,18 +22592,37 @@ ] }, { - "index": 895, + "index": 950, "name": "Parasdisputes_Force_unfreeze", - "blob": "3e00d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "3e00d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ - "0 | Parasdisputes : Force unfreeze", - "1 | Tip : KSM 0.000000000987" + "0 | Parasdisputes : Force unfreeze" ], "output_expert": [ "0 | Parasdisputes : Force unfreeze", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "5 | Block [2/2] : 01197a149ca93654499ea3dafe" + ] + }, + { + "index": 951, + "name": "Registrar_Reserve", + "blob": "4605d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "output": [ + "0 | Registrar : Reserve", + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" + ], + "output_expert": [ + "0 | Registrar : Reserve", + "1 | Chain : Kusama", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21414,18 +22630,20 @@ ] }, { - "index": 896, + "index": 952, "name": "Registrar_Reserve", - "blob": "4605d5038d2403d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d5030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", - "1 | Tip : KSM 0.00123456789" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 0.00123456789", + "2 | Nonce : 0", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21433,9 +22651,9 @@ ] }, { - "index": 897, + "index": 953, "name": "Registrar_Reserve", - "blob": "4605d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d503ae1103000b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", "1 | Tip : KSM 5.552342355555" @@ -21443,7 +22661,7 @@ "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", - "2 | Nonce : 100", + "2 | Nonce : 50283", "3 | Tip : KSM 5.552342355555", "4 | Era Phase : 61", "5 | Era Period : 64", @@ -21452,9 +22670,9 @@ ] }, { - "index": 898, + "index": 954, "name": "Registrar_Reserve", - "blob": "4605d503910100bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d503910100c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve" ], @@ -21469,37 +22687,20 @@ ] }, { - "index": 899, + "index": 955, "name": "Registrar_Reserve", - "blob": "4605d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4605d5030433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Registrar : Reserve", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Registrar : Reserve", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 0.000055555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "6 | Block [2/2] : 01197a149ca93654499ea3dafe" - ] - }, - { - "index": 900, - "name": "Registrar_Reserve", - "blob": "4605d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "output": [ - "0 | Registrar : Reserve", - "1 | Tip : KSM 5.552342355555" - ], - "output_expert": [ - "0 | Registrar : Reserve", - "1 | Chain : Kusama", - "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21507,19 +22708,19 @@ ] }, { - "index": 901, + "index": 956, "name": "Auctions_New_auction", - "blob": "480032bcf23588d503008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800f199dcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 226275084", - "2 | Lease period index : 34", + "1 | Duration : 9852", + "2 | Lease period index : 55", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 226275084", - "2 | Lease period index : 34", + "1 | Duration : 9852", + "2 | Lease period index : 55", "3 | Chain : Kusama", "4 | Nonce : 0", "5 | Tip : KSM 0.000055555555", @@ -21530,22 +22731,22 @@ ] }, { - "index": 902, + "index": 957, "name": "Auctions_New_auction", - "blob": "480032bcf23588d503046d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800dcdcd5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 226275084", - "2 | Lease period index : 34", - "3 | Tip : KSM 0.000000000987" + "1 | Duration : 55", + "2 | Lease period index : 55", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 226275084", - "2 | Lease period index : 34", + "1 | Duration : 55", + "2 | Lease period index : 55", "3 | Chain : Kusama", - "4 | Nonce : 1", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 0", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21553,22 +22754,22 @@ ] }, { - "index": 903, + "index": 958, "name": "Auctions_New_auction", - "blob": "48003088d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "480096fb647796fb6477d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 12", - "2 | Lease period index : 34", - "3 | Tip : KSM 0.000000000987" + "1 | Duration : 500776677", + "2 | Lease period index : 500776677", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 12", - "2 | Lease period index : 34", + "1 | Duration : 500776677", + "2 | Lease period index : 500776677", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000000000987", + "4 | Nonce : 1", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21576,21 +22777,21 @@ ] }, { - "index": 904, + "index": 959, "name": "Auctions_New_auction", - "blob": "48005a83100f30d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800dcdcd503008ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 63185110", - "2 | Lease period index : 12", + "1 | Duration : 55", + "2 | Lease period index : 55", "3 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 63185110", - "2 | Lease period index : 12", + "1 | Duration : 55", + "2 | Lease period index : 55", "3 | Chain : Kusama", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : KSM 0.000055555555", "6 | Era Phase : 61", "7 | Era Period : 64", @@ -21599,22 +22800,22 @@ ] }, { - "index": 905, + "index": 960, "name": "Auctions_New_auction", - "blob": "48005a83100f32bcf235d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4800dcdcd5038d2403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : New auction", - "1 | Duration : 63185110", - "2 | Lease period index : 226275084", - "3 | Tip : KSM 0.000055555555" + "1 | Duration : 55", + "2 | Lease period index : 55", + "3 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : New auction", - "1 | Duration : 63185110", - "2 | Lease period index : 226275084", + "1 | Duration : 55", + "2 | Lease period index : 55", "3 | Chain : Kusama", - "4 | Nonce : 50283", - "5 | Tip : KSM 0.000055555555", + "4 | Nonce : 2339", + "5 | Tip : KSM 0.00123456789", "6 | Era Phase : 61", "7 | Era Period : 64", "8 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21622,28 +22823,28 @@ ] }, { - "index": 906, + "index": 961, "name": "Auctions_Bid", - "blob": "4801885a83100f32bcf235306d0fd503006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "480196fb6477dc96fb6477f19903d2029649d50391018ed73e0dc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 34", - "2 | Auction index : 63185110", - "3 | First slot : 226275084", - "4 | Last slot : 12", - "5 | Amount : KSM 0.000000000987", - "6 | Tip : KSM 0.000000000987" + "1 | Para : 500776677", + "2 | Auction index : 55", + "3 | First slot : 500776677", + "4 | Last slot : 9852", + "5 | Amount : KSM 0.00123456789", + "6 | Tip : KSM 0.000055555555" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 34", - "2 | Auction index : 63185110", - "3 | First slot : 226275084", - "4 | Last slot : 12", - "5 | Amount : KSM 0.000000000987", + "1 | Para : 500776677", + "2 | Auction index : 55", + "3 | First slot : 500776677", + "4 | Last slot : 9852", + "5 | Amount : KSM 0.00123456789", "6 | Chain : Kusama", - "7 | Nonce : 0", - "8 | Tip : KSM 0.000000000987", + "7 | Nonce : 100", + "8 | Tip : KSM 0.000055555555", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21651,28 +22852,30 @@ ] }, { - "index": 907, + "index": 962, "name": "Auctions_Bid", - "blob": "48013088883000d5030003d2029649bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "480196fb6477f19996fb6477dc8ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 12", - "2 | Auction index : 34", - "3 | First slot : 34", - "4 | Last slot : 12", - "5 | Amount : KSM 0.0", - "6 | Tip : KSM 0.00123456789" + "1 | Para : 500776677", + "2 | Auction index : 9852", + "3 | First slot : 500776677", + "4 | Last slot : 55", + "5 | Amount : KSM 0.000055555555", + "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "6 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 12", - "2 | Auction index : 34", - "3 | First slot : 34", - "4 | Last slot : 12", - "5 | Amount : KSM 0.0", + "1 | Para : 500776677", + "2 | Auction index : 9852", + "3 | First slot : 500776677", + "4 | Last slot : 55", + "5 | Amount : KSM 0.000055555555", "6 | Chain : Kusama", - "7 | Nonce : 0", - "8 | Tip : KSM 0.00123456789", + "7 | Nonce : 50283", + "8 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "8 | Tip [2/2] : 456789", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21680,27 +22883,27 @@ ] }, { - "index": 908, + "index": 963, "name": "Auctions_Bid", - "blob": "480132bcf2355a83100f8832bcf2350b63ce64c10c05d503040b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4801091696fb6477dc09160b63ce64c10c05d50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 226275084", - "2 | Auction index : 63185110", - "3 | First slot : 34", - "4 | Last slot : 226275084", + "1 | Para : 1410", + "2 | Auction index : 500776677", + "3 | First slot : 55", + "4 | Last slot : 1410", "5 | Amount : KSM 5.552342355555", "6 | Tip : KSM 5.552342355555" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 226275084", - "2 | Auction index : 63185110", - "3 | First slot : 34", - "4 | Last slot : 226275084", + "1 | Para : 1410", + "2 | Auction index : 500776677", + "3 | First slot : 55", + "4 | Last slot : 1410", "5 | Amount : KSM 5.552342355555", "6 | Chain : Kusama", - "7 | Nonce : 1", + "7 | Nonce : 100", "8 | Tip : KSM 5.552342355555", "9 | Era Phase : 61", "10 | Era Period : 64", @@ -21709,61 +22912,55 @@ ] }, { - "index": 909, + "index": 964, "name": "Auctions_Bid", - "blob": "480132bcf23530305a83100f03d2029649d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4801f199dc091696fb647700d503ae11030000c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 226275084", - "2 | Auction index : 12", - "3 | First slot : 12", - "4 | Last slot : 63185110", - "5 | Amount : KSM 0.00123456789", - "6 | Tip : KSM 0.000055555555" + "1 | Para : 9852", + "2 | Auction index : 55", + "3 | First slot : 1410", + "4 | Last slot : 500776677", + "5 | Amount : KSM 0.0" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 226275084", - "2 | Auction index : 12", - "3 | First slot : 12", - "4 | Last slot : 63185110", - "5 | Amount : KSM 0.00123456789", + "1 | Para : 9852", + "2 | Auction index : 55", + "3 | First slot : 1410", + "4 | Last slot : 500776677", + "5 | Amount : KSM 0.0", "6 | Chain : Kusama", - "7 | Nonce : 1", - "8 | Tip : KSM 0.000055555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", - "11 | Block [2/2] : 01197a149ca93654499ea3dafe" + "7 | Nonce : 50283", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", + "10 | Block [2/2] : 01197a149ca93654499ea3dafe" ] }, { - "index": 910, + "index": 965, "name": "Auctions_Bid", - "blob": "48015a83100f3032bcf2353033158139ae28a3dfaac5fe1560a5e9e05cd5030433158139ae28a3dfaac5fe1560a5e9e05cbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4801dcf199dc96fb64776d0fd5038d246d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Bid", - "1 | Para : 63185110", - "2 | Auction index : 12", - "3 | First slot : 226275084", - "4 | Last slot : 12", - "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "5 | Amount [2/2] : 456789", - "6 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "6 | Tip [2/2] : 456789" + "1 | Para : 55", + "2 | Auction index : 9852", + "3 | First slot : 55", + "4 | Last slot : 500776677", + "5 | Amount : KSM 0.000000000987", + "6 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Auctions : Bid", - "1 | Para : 63185110", - "2 | Auction index : 12", - "3 | First slot : 226275084", - "4 | Last slot : 12", - "5 | Amount [1/2] : KSM 123456789012345678901234567.890123", - "5 | Amount [2/2] : 456789", + "1 | Para : 55", + "2 | Auction index : 9852", + "3 | First slot : 55", + "4 | Last slot : 500776677", + "5 | Amount : KSM 0.000000000987", "6 | Chain : Kusama", - "7 | Nonce : 1", - "8 | Tip [1/2] : KSM 123456789012345678901234567.890123", - "8 | Tip [2/2] : 456789", + "7 | Nonce : 2339", + "8 | Tip : KSM 0.000000000987", "9 | Era Phase : 61", "10 | Era Period : 64", "11 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21771,18 +22968,18 @@ ] }, { - "index": 911, + "index": 966, "name": "Auctions_Cancel_auction", - "blob": "4802d503048ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5030403d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.000055555555" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", "2 | Nonce : 1", - "3 | Tip : KSM 0.000055555555", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21790,18 +22987,18 @@ ] }, { - "index": 912, + "index": 967, "name": "Auctions_Cancel_auction", - "blob": "4802d50391010b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d503046d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 5.552342355555" + "1 | Tip : KSM 0.000000000987" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 100", - "3 | Tip : KSM 5.552342355555", + "2 | Nonce : 1", + "3 | Tip : KSM 0.000000000987", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21809,18 +23006,20 @@ ] }, { - "index": 913, + "index": 968, "name": "Auctions_Cancel_auction", - "blob": "4802d5038d240b63ce64c10c05bf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 5.552342355555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", "2 | Nonce : 2339", - "3 | Tip : KSM 5.552342355555", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21828,18 +23027,18 @@ ] }, { - "index": 914, + "index": 969, "name": "Auctions_Cancel_auction", - "blob": "4802d503ae1103006d0fbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5030003d2029649c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.000000000987" + "1 | Tip : KSM 0.00123456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000000000987", + "2 | Nonce : 0", + "3 | Tip : KSM 0.00123456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", @@ -21847,18 +23046,20 @@ ] }, { - "index": 915, + "index": 970, "name": "Auctions_Cancel_auction", - "blob": "4802d503ae1103008ed73e0dbf23000008000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "blob": "4802d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "output": [ "0 | Auctions : Cancel auction", - "1 | Tip : KSM 0.000055555555" + "1 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "1 | Tip [2/2] : 456789" ], "output_expert": [ "0 | Auctions : Cancel auction", "1 | Chain : Kusama", - "2 | Nonce : 50283", - "3 | Tip : KSM 0.000055555555", + "2 | Nonce : 2339", + "3 | Tip [1/2] : KSM 123456789012345678901234567.890123", + "3 | Tip [2/2] : 456789", "4 | Era Phase : 61", "5 | Era Period : 64", "6 | Block [1/2] : b0a8d493285c2df73290dfb7e61f870f17b418", From b3324bdfc72b780760372cea83b91783bb34d599 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:10:36 +0100 Subject: [PATCH 07/14] update cmake-modules --- cmake/cmake-modules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/cmake-modules b/cmake/cmake-modules index d98828f5..770145a3 160000 --- a/cmake/cmake-modules +++ b/cmake/cmake-modules @@ -1 +1 @@ -Subproject commit d98828f54f6974717798e63195cfbf08fe2daad0 +Subproject commit 770145a3338408bff34e2e7bdec15ee4e4ae2b79 From 3d2ad9b62f5d96f55e6988ceaebb883ea4aa036e Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 19:10:48 +0100 Subject: [PATCH 08/14] update nanox sdk --- deps/nanox-secure-sdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/nanox-secure-sdk b/deps/nanox-secure-sdk index cffd222a..ba45af7f 160000 --- a/deps/nanox-secure-sdk +++ b/deps/nanox-secure-sdk @@ -1 +1 @@ -Subproject commit cffd222a689da246cb0fab5c954d3afd7f419b4b +Subproject commit ba45af7f4208b6c02ac35fb0d43a914228febd56 From 031bb138836d86b0f3673197c799bb05e5abc2ab Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 20:04:10 +0100 Subject: [PATCH 09/14] update zemu --- tests_zemu/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests_zemu/package.json b/tests_zemu/package.json index b821848f..413a22b1 100644 --- a/tests_zemu/package.json +++ b/tests_zemu/package.json @@ -18,8 +18,8 @@ "testSR25519": "jest tests/sr25519.test.ts" }, "dependencies": { - "@zondax/ledger-substrate": "^0.18.0", - "@zondax/zemu": "^0.21.1" + "@zondax/ledger-substrate": "^0.24.0", + "@zondax/zemu": "^0.26.0" }, "devDependencies": { "@types/jest": "^27.0.2", From 9757af405ae82019d3e466a7387ba47529ec05ba Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 20:09:44 +0100 Subject: [PATCH 10/14] update test files --- tests_zemu/tests/common.ts | 9 --------- tests_zemu/tests/sr25519.test.ts | 25 +++++++++++-------------- tests_zemu/tests/standard.test.ts | 31 +++++++++++++------------------ tests_zemu/tests/zemu_blobs.ts | 25 +++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 41 deletions(-) create mode 100644 tests_zemu/tests/zemu_blobs.ts diff --git a/tests_zemu/tests/common.ts b/tests_zemu/tests/common.ts index 09c63f1f..a9319202 100644 --- a/tests_zemu/tests/common.ts +++ b/tests_zemu/tests/common.ts @@ -11,12 +11,3 @@ export const models: DeviceModel[] = [ { name: 'nanos', prefix: 'S', path: APP_PATH_S }, { name: 'nanox', prefix: 'X', path: APP_PATH_X }, ] - -export const txBasic = - '040000d4f3f4673242475be261684a33ccc6523c7c81d420295e719892c003523a731503d2029649d503040b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' - -export const txNomination = - '060508005b5daf47dbe04ff90d777f94598f25f566f8f06e7cbed9c4e0ab331f8b4f3268004f8a26f23d065dd4498b8dc372dad957f6ab6386bf145262319405d82c6419fdd50391010b63ce64c10c05c823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' - -export const setKeys = - '08003f13dbb99dfe358cdfd517554b55c5c7203903a340156c1f675fe8ab55ab12d98ac695af3e539dadf872051f1d0183932bde9521ea3c8609d7306197472d48f02565d43dc9c7a87556b299cf91bab3e6e1760529e66aafbe852ac7a8e2b83f45ad524478a200f64ea295956e33f992c7ce440d2db976814ba581b8ea0d656d71964c73125f0741001e15491c8f071fa1942f8a03f46cfbefaa666cf875498fe47d6bd8ee29a9739480b2024f2ef36ad588d35483ffe98d4b70bf2e92aadb4b5701011cb9a94af4d590fc8d0befc2d2f4e0ad76af2f2e84b591dcab92cd11e5bca52a89b9198038f93a546abb6aec4aeb6bcbaf23e08c3e4885beccd21b064f833641d503006d0fc823000009000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' diff --git a/tests_zemu/tests/sr25519.test.ts b/tests_zemu/tests/sr25519.test.ts index 3c685e6a..a05ff515 100644 --- a/tests_zemu/tests/sr25519.test.ts +++ b/tests_zemu/tests/sr25519.test.ts @@ -16,7 +16,8 @@ import Zemu, { DEFAULT_START_OPTIONS } from '@zondax/zemu' import { newKusamaApp } from '@zondax/ledger-substrate' -import {APP_SEED, txBasic, txNomination} from './common' +import {APP_SEED} from './common' +import {txBalances_transfer, txStaking_nominate} from './zemu_blobs' // @ts-ignore import { blake2bFinal, blake2bInit, blake2bUpdate } from 'blakejs' @@ -72,8 +73,7 @@ describe('SR25519', function () { const respRequest = app.getAddress(0x80000000, 0x80000000, 0x80000000, true, 1) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', 's-show_address_sr25519', 2) + await sim.compareSnapshotsAndApprove('.', 's-show_address_sr25519') const resp = await respRequest console.log(resp) @@ -100,7 +100,7 @@ describe('SR25519', function () { const respRequest = app.getAddress(0x80000000, 0x80000000, 0x80000000, true, 1) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - await sim.compareSnapshotsAndAccept('.', 's-show_address_reject_sr25519', 3, 2) + await sim.navigateAndCompareUntilText('.', 's-show_address_reject_sr25519', 'REJECT') const resp = await respRequest console.log(resp) @@ -121,7 +121,7 @@ describe('SR25519', function () { const pathChange = 0x80000000 const pathIndex = 0x80000000 - const txBlob = Buffer.from(txBasic, 'hex') + const txBlob = Buffer.from(txBalances_transfer, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex, false, 1) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -130,8 +130,7 @@ describe('SR25519', function () { const signatureRequest = app.sign(pathAccount, pathChange, pathIndex, txBlob, 1) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', 's-sign_basic_normal', 5) + await sim.compareSnapshotsAndApprove('.', 's-sign_basic_normal') const signatureResponse = await signatureRequest console.log(signatureResponse) @@ -168,7 +167,7 @@ describe('SR25519', function () { await sim.clickBoth() await sim.clickLeft() - const txBlob = Buffer.from(txBasic, 'hex') + const txBlob = Buffer.from(txBalances_transfer, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex, false, 1) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -178,8 +177,7 @@ describe('SR25519', function () { // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', 's-sign_basic_expert', 11) + await sim.compareSnapshotsAndApprove('.', 's-sign_basic_expert') const signatureResponse = await signatureRequest console.log(signatureResponse) @@ -216,7 +214,7 @@ describe('SR25519', function () { await sim.clickBoth() await sim.clickLeft() - const txBlob = Buffer.from(txBasic, 'hex') + const txBlob = Buffer.from(txBalances_transfer, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex, false, 1) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -263,7 +261,7 @@ describe('SR25519', function () { const pathChange = 0x80000000 const pathIndex = 0x80000000 - const txBlob = Buffer.from(txNomination, 'hex') + const txBlob = Buffer.from(txStaking_nominate, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex, false, 1) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -272,8 +270,7 @@ describe('SR25519', function () { const signatureRequest = app.sign(pathAccount, pathChange, pathIndex, txBlob, 1) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', 's-sign_large_nomination', 6) + await sim.compareSnapshotsAndApprove('.', 's-sign_large_nomination') const signatureResponse = await signatureRequest console.log(signatureResponse) diff --git a/tests_zemu/tests/standard.test.ts b/tests_zemu/tests/standard.test.ts index 3b8718e2..1950cba5 100644 --- a/tests_zemu/tests/standard.test.ts +++ b/tests_zemu/tests/standard.test.ts @@ -16,7 +16,8 @@ import Zemu, {DEFAULT_START_OPTIONS} from '@zondax/zemu' import {newKusamaApp} from '@zondax/ledger-substrate' -import {APP_SEED, models, setKeys, txBasic, txNomination} from './common' +import {APP_SEED, models} from './common' +import {txBalances_transfer, txSession_setKeys, txStaking_nominate} from './zemu_blobs' // @ts-ignore import ed25519 from 'ed25519-supercop' @@ -50,7 +51,7 @@ describe('Standard', function () { const sim = new Zemu(m.path) try { await sim.start({...defaultOptions, model: m.name}) - await sim.navigateAndCompareSnapshots('.', `${m.prefix.toLowerCase()}-mainmenu`, [1, 0, 0, 5, -5]) + await sim.navigateAndCompareSnapshots('.', `${m.prefix.toLowerCase()}-mainmenu`, [1, 0, 0, 4, -5]) } finally { await sim.close() } @@ -108,8 +109,7 @@ describe('Standard', function () { const respRequest = app.getAddress(0x80000000, 0x80000000, 0x80000000, true) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-show_address`, 2) + await sim.compareSnapshotsAndApprove('.', `${m.prefix.toLowerCase()}-show_address`) const resp = await respRequest @@ -137,8 +137,7 @@ describe('Standard', function () { const respRequest = app.getAddress(0x80000000, 0x80000000, 0x80000000, true) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-show_address_reject`, 3, 2) + await sim.navigateAndCompareUntilText('.', `${m.prefix.toLowerCase()}-show_address_reject`, 'REJECT') const resp = await respRequest console.log(resp) @@ -159,7 +158,7 @@ describe('Standard', function () { const pathChange = 0x80000000 const pathIndex = 0x80000000 - const txBlob = Buffer.from(txBasic, 'hex') + const txBlob = Buffer.from(txBalances_transfer, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -168,8 +167,7 @@ describe('Standard', function () { const signatureRequest = app.sign(pathAccount, pathChange, pathIndex, txBlob) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-sign_basic_normal`, 5) + await sim.compareSnapshotsAndApprove('.', `${m.prefix.toLowerCase()}-sign_basic_normal`) const signatureResponse = await signatureRequest console.log(signatureResponse) @@ -205,7 +203,7 @@ describe('Standard', function () { await sim.clickBoth() await sim.clickLeft() - const txBlob = Buffer.from(txBasic, 'hex') + const txBlob = Buffer.from(txBalances_transfer, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -215,8 +213,7 @@ describe('Standard', function () { // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-sign_basic_expert`, 11) + await sim.compareSnapshotsAndApprove('.', `${m.prefix.toLowerCase()}-sign_basic_expert`) const signatureResponse = await signatureRequest console.log(signatureResponse) @@ -247,7 +244,7 @@ describe('Standard', function () { const pathChange = 0x80000000 const pathIndex = 0x80000000 - const txBlob = Buffer.from(txNomination, 'hex') + const txBlob = Buffer.from(txStaking_nominate, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -256,8 +253,7 @@ describe('Standard', function () { const signatureRequest = app.sign(pathAccount, pathChange, pathIndex, txBlob) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-sign_large_nomination`, m.name === 'nanos' ? 6 : 5) + await sim.compareSnapshotsAndApprove('.', `${m.prefix.toLowerCase()}-sign_large_nomination`) const signatureResponse = await signatureRequest console.log(signatureResponse) @@ -288,7 +284,7 @@ describe('Standard', function () { const pathChange = 0x80000000 const pathIndex = 0x80000000 - const txBlob = Buffer.from(setKeys, 'hex') + const txBlob = Buffer.from(txSession_setKeys, 'hex') const responseAddr = await app.getAddress(pathAccount, pathChange, pathIndex) const pubKey = Buffer.from(responseAddr.pubKey, 'hex') @@ -297,8 +293,7 @@ describe('Standard', function () { const signatureRequest = app.sign(pathAccount, pathChange, pathIndex, txBlob) // Wait until we are not in the main menu await sim.waitUntilScreenIsNot(sim.getMainMenuSnapshot()) - - await sim.compareSnapshotsAndAccept('.', `${m.prefix.toLowerCase()}-set-keys`, m.name === 'nanos' ? 18 : 14) + await sim.compareSnapshotsAndApprove('.', `${m.prefix.toLowerCase()}-set-keys`) const signatureResponse = await signatureRequest console.log(signatureResponse) diff --git a/tests_zemu/tests/zemu_blobs.ts b/tests_zemu/tests/zemu_blobs.ts new file mode 100644 index 00000000..69f16a7c --- /dev/null +++ b/tests_zemu/tests/zemu_blobs.ts @@ -0,0 +1,25 @@ +/** ****************************************************************************** + * (c) 2019 - 2022 Zondax GmbH + * + * 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. + ******************************************************************************* */ + +export const txBalances_transfer = + '040000313233343536373839303132333435363738393031323334353637383930313233158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' + +export const txStaking_nominate = + '060510003132333435363738393031323334353637383930313233343536373839303132003132333435363738393031323334353637383930313233343536373839303133003132333435363738393031323334353637383930313233343536373839303134003132333435363738393031323334353637383930313233343536373839303135d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' + +export const txSession_setKeys = + '0800313233343536373839303132333435363738393031323334353637383930313231323334353637383930313233343536373839303132333435363738393031323132333435363738393031323334353637383930313233343536373839303132313233343536373839303132333435363738393031323334353637383930313200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100c293435d5038d2433158139ae28a3dfaac5fe1560a5e9e05cd22300000a000000b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafeb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe' + From d873f8aeb77a89f657c04928acbdce6d9459dd9f Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 20:10:07 +0100 Subject: [PATCH 11/14] update snapshots --- tests_zemu/snapshots/s-mainmenu/00004.png | Bin 454 -> 438 bytes tests_zemu/snapshots/s-mainmenu/00008.png | Bin 245 -> 476 bytes tests_zemu/snapshots/s-mainmenu/00009.png | Bin 476 -> 532 bytes tests_zemu/snapshots/s-mainmenu/00010.png | Bin 532 -> 438 bytes tests_zemu/snapshots/s-mainmenu/00011.png | Bin 454 -> 504 bytes tests_zemu/snapshots/s-mainmenu/00012.png | Bin 504 -> 424 bytes tests_zemu/snapshots/s-set-keys/00001.png | Bin 630 -> 529 bytes tests_zemu/snapshots/s-set-keys/00002.png | Bin 633 -> 516 bytes tests_zemu/snapshots/s-set-keys/00003.png | Bin 632 -> 504 bytes tests_zemu/snapshots/s-set-keys/00004.png | Bin 667 -> 538 bytes tests_zemu/snapshots/s-set-keys/00005.png | Bin 649 -> 509 bytes tests_zemu/snapshots/s-set-keys/00006.png | Bin 672 -> 535 bytes tests_zemu/snapshots/s-set-keys/00007.png | Bin 668 -> 509 bytes tests_zemu/snapshots/s-set-keys/00008.png | Bin 653 -> 479 bytes tests_zemu/snapshots/s-set-keys/00009.png | Bin 640 -> 356 bytes tests_zemu/snapshots/s-set-keys/00010.png | Bin 664 -> 352 bytes tests_zemu/snapshots/s-set-keys/00011.png | Bin 639 -> 353 bytes tests_zemu/snapshots/s-set-keys/00012.png | Bin 431 -> 331 bytes tests_zemu/snapshots/s-set-keys/00013.png | Bin 606 -> 340 bytes tests_zemu/snapshots/s-set-keys/00014.png | Bin 660 -> 549 bytes tests_zemu/snapshots/s-set-keys/00015.png | Bin 623 -> 380 bytes tests_zemu/snapshots/s-set-keys/00016.png | Bin 557 -> 249 bytes tests_zemu/snapshots/s-set-keys/00017.png | Bin 353 -> 424 bytes .../snapshots/s-show_address_reject/00004.png | Bin 249 -> 424 bytes .../snapshots/s-show_address_reject/00005.png | Bin 486 -> 0 bytes .../snapshots/s-show_address_reject/00007.png | Bin 229 -> 0 bytes .../s-show_address_reject_sr25519/00004.png | Bin 249 -> 424 bytes .../s-show_address_reject_sr25519/00005.png | Bin 462 -> 0 bytes .../s-show_address_reject_sr25519/00007.png | Bin 229 -> 0 bytes .../s-show_address_reject_sr25519/00008.png | Bin 424 -> 0 bytes .../snapshots/s-sign_basic_expert/00001.png | Bin 620 -> 646 bytes .../snapshots/s-sign_basic_expert/00002.png | Bin 504 -> 426 bytes .../snapshots/s-sign_basic_expert/00003.png | Bin 421 -> 565 bytes .../snapshots/s-sign_basic_expert/00004.png | Bin 317 -> 413 bytes .../snapshots/s-sign_basic_expert/00005.png | Bin 245 -> 317 bytes .../snapshots/s-sign_basic_expert/00006.png | Bin 417 -> 290 bytes .../snapshots/s-sign_basic_expert/00007.png | Bin 309 -> 549 bytes .../snapshots/s-sign_basic_expert/00008.png | Bin 309 -> 380 bytes .../snapshots/s-sign_basic_expert/00009.png | Bin 617 -> 309 bytes .../snapshots/s-sign_basic_expert/00010.png | Bin 609 -> 309 bytes .../snapshots/s-sign_basic_expert/00011.png | Bin 249 -> 617 bytes .../snapshots/s-sign_basic_expert/00012.png | Bin 424 -> 609 bytes .../00018.png => s-sign_basic_expert/00013.png} | Bin .../00013.png => s-sign_basic_expert/00014.png} | Bin .../snapshots/s-sign_basic_normal/00001.png | Bin 620 -> 646 bytes .../snapshots/s-sign_basic_normal/00002.png | Bin 504 -> 426 bytes .../snapshots/s-sign_basic_normal/00003.png | Bin 421 -> 565 bytes .../snapshots/s-sign_basic_normal/00004.png | Bin 417 -> 413 bytes .../snapshots/s-sign_basic_normal/00005.png | Bin 249 -> 549 bytes .../snapshots/s-sign_basic_normal/00006.png | Bin 424 -> 380 bytes .../00006.png => s-sign_basic_normal/00007.png} | Bin .../00008.png | Bin .../snapshots/s-sign_large_nomination/00001.png | Bin 704 -> 666 bytes .../snapshots/s-sign_large_nomination/00002.png | Bin 492 -> 450 bytes .../snapshots/s-sign_large_nomination/00003.png | Bin 673 -> 663 bytes .../snapshots/s-sign_large_nomination/00004.png | Bin 466 -> 476 bytes .../snapshots/s-sign_large_nomination/00005.png | Bin 417 -> 671 bytes .../snapshots/s-sign_large_nomination/00006.png | Bin 249 -> 464 bytes .../snapshots/s-sign_large_nomination/00007.png | Bin 424 -> 663 bytes .../snapshots/s-sign_large_nomination/00008.png | Bin 0 -> 476 bytes .../snapshots/s-sign_large_nomination/00009.png | Bin 0 -> 549 bytes .../snapshots/s-sign_large_nomination/00010.png | Bin 0 -> 380 bytes .../00011.png} | Bin .../00012.png} | Bin tests_zemu/snapshots/x-mainmenu/00004.png | Bin 384 -> 378 bytes tests_zemu/snapshots/x-mainmenu/00008.png | Bin 283 -> 411 bytes tests_zemu/snapshots/x-mainmenu/00009.png | Bin 411 -> 462 bytes tests_zemu/snapshots/x-mainmenu/00010.png | Bin 462 -> 378 bytes tests_zemu/snapshots/x-mainmenu/00011.png | Bin 384 -> 442 bytes tests_zemu/snapshots/x-mainmenu/00012.png | Bin 442 -> 501 bytes tests_zemu/snapshots/x-set-keys/00001.png | Bin 359 -> 411 bytes tests_zemu/snapshots/x-set-keys/00002.png | Bin 832 -> 644 bytes tests_zemu/snapshots/x-set-keys/00003.png | Bin 850 -> 657 bytes tests_zemu/snapshots/x-set-keys/00004.png | Bin 851 -> 670 bytes tests_zemu/snapshots/x-set-keys/00005.png | Bin 884 -> 675 bytes tests_zemu/snapshots/x-set-keys/00006.png | Bin 859 -> 626 bytes tests_zemu/snapshots/x-set-keys/00007.png | Bin 868 -> 433 bytes tests_zemu/snapshots/x-set-keys/00008.png | Bin 878 -> 423 bytes tests_zemu/snapshots/x-set-keys/00009.png | Bin 383 -> 386 bytes tests_zemu/snapshots/x-set-keys/00010.png | Bin 838 -> 604 bytes tests_zemu/snapshots/x-set-keys/00011.png | Bin 862 -> 389 bytes tests_zemu/snapshots/x-set-keys/00012.png | Bin 511 -> 355 bytes tests_zemu/snapshots/x-set-keys/00013.png | Bin 360 -> 501 bytes tests_zemu/snapshots/x-show_address/00001.png | Bin 860 -> 886 bytes .../snapshots/x-show_address_reject/00001.png | Bin 860 -> 886 bytes .../snapshots/x-show_address_reject/00004.png | Bin 355 -> 501 bytes .../snapshots/x-show_address_reject/00005.png | Bin 860 -> 0 bytes .../snapshots/x-show_address_reject/00007.png | Bin 346 -> 0 bytes .../snapshots/x-sign_basic_expert/00001.png | Bin 358 -> 389 bytes .../snapshots/x-sign_basic_expert/00002.png | Bin 820 -> 824 bytes .../snapshots/x-sign_basic_expert/00003.png | Bin 447 -> 645 bytes .../snapshots/x-sign_basic_expert/00004.png | Bin 335 -> 441 bytes .../snapshots/x-sign_basic_expert/00005.png | Bin 265 -> 347 bytes .../snapshots/x-sign_basic_expert/00006.png | Bin 413 -> 333 bytes .../snapshots/x-sign_basic_expert/00007.png | Bin 331 -> 604 bytes .../snapshots/x-sign_basic_expert/00008.png | Bin 320 -> 389 bytes .../snapshots/x-sign_basic_expert/00009.png | Bin 824 -> 347 bytes .../snapshots/x-sign_basic_expert/00010.png | Bin 425 -> 364 bytes .../snapshots/x-sign_basic_expert/00011.png | Bin 355 -> 853 bytes .../snapshots/x-sign_basic_expert/00012.png | Bin 501 -> 474 bytes .../00014.png => x-sign_basic_expert/00013.png} | Bin .../00013.png => x-sign_basic_expert/00014.png} | Bin .../snapshots/x-sign_basic_normal/00001.png | Bin 358 -> 389 bytes .../snapshots/x-sign_basic_normal/00002.png | Bin 820 -> 824 bytes .../snapshots/x-sign_basic_normal/00003.png | Bin 447 -> 645 bytes .../snapshots/x-sign_basic_normal/00004.png | Bin 413 -> 441 bytes .../snapshots/x-sign_basic_normal/00005.png | Bin 355 -> 604 bytes .../snapshots/x-sign_basic_normal/00006.png | Bin 501 -> 389 bytes .../00006.png => x-sign_basic_normal/00007.png} | Bin .../00008.png | Bin .../snapshots/x-sign_large_nomination/00001.png | Bin 385 -> 410 bytes .../snapshots/x-sign_large_nomination/00002.png | Bin 917 -> 912 bytes .../snapshots/x-sign_large_nomination/00003.png | Bin 902 -> 943 bytes .../snapshots/x-sign_large_nomination/00004.png | Bin 413 -> 925 bytes .../snapshots/x-sign_large_nomination/00005.png | Bin 355 -> 946 bytes .../snapshots/x-sign_large_nomination/00006.png | Bin 501 -> 604 bytes .../snapshots/x-sign_large_nomination/00007.png | Bin 0 -> 389 bytes .../snapshots/x-sign_large_nomination/00008.png | Bin 0 -> 355 bytes .../00009.png} | Bin 119 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tests_zemu/snapshots/s-show_address_reject/00005.png delete mode 100644 tests_zemu/snapshots/s-show_address_reject/00007.png delete mode 100644 tests_zemu/snapshots/s-show_address_reject_sr25519/00005.png delete mode 100644 tests_zemu/snapshots/s-show_address_reject_sr25519/00007.png delete mode 100644 tests_zemu/snapshots/s-show_address_reject_sr25519/00008.png rename tests_zemu/snapshots/{s-set-keys/00018.png => s-sign_basic_expert/00013.png} (100%) rename tests_zemu/snapshots/{s-mainmenu/00013.png => s-sign_basic_expert/00014.png} (100%) rename tests_zemu/snapshots/{s-show_address_reject/00006.png => s-sign_basic_normal/00007.png} (100%) rename tests_zemu/snapshots/{s-show_address_reject => s-sign_basic_normal}/00008.png (100%) create mode 100644 tests_zemu/snapshots/s-sign_large_nomination/00008.png create mode 100644 tests_zemu/snapshots/s-sign_large_nomination/00009.png create mode 100644 tests_zemu/snapshots/s-sign_large_nomination/00010.png rename tests_zemu/snapshots/{s-show_address_reject_sr25519/00006.png => s-sign_large_nomination/00011.png} (100%) rename tests_zemu/snapshots/{s-set-keys/00019.png => s-sign_large_nomination/00012.png} (100%) delete mode 100644 tests_zemu/snapshots/x-show_address_reject/00005.png delete mode 100644 tests_zemu/snapshots/x-show_address_reject/00007.png rename tests_zemu/snapshots/{x-set-keys/00014.png => x-sign_basic_expert/00013.png} (100%) rename tests_zemu/snapshots/{x-mainmenu/00013.png => x-sign_basic_expert/00014.png} (100%) rename tests_zemu/snapshots/{x-show_address_reject/00006.png => x-sign_basic_normal/00007.png} (100%) rename tests_zemu/snapshots/{x-show_address_reject => x-sign_basic_normal}/00008.png (100%) create mode 100644 tests_zemu/snapshots/x-sign_large_nomination/00007.png create mode 100644 tests_zemu/snapshots/x-sign_large_nomination/00008.png rename tests_zemu/snapshots/{x-set-keys/00015.png => x-sign_large_nomination/00009.png} (100%) diff --git a/tests_zemu/snapshots/s-mainmenu/00004.png b/tests_zemu/snapshots/s-mainmenu/00004.png index 00eaf77574408cdf86f9c67e7a55feedb26e6520..52a0d9f1fbad3b6c57cfa195c9da0a296e49c059 100644 GIT binary patch delta 412 zcmV;N0b~Bg1GWQ@B!7KLL_t(|ob8y)5`!=ZMX^)=|AV_|7nz9&34)1H>pd$UdFUmO z01*HHfTuDIn&3S~i18#nr?pJ0QsG51ED^a|0Y>al>;#Yh<7y`K>d9rJyqlgo`Q7b z@fgW7xTp>p<9`?pjQp$1_y-U<1v%9ZAx6jw)^ZD@fmU2+b1mZ^gF6w^rF{R#*%i<( z+%^)rJ)kAAF1Dgyl~2{tw(kb6|!j5|S58vEA%%tWtK9`O4)7J{1UlO9?I z0Hvh*AYL3*;tXKIaRh@5j?we|6#j02`YyMDQJ>3ym#U|`11STTcaaUK{uo717dbjl zK|b;zMnZayT7M-Kd}5>dok&usD@QVwo>LI0K2Du>bdyLb>{bSchzeH$U&MSWAOG$s z13FAJ^gy3yhfvr9j$ACY@uoPtPgK;-2ky+Lp6Es|VqiuyXE)8zn}@hV{@HLK7c^y( zCN2$BxH+q`p?YCPo4MB7$UXg(a+y>e<^g{fC3o|8U?qajq(AjvY0Yv%2qAbcBjwTF zga9F>AP9mW_${wzdObHvF3Ek`$jf8e(4LrQfb9Oo40JZ+!fMI#_?BzcjNbfN{Wkjr zQc6Uf{9`4F2%2pmDK(9@E}1t23Q`~{cT*>Hez3Owd_RL3pnuhg_WD|+A5CnS2f z<1R=>9>hqj@_%08tFJeEt9JNNu4NYls;|+JVAvgMGi_}=Hi-lu#MnC_3pGMDW23pD zo%l3Tq1s;uz%yX*C@*hgC{m_s9+W+*wmnrUH1($8KRgFMJ7FYix2uTyh;ZFOaxAd9du toW1`4End^~hvDEt=Gue-f*=U4%Nw{t>IMx09xea?002ovPDHLkV1inQ(Cq*K delta 218 zcmV<0044w21N8xrBYyzANkldCSDTSy zPCJJP0000006>@&x7EIhh@{-T#I)BA)L%eU1Ij3GX5<3x%J(_V_(W{t2HAZbE2u^6 zgS+UiEUeamxer~f_Sal&@Kav@M{sJuzDdf{0&3J*el}wq8&ja^i_Gi+nu-Qk`f5rK zu3iF9csax<8gNczZbrSK>&^N{T0PaciMd*f`dMYT!n=eVLw{!z4FCWD004k-U%_5e Uy?*`pQvd(}07*qoM6N<$g1$;*AOHXW diff --git a/tests_zemu/snapshots/s-mainmenu/00009.png b/tests_zemu/snapshots/s-mainmenu/00009.png index 70a854947e9c579e2f5f5a996989c911ec068a87..f61bb5f5e5f62133c01401ccb960c7d27252c0ba 100644 GIT binary patch delta 506 zcmVgJCCY|Q}AGnA92RjUrMR1AfgzuCXMPw5Q zKq8SyB;JbSrhR^YuG^k7$lmXV6#f^#BfJ7e!2E&82Vnkftiomtf4?r>bO;4LC z>Vr#!PSc(}5Q!HA)!D{yvNTm{S8y&DMc^#U(gUo~(c% z3aGwmI!NjFp~#bYOfUXg1J+{g!L zB}s`JtxDd}6xlP}krTh>e1Qu)?;`Y&G*(Df&%GLUW7)n2*ptC~s}n&6yxRn wQH_Br+VBxj!Wu7b9@sQYBoc{4B9V9*J`qS7Cxk=2(EtDd07*qoM6N<$g5JgOZvX%Q delta 450 zcmV;z0X_bd1l$9VB!8nxL_t(|ob8#*62c%1MX96z|G_SFfrDv6(hJm*+MIDC<7bp2tjzLW$P#HfeMrbWhI+^mTGug2P{x6LtOfKC;4VqjD?`8`augd z1AtP7`XI(OuVMgp*wKg}gTwS(A7$1CD9>ygF!jUzHz|6GgCsEkd#2eS)bAtfDI!PX zE=Wcm#7M02UVq`MuQz+EcKA`QWfughuhEfU*d1y!ZEZX@i3A_S*gGK$H9|FGqq(7- z_%u?X+Fu92Ghpy2FK=TgQl@Gils&4pJyj|+^`|1h-6~^K6s=ouATY{#x*HhC1$8(V zo-Z2oUody%fJ3sOEX&3UDVlJgx8hFCmX>)|!M34;$U7-7?@vCjQ*(T6b!D9(i?A`A sz5f3#Ueol4;ow5%+JpguAPBC@8@NL11`PrpE&u=k07*qoM6N<$g0i>JjsO4v diff --git a/tests_zemu/snapshots/s-mainmenu/00010.png b/tests_zemu/snapshots/s-mainmenu/00010.png index f61bb5f5e5f62133c01401ccb960c7d27252c0ba..52a0d9f1fbad3b6c57cfa195c9da0a296e49c059 100644 GIT binary patch delta 412 zcmV;N0b~A@1hxZ^B!7KLL_t(|ob8y)5`!=ZMX^)=|AV_|7nz9&34)1H>pd$UdFUmO z01*HHfTuDIn&3S~i18#nr?pJ0QsG51ED^a|0Y>al>;#Yh<7y`K>d9rJyqlgo`Q7b z@fgW7xTp>p<9`?pjQp$1_y-U<1v%9ZAx6jw)^ZD@fmU2+b1mZ^gF6w^rF{R#*%i<( z+%^)rJ)kAAgJCCY|Q}AGnA92RjUrMR1AfgzuCXMPw5Q zKq8SyB;JbSrhR^YuG^k7$lmXV6#f^#BfJ7e!2E&82Vnkftiomtf4?r>bO;4LC z>Vr#!PSc(}5Q!HA)!D{yvNTm{S8y&DMc^#U(gUo~(c% z3aGwmI!NjFp~#bYOfUXg1J+{g!L zB}s`JtxDd}6xlP}krTh>e1Qu)?;`Y&G*(Df&%GLUW7)n2*ptC~s}n&6yxRn wQH_Br+VBxj!Wu7b9@sQYBoc{4B9V9*J`qS7Cxk=2(EtDd07*qoM6N<$f|IH6NdN!< diff --git a/tests_zemu/snapshots/s-mainmenu/00011.png b/tests_zemu/snapshots/s-mainmenu/00011.png index 00eaf77574408cdf86f9c67e7a55feedb26e6520..296c2c4c301ef9ae2f3b1d28d5e5e93223c873ee 100644 GIT binary patch delta 478 zcmV<40U`dz1NZ}wB!9n2L_t(|ob8#xvcn(DQ)lPQTg(z;&0wtq3gtjNUii7Ru>PfS-#~xq z2HK6ulA1{Mpw3i>2kmHe{2rub@+@}e24fxL5H;=hyss41BR5dfMF1dQx2#*7M zHQovbzye1yDSt{#{pwx?v*)oKIXa-c(|rJolt7`_Qxt>50qkAP2Vwm&vOUH5eja+r zG0m1 zHB_4G0O#Q~R#-F(%Fjw&stck6Z(QGv-i8{p)zaBMZC7et5J@$ppyoB|ZE##ipSv*X zP8MMX1bt4Cxa2m}c=iXXFxJ28F7qC&`YE4Uzx4Evu%%J?e_3k`f*=TjAP6qv4N)xp U{uUxM;s5{u07*qoM6N<$g6odrQUCw| delta 428 zcmV;d0aO0?1I7c8B!7)bL_t(|ob8#-a>F1Dgyl~2{tw(kb6|!j5|S58vEA%%tWtK9`O4)7J{1UlO9?I z0Hvh*AYL3*;tXKIaRh@5j?we|6#j02`YyMDQJ>3ym#U|`11STTcaaUK{uo717dbjl zK|b;zMnZayT7M-Kd}5>dok&usD@QVwo>LI0K2Du>bdyLb>{bSchzeH$U&MSWAOG$s z13FAJ^gy3yhfvr9j$ACY@uoPtPgK;-2ky+Lp6Es|VqiuyXE)8zn}@hV{@HLK7c^y( zCN2$BxH+q`p?YCPo4MB7$UXg(a+y>e<^g{fC3o|8U?qajq(AjvY0Yv%2qAR#B!6#7L_t(|ob8#-62c%1gtv~q{{wr_12Y&2#DrETy5Ff~ptPGG zAO#2^g#0Vppm`p50N8G?>wNp)T&B%T^#K6a(G$v0khj$kFpirOg|B-A1bq0zXfa>>=Y@jkna2wj4c@C`1gz6cmqV~>_ z2+-sEPRI-zfqy#!bSeKR9i6pLD9g19t4raIfG-^^vuaZMY9UkWD?6;IKKe@$Me)Et z3d(2EaBaKgSJ-h7>ky^224t6)KUh5Oyr9b$%=;yYhW%Cba{*>2=2#pXidg6Uw sKqjzA*}28k6hxM1arY;LkhweoVd}IxqyM#800000Ne4wvM6N<$f~5|+!TDQ)lPQTg(z;&0wtq3gtjNUii7Ru>PfS-#~xq z2HK6ulA1{Mpw3i>2kmHe{2rub@+@}e24fxL5H;=hyss41BR5dfMF1dQx2#*7M zHQovbzye1yDSt{#{pwx?v*)oKIXa-c(|rJolt7`_Qxt>50qkAP2Vwm&vOUH5eja+r zG0m1 zHB_4G0O#Q~R#-F(%Fjw&stck6Z(QGv-i8{p)zaBMZC7et5J@$ppyoB|ZE##ipSv*X zP8MMX1bt4Cxa2m}c=iXXFxJ28F7qC&`YE4Uzx4Evu%%J?e_3k`f*=TjAP6qv4N)xp U{uUxM;s5{u07*qoM6N<$g0qU^Gynhq diff --git a/tests_zemu/snapshots/s-set-keys/00001.png b/tests_zemu/snapshots/s-set-keys/00001.png index 5102301da4b3d62921ac9b68d27484c2243e398c..b84b96a5ce3d3d6a50d5d8ebd8b2093a4f893c95 100644 GIT binary patch delta 504 zcmVkM#^b@zhf)ZJ+%%&dYSXr{3 zAZ?>j>AAwG@_z&N+y=ELdvl8(QIU}<4q{Op!fLjbDH8k>y8nr3JZh3KlIz+yphZ$7 zwrwEFP|Kk~Gfvz+>peF{ZD|GM6fMP58*ag+1C+aKBnX6wZp3_}Bp!3PDBj?6fYm!7 zTJ%i79{|~4b#C|?Hgj#>sCKu#U7MeYiHV8Z04_xY>~Yv_!uh5Gh8d7OFV6YF0)~L` z=YR~efRUo_95AjpfpDHuz_7uwe=hoybVE53p^a0t+^2vc0A2xXo*4(*0*0YaBxp^P uTmB{aO9hOMQpC6;J~ckKfH5&Kq2V7`RY-k0&F^dg0000VjG zw|%VPsuPvDa`mYr$ShC%3Nv32VB5u8%vt-{77h{33rp9M;D1{woEr&VDXDWZ5~?{S z_&Petc=lxPH!a?{2QWU-Y^h3m{X><+;^uu=9UUtyG{c3e%TEBq9}7YLbGn=CiAOBj z_ES)@`p|5ksxa}Vm-Y(2jh%HckOFByXINR=e+ z^9fiPnJVh=Q}K-5MWjE14mDM9Muvr?D>Sn?CVt{JDy@8EqsIgCB=f7rp@I>WxJs?6 ztI}8UqrlgB*fA6YkltzdnuO@pZn7{Evt*^ON_9~BPAMRb(l5H4?YAzXv!d^mO1F&@sIc4Emiq(cGQFNW|9r++8BpWc~ z{l$;YQxI6o7Gl@JvEHo|)Lpa){1>Pb^aSL8uQIAQP|C9kfMlz*REf%|HfRz`wq^s+ z2QQ*CVOL*j8kpj`3EdX2P03A}u%pvC27*mxG*qX#<`B=R1zFMWMnrVu!UR~~SLLTX sm<`~fIxbqMpJh0{)sW?ig@px#KOtRO5F&tWg8%>k07*qoM6N<$f*LFw-2eap diff --git a/tests_zemu/snapshots/s-set-keys/00002.png b/tests_zemu/snapshots/s-set-keys/00002.png index e4315908b64dd2cda41633cda74b360e2c9dfd3a..a73760218414178fb049b4d5bcc3a2518081aa05 100644 GIT binary patch delta 491 zcmVcj2woKw!X0L=SViXwxxK zgvld>JwESXjeQ78xX=6lBfcktihl)PyPSxebBEOr$F<-()Qln`&Nsr*|NOH~i)~$*lNd&P#}JsIiN*Tq~x_B(xr|h zNE@P6`Oye%oT8=JAvRbP7?+{Rd}RlUZiswitVNIL16HtB3eh4S;1>{!U7Q2j%09#o zazC;0d>NXLc*fhnz`#HUfJYH4aFNY$Hsg(E7;S#YsATHA-R2Vr=X^PT(vOatj3S!B z+KgsZO=TYdcHW|Ve#Q)=jl%?MW^msbMl(l;K_^V<9`88AX!7&)9Dv}u)em(ifHgC? h;|!zC&%nSy0e_}~N_V3V9_Ro7002ovPDHLkV1jgl?|J|L delta 609 zcmV-n0-pVZ1o;GzBYy%wNklLGKC}h_ z5l~2p&e%TG8)p$I;_3 ?`E_$7?zw1LFG)$$ z!6o2iVE#eaW?_(v00cbaKO#2?Z=Ym*>?Uh>u6s>CF$9(Xt(Y#k_Z1^ZlC^1yRE|pw zsS#ZWmmu9ziGLF^JzlB7^;@8uaBLN@uL zEd^DHJSMt{^_*S@EMYRV8nq6{%0(Z{S=*HVNEyKq?VY(gG%m+hTR~eP#>FFD z2M)uV+FE*zf^IgAI3={4V9z6|72(n}ny--+Vtuf!lDHfqI{q2=k1=*9qagx#H80ld vMiNIdPn4AiO;4K@vYf&QNXKGgV&cFL9G61P>_TaG00000NkvXXu0mjf;P4`~ diff --git a/tests_zemu/snapshots/s-set-keys/00003.png b/tests_zemu/snapshots/s-set-keys/00003.png index e6cce807d67914efee1c3b1c6f8c19e5065672ed..c567f9622ad923747702de168f51c871ea01f956 100644 GIT binary patch delta 479 zcmV<50U-YP1o#7xBYy$ENklc&2t?=j{~zpwedw905R#1$s!evBjuHZC zE(?L^h;60TIJ$6gx2^vVdrvxLtxR9*?ueZ6fZ3<>T=*K)gv=wZ-w0>>^Ddp1wvO2# zm^-$SSrd6|&&WTR!L*2f5wrI{zVZ}Ne9`)9_Vb@o7|R4RQGaqxS|aHV+1r{!cH zIoZLdU-kIK7=WCKq9)S)vO!0DISyySqtqm_6?_ukT){{~8$(e+ z>VW)HH0y|)Bmxk?o#?({Bf}v-0T0D{%IupfcIpRifeBTVT!~1S1*9(>7+hMDEN`)s zAGw!~GmyLuPk-}~%0!h8B0+K_FP#$RvWgw?H=XC8CJ4(|2TC+XO7OFD zdh;Vk#(Yi3gjxzJ-nMXw<$hahXIuBjJ{}#7)6i|*e<_NKT)ZTsdIL0G0ECPB2D||F zG}LZQa`%P$1Zbz-cm@Ur25tkm6hXkX+e^ZnKDvP623VF*%BDt=pDAD{fJ+haVZD#E z)pifKb~W#A{VI^;|&4Zp%&%iO~yL z2uUF-@p{tPC{?7Wdp&F^<2fw z2&Rq&GFzgI@Eo~82g@pUF(&qRU4DuPzgWDMeE+9>I5rbJh=0^~awb%DNOU7cF6%)) za+y8hjGBT)~otWkX0H zX~6swicQ2#3IPaUB&G-K$m@`wfM1HuW&Oc5*7Xy&z*0xfVyz6BFg5Ra8Kf`CR4ym* z!OF5EQ@7^qw13v51mMk)$^||Lm%<7PL0Ie}MQWQ{-pIZKSfrGr1-yDm(XQH~l7U8E z5A{`BBN{)5{BA%Mi*U(R-yYmZi!8JxLgfiyqGe2h(*n}+uOk-WLJS76YYFd??lDHq z3jlY{?x-rs>Bh9#qeA+++xzqxM^Dru!~0Zs0_0Wclz(El5IKiH6!~&gjXs%56Xu`N z29RrFVq)SpfJYHdN8|M3;Itr=V@a;1QJ?e_nr*Y07Fb=0)BZ>TRiO0+@0f5JL}18U zr8+{#C_)y+bc_fq@M|TX4ZN1i8krR6D?>}{e{cB`s`^+aoT4>T7 z#1%%<5bii%p)2n3DY?$q=Vc@k7U3@28rj%XncwSOhD$szkj8*BU9AAe(`BN^-=B%et)By%Cv zT|GnO$L&b~&vbtjH1-*6$LD1X$5Nd5-6J7ch=?Np zJU)3A!n>kHX=@Y6I%oj-r!IH}X6OPSfHl~uRNdHE{sO)c@6BRWmgCkhOo0t`OcJH2 zzB(V4Ma&i%dw&^?nHxS}95RqwQt8#7Zm}~OJX7RTWKpo^U0UFO=sP#{%_up9k>jqP z4`|UCDLFPod{XKYC*?K;2^3L~=1}L8wPY`MxP`kq9i1r%1cf)MrHIC)Z8M+X9>8L4 zgp1|_`~YG?yd(s$H8gzihOa0WKDO)X78Vv3W(6!o1bUM2!14i4h2cU74Y=^Y@?rJz zlL#RS=C}t4u*&Bfgb=t5joY#?TAc9oX%Rv=0IB25{Z-9hz?eh`Q9!*3Cx!BUU{xGf z2q}y?ffP}Psdhiqb5X+?F#L+26);$FT7-~=g#`=0i}XOpbH*Oq00000NkvXXu0mjf D6#44t delta 643 zcmV-}0(||N1e*nrBYy&7NklK8o&It zZr4JugaPr@$DR1>{DFyYWZFFfY*%(86JmdNgvG)9qK(D<@qbU=I8h8Pt%-9|2GN%% zy3-6ji+iR39NoPn=)H5WU7sH?#AMiuRf|m6`<}jZt=c#L?%YVl&K_yPIg-cAKrqWc zhhH-T;Std!v^4@|2MtdB$r(@J6S4pooH1Aws?*e%u7LlD$HN*GSrZ@q!be~W^cA%- z5r7`e|pz1&*-TwS}$@E@aJ_3&g}tOto2uU z#EB?MMd~zt5YN$@Fkk6p!S>(#Oa1-qi78e9Kbgj6f_U^uM@@*tC&0|CJ!hqTl1#nc zJMi^ny7mL}sU#4b0MEIGckoa@4=va^ifRvj0v#@Pmwz3TYbM`;R2tftIs>r|rG2E2 zCokl2Cz@^gmJ>=t`I`((U}0fl;e%oA0r(iDCE7si#j#qWQ}=-iYkPpmQ>1G0Ox$J$ z;#oX>==T^j>j9xcMU&rxux469!F`7E1>5>`*L0WSNKdZLuhAcFw_C!-D>Au^bAqSts)p@5Tu^BFyzSLd$p*;d*{IR)m z-id20T7yO&88wEc0BeNtr)k!ZlOzHnge%c}!FnEta0gtJb;|k|m+#aEr(jZOakwm( zOb)w1gBv^T;D26+Xe2G8kdzZt8cB;Jv9Z+%bELjRc5X{6BO$svAQ+*s3V~#UmFGeLi%?{X?is9J3 zqo^RX<2fGO=v>tZf*|NdT#C^C@-EM)JJ&Gm5&j4eCSCQN8cEAZY8V6q(om!P?2_mo zT%U&W+l`w2JJ&Fb;kQ2@K<-?_ATTXOfC%Uli>_G1C@_5i+CSt3iWi_wL$!VXwT2M{ a0mmEq)lhMNe)Saq0000naMp})JOmc zA$TR)j8nX7}>KpojkHA!*!%x6{ zT7~6%6Oglz5r4vt0k!VSrwBKe>T~ZZk5dbd0MfJ|{bIJKta<@N?$jJUyOR%If71>kK1!bEDwNQkeI}&u#jt9pL zb#vn>SMLa5BKM=!=CMhN=f=K2qca=<^w@dc&_7 zjzihIU@vb;rs$0nP15M|5pWmelM2}cRB_^y%k3>kbH2B|h{Vz4@&Mq&UGFyg>cy{A5PE}I2S@hmwXXRdcY^P%T&GShI9q! zkBfgvMIh)!S0ulPSrsGoC5wzg88(Z~M4u?O^qgZ@vpx?D44C)^mBAs5#*L_d00000 LNkvXXu0mjfReUZ} diff --git a/tests_zemu/snapshots/s-set-keys/00006.png b/tests_zemu/snapshots/s-set-keys/00006.png index 6a16e351a80a765cc677c6e4d84b1f3414153469..032bd8e25f383cc07bc59aa27138f56979fa071e 100644 GIT binary patch delta 510 zcmVDiOyxqHouEJ+uUY z03uS65a(NZBUC|AcfP+rw?7j_$s=Sf7nX1b?@R0puE3nkM5E0^G%SZ${{EqEM_ z5sA7m`)>2MJv}{N(7<-6xA4jRUtLR*Ik)7?l`(uqiC1`jIF2@;;xSrCD9O`}f1VAQ;fqtsJ!!>fW_eJCtJ$AO{@@A6S zIU9-$5`^dC0qajuED@750uaDV?@^Q-@hY>-k1*@omVcp>L`L0bN?1%T>IO65fjGMydTdDgAfi_SA2h-BE@GAlEH{+C~LoS2O-A6 z(-ZE0NlxW`89xYt1HiiCYhph+GYmo&78Wdg0TJ^vJJ=9&v;Y7A07*qoM6N<$g3|fr A*Z=?k delta 649 zcmV;40(SkE1fT_wBYy&CNkl%pZbvzu~$gnTzJM0n0>0}BG;g0lQH^j5*@Qp+rNFEE|0Oq z%n3$UMxPqL{o#4!039q3F^Xeif8&yLa$7k6SbeEjBqyRz-+uu$%Z*4~laWyAkmyF7 zTpm@VBRl)x-Cr|)QqbvZuuhya5$oG@Cr_Py`Yr%nU=8G3IXk&do;~|Sbgy0??9Dox zEVL~jb{kN!JZl>;|LmGg#6>Ow5Wq+uk(3U^eZR@|QAT~gor#~q5^LU;F{61|_M$pG zH&an(q!EPLv42y#H$1<$?NFo+a(W@sMT29AHND) z4(*BlHeFB)ea0=HI6J@(b4$7GVFw>tVg^VQ*$u%Rz``7v3lMUh*qNao24#abc6A8y zxU$x)JJ`Fgp=#!#_*}G&L@kwl_J%I1dr7D6ZNJH7aeus!Fn~I;16ZNIxx#>pnwuRd zMMy62=$0BEE^@Fgj(a}!f6^N!CMJFwm=uAhWB;}QRz0$BREMw*$z5j}L=l=sxhIA#9pZvQ0Yl3fCW%X^Qg95_M*6mi0BagkRx?cYZC96N_b03 zWp=XQ{}{q&k(*MII?f>TDBVk4^)X*b%99`+mZT%!<~ox-oTf9Nx#sre1V)E<%$kv? j)?%q9s-2062?cL6r%Q1)Lh7{u00005!dg;-v0cRPD@|M zY!J*HTgdDdc`VP!7c`g_@fI;_fAb~X$!%f$(Vo>L_N5fYMt_2tDEm!%l68ly?gN8F zc6RXYS3RDX1CTvY)O69$N_;sv4;$%GY8Jyq?WHyV`w>Tk@xR?w@J?J~(X{M>k~W5- zLiQ0P{?wXn;Ua|q1h^927i?rYUNxjJ5w zlr+;sWE7-sLw}A@opiv$#!=E%O3h`JUm?E0@HoNMB;jnXV}oEiTYYKh;J(6iK#3NS ziXNM&YOR2wLu<5E*+IsG>l7u$QzS-P8S2tS$!7I_xQv3@v&b3p49Pog1|x z4s&Y7Qh5&0_MH)evO4sb9!3`edImS^Vd$K65`JtCLojjxMxWWIBkgDk=^5OkhcOro a3j71rlt^*W#C)0n0000W zwl)MQqR82W-=y@#hx0HE~1y70(eMAsL6kBSCc*Qj78gi3re02 zMFw*S6Mv%9w%{R!00q(#yBqAxbSORGOL1;lyK&9k`h`bei?It^0|7Kz+nG~&;xv)r zG4=EqczpmvXMZqHG}o?v_8q&+?--AzX#f?AiWF^WcU(`6l~_PF+ARO>w&of znxeHWQcCDrhUR{nti|LoHzj9dyrkNb+HD!6>mfOSfqyXGXchELPl?^oZ~#}PEpD9I zX#oCPOc)`G)>G?4mZ3mfX2`QrTv6b@a?D-e-xDANQ5FdKR1 zGE6#;>fQHxO(P$yxC0oWgx9xd>1Wgp`6z<#1Jb=cn^Ob?1M}Sj2JR@3ssc8X5>n%< e4t`XaZBYy#=NklJ(sSy7{YN!x$RdLP1X$@Knvx?AU1fdJs_(ZG{1h9iDEG>=+vb{SWnJAlx5k8> zc7*jf>llNN@PEjzLz5075eyE}QNQd&c3nlrf0A1ViyLow3Fq&+TJ(#WC+ul$)ybVQ z9X5#ycGNYG)9FIpeJpCK66BFbe1WZ_wzX%z9*vGMlyyL#US#5>_*S1pM*@&u6llN+ zzy~a0d=w;k??ya+XUB6rK@bEB18+qT_AMR~a(Dp;%ATsSL!IC$pWuBeeG#kBQqCIHal_NXL8<@oY2999 z2WCdF;qvTbE=Y}?={a+P4z`z=#hlzvWBDbb`o)s9^!q<$vh`3A#K6hvOVaFwaKeQt#6z0Ca;G$fwdfu|{6)eIj}mk0)Dmc$1~J zWka2BFon)`-LDJTd>PMd{EC5zPkQGCX1oII)ELu>NTb0UB1!p>rok)wNifpHqh&~0$ zX-oTZuQioORS=#Pqz09b*pdM(<-3ZyZU4S!Gp=N1qEc2@bOyWAI`uLP<4 zWObtk_W(pt4a9|LCzQS0K79l>Rk@>gjCJ_z42cTCk#j~J8@8vHjg=f z54#Ebyly7acy2A{2BbG`h}1>bouGR_Lf|bFq$~0c2oZEMbOZpTy{N2=&OUsu$b`HI zlPeFWUivWjmE_QMJ;*h4Yf(o4PIC-Y-rz^P46vkd3lTWX#A3`A79jipKe`kvIoN4R P00000NkvXXu0mjf?{_2; diff --git a/tests_zemu/snapshots/s-set-keys/00009.png b/tests_zemu/snapshots/s-set-keys/00009.png index 5b504037e37eacdbbf8db52b9755da45ff07bcd8..e145bf54e2c551318ea0809bac754ddd68bd9bbf 100644 GIT binary patch delta 330 zcmZo*eZn+Bxt>wm)5S5QV$R#?2l);waI~$By#K$k`UYQYRF~-4u7=b9Q`ucvS+(?3 zPgQ#_UZ@swX7Bd*{bkv1H($KHwa{#~7TU|4_ z&0_4nxqs&a0XrZ6)685t+P1EKnr+{we-*i;d+B7!xhoTx)2^AMeAjliPX5od zGd-WzXIkGd0)PdOBYy%%Nklkl5sQplo&f7BTW=78qeiiZS${)_Kpbs33zD(Z>4 zG8atrrAc!0!%27zAk4KW+bh3s4`ShZgsWXh&VWoaX@;*1WW0i0okH42cUXJCdBOLz zH*v-R?AW#lpsVdpbF_v6QMKKRzDxOw>HzU_xKn+YjDN!ikkv)tDTPFl0|5QOW9FN+ zU+hl<0|VayQ32}Sy)JQ?7#d~U)W=$D@!=mW%r1JswF2J^U})UsRzJg)Mbd}Jf{4F@ z-2MU648ZNV5L>37Q4FK&m%Hw)mFgXZn-e=W6$W-j?8W2~5V*+8vBn?wMmElp+HeNtu; zOpo^Dv?~_Yzy0g)$Ky2zVkJD^Kh2T4IpNur({^*i@0A@|T)T2(!k(Tbl?zYkbvSMD z>+afrr2J9q^{BW*A>lp#%I`M>-L#JOQ!qOFZ;Oj^e-Hn&Gf1Tyw5JcgzUq^OfW;I7%~ T<%SO18Gyjk)z4*}Q$iB}eU*}u delta 640 zcmV-`0)PGB0+0(lc@bY5RnWo;;MZ+MV zBH|_Dcs^(lxaBTho{!fb|EU$cFvM5W+KAPNY>r!fdY^e;gXMp7j{~6@N%usFT@YP& z>E%AepYScb@Lba=Ojt5zBcCwS*gKofmFUpbzub2rkBlpGoqz8Do9R{jp5t`~QfhnM z8P#2!lZfw*eoN3%d$479FzxN@gxHQ)ecCsG4m}6rt6q!Iu^qJfM09)mJST{4HAQNB zuB!@xi!utVKMjtu_yd<2nCWwh(s*2)8w~z>H zT&T|kBJseD<9}g{x=R9HC6L4l0Y8CI7n;w(|Ea=zpv1y_?HYdvn2Y{-c5F$PnlL9k z;)Df__qZxD8_-aKbcx_UMYHIsnO=}B6!uH|s~w4x6x2^M2J;|dNtW3FuPDco0DS&l zxaK4SgIW9C8=lk(oUsk9X1AbDi+*aW3iRPKjU$0I;eUJ^P(@JFPHx-+yaBpirzB+6 zMDGsZz)PyutlCGo5D(@pjm&6aVPWAkz^DkMGx693(Ecl&Bxis#8KC7Xw_&bKe>MVt z6Mpb0PuoG5jFjc>+y<}+a2FJ$Qp4DW9Es_$&(Xkblz|(XqRO9E>Y$lh0=IM%D2!n#A z?F7MyI&RVr&47)ZgNm5)=y%bbe#jVs+t7W4Qze2nw0a3=(>!i5Q?3OX+E5XdCtO%q aFz^FFKq`Rv_8C_I00005*BhMG+9GE;W?m`%x^wXG7CoFI#y8j^Z2BbqOMNUW%TCtx5C6r{EaumlBg1_f{i z1#kuhn2TtKyg>L8004Ln(RSGQlAZ+lzMp8I0LM^gPylC80B2ADXHbB-h<3<}F985Z Zya58nG^>SbU=IKQ002ovPDHLkV1k{om)!sW delta 615 zcmV-t0+{{b0{;Y%BYy%$NklA|T@B(z%0%Wc`|bZji7 zMF;_!h@^Nur4v%kO{~10@4xib3V1Zs*Q~Z4-atD0d0#$9-d5rMj9V;+ER*Jef=!6r zkJj5)7kkRKvXaJH)?Z98TIP5x14fFiC&RgmO!fZl>u5}wrGLVy%-=vV(z|*eWAy-& zYFq6Y;Vg~`#7{#%DQMOlY|#ydy?q_PZHD*dm;jl&4%Aoci{9KOd0#{xAD_pN*u1Gi z+cO;sFd*|!y`d1lU^62leN0m7k4G$WS!@pK5mQ54ziz8Ca+DfO@hRu1;Br6BiE8z4MCc8-h>}fZx5eb|# zphtC7%IyQms(j_uO+eO(*@7DGD2=u(yUku66%&A+SbyaGe++s8_Pz1+K`@2t7}g~0 zSIkGrl&S(PSk;(%#=^qF!Zd{EW#&wc4=SMsz{fUv0^w}{ShTl_LGUQ@xATx|lfnSw z$5!STD?Un&p|5BDFo3)4|GgT+xswBMgeBSPw3g)`_G$wV(flPIyy5`l3j?G8)0bT9 zOm`oRZeYUM3IRF)AbkNVmqNB8z=4|pzQ%9@-gUY(tCo^%H40o2h`>z%S!0-sDI}{6 z)ukYNWiQ=-Y!RZUR6v4Zb-LD~WSF0NEG#U%@eN0>fKvJLaz+3E002ovPDHLkV1f_f BDV6{L diff --git a/tests_zemu/snapshots/s-set-keys/00012.png b/tests_zemu/snapshots/s-set-keys/00012.png index 3219ab3abe92c126448435982adbbfa3b44d5245..4352e846521d7540cac0e3d02b6b358fe98230ae 100644 GIT binary patch delta 304 zcmV-00nh%g1Iq%CB!3b~L_t(|ob8rN5`-WOM3EZre_$8Rf+>l70|No2U%8MNXdscG z6y-crC+NscRLC6RInpP*v(Mk>7{cX2KIy34_ecl0Csdm~js(%*FQCmGX8bwZ$$s}S_ zNWKQ7i)7Hwx0H^+k!Zr0I-DqmzGt>P2KzEY%k+;K|HK>fb8E@`faWYRC;K&_m~_@5 z2JOf^f9iyact9~@=AA&%5|D8JfM;Pgs7FqTY&}>IzrfCKc@O^OXa1M|=)4Q)2?8(} z1Yj@-z+e!7r74*0in-P`6aWAK000000001hwfO>##zM`yWcHwK=_vPqz-mTLzL@&`! zRA{Uv1CGXGFxK|mVWhe`8O|KSrL#XRyOH*cHl}Uf0U7C>+<*J1?pRW7bKmGHT7t|c z5Je&X8lV?R)^4}dday`z;hH+E6vMn_u{^Tx8kg4CUNW8}^Z7a4`Fwy|F4{7C?2sf~ zY#>2jH0GZ+p(-9w%#3m8P_!H*(l6jyY!fshrd*~T+=9tTCyCbc2{)$oVty}fMrpi9 zpNZw!DBGShdw+b3hy2V(aaHxG6St`W#xT@pkp0t^_OEXUZ6j4*fbs9F_-9wufIV?~ z)hfG&!tqGR}VC!CP zEM_6;)V8XwD!MmbCjbBd0000000000z*&9{PD{79{SKXe00000NkvXXu0mjfp6$mb diff --git a/tests_zemu/snapshots/s-set-keys/00013.png b/tests_zemu/snapshots/s-set-keys/00013.png index 787c898a822868f3a9a674d95cc5f79b8c429092..b7fa1b900574804d994dd9f3f12249f69dbc1a58 100644 GIT binary patch delta 314 zcmV-A0mc5_1k?hMBYy!KNkllR*J0oJm>2FwajTYngD9XEq51a(fD2OhKF z1}=0XjsGpE+Z@dB{0GDd(X#|^fwt>|p6g%+h%;uy=!eGygbB*?ejc95sErQHP+r3m zXpUM8qZhWc$?K53o+kS)ENH+S9bC+lWd&^9eUlDVT|{NY$rk=oKU7*D8(57@M@A%I zg5r)i9RDKMxqkur3{baJMn$l?V6&i!1fs7cNT}*U#lu-d>`EoOVk(i$xbEH>mvDKAlWNeMqwxf&4{7aJqRLc}K=c(TR2S528)Hfy z;1&sns0(E%n1EOz07b2e`@qJ6uQpZ1pUL*@XyqmbA%AJVu&}W3dI0Xu@6nj7l2n%0 z36hCr-QO8Kqv2J`&D3KL4l|N`34^*4f+Gh5Ik%wPTw%IGI04GeM| z%P9AhQa?nk+JA#Gk@I~(Tnj4m282EsrI%DStX~gi$rvCUevr5q<9y2bURan6Kjmd* UwaS#qg#Z8m07*qoM6N<$g7>`=a{vGU diff --git a/tests_zemu/snapshots/s-set-keys/00014.png b/tests_zemu/snapshots/s-set-keys/00014.png index f3a14ca64d340568bce255e6c2116f12bdb040eb..3cea3c790025a4ee5c733590dc6cfec559517eb7 100644 GIT binary patch delta 525 zcmV+o0`mQo1*HU#BYy$xNklYr9VTaJRh6%^U~) z?5+2&eF0RtF8fEODg6R;JN^RD+TBl>=HKVpJsJp^%P0B%Du4LGYGkPq8UHEhtudgq zclTir0K7d0P2PO~_#S?4K_bWZ%9zbR4nMK9d50zBOl27^gu zMe`|M(?wLO1eBI%($2H9oUao-i45Ldu#wfCwpf)rq32TGNLzR%pi~UVCIPu}koBqQ z!hfo{a4XO8Ie#~y9z&v9t!$kGt&lFJ&Ygz0{I)M`2fl z)8bhj0D5P!#W>grCI7N>;b9=>BJRIttvHkefGq`Omopz@GqdK3Q+v$6LL#p5k0n1V zby?AP4&eJB1dUHkF1nv;CH8|D#vt}ATi1Nc;h~>diF+(BS(3 P0000|9`LxXW@)R9yf#-v_0OHjRZ)@ z1FoG4#k!Q~RmNdm-p~DpHf>DLZen^Jo|%l*Vs$wSXol(R3<5RLY0m1dwqv{N!W)N9 z#ZmeEZXLSz0obBb*Ptq+?tp-Gx>pjgnLD_hW?o&1*7C#xr+@4KOIzY$FqfjnWVqqH z4M&G|;YOz*Zu}oXX)#D1KNu7}$FSr`m*)42%zcmpJREk%TrvCQ5P*`tJSEiJ5hRpV zu&neB1N?HFa(^Z!MRQ%`G#beSslB8`wn0{T9piNvIWlcMkNelsS)rN_@>f``9#_j+t=2^>@+Lh44fn_DvrZf>l|J`7qB@Jb4rE0rr z_KRclb`l0^NMfiCKVh}QY z8%VJ(zLp<6c<>;IsX?~sfLj-SGRo}JQ=k=c1P2aQRS*4%I|83AfBbh?9G)Btl>V3u zuuR1ANDu7+UU?pH#~QlR&}yn6*8(O3T6v2qVNgY^m*r0*`T`)!+F0R33t-x~fqoj3 z^3(xb33Xf3q$ZJ`ljMwV{p|r5R1L9!g#*c8>A`D74X~e#X+dKE#?_){sr3*B79#?B zIm6JtZho9{e@efgz`NNf+IPSPl}iZ!#}Cx~)_q&;XmwE=_J6|eapypr855*pHmK>7S_-w<;yASV8)Mm5$CK%yc<~#Ob=WT>kTDCmDR`` zt!Hhv<4jz2S7a2eI)Q%K(n9tuL8-AHIT)2WEfi+RixlEbh&kC){sQ-l@M(&;%1A4E z2BY26r_cY~>08eM%)Z9cX=O3cbCG<0-3^j62V@P+R*t*5=$Ru+;>iIPYg%$qQ`B;R zG21@=ZzUxyBT5+$#}xno00000000000DuyF06Y@Sn^hFu@c;k-07*qoM6N<$f+roF AjsO4v delta 599 zcmV-d0;v7`0`CNnBYy%mNklMpu&21RtDfQ7r8ymyt)&u?TH!46Mukrx20|1Ww48=Ytr5D zAam~%lRP|&z>VK4XxJLeF#ZeSJthO!CN{KxUW_~kGa!jEPt3kV3m_A0Pc?T02_;4z zx@Q>Rm*bZBIWQ^O%PfBmE$QjVd~{(3Y!2RhXH`%@omG^=N>pzxwj>@D6{_*W3MySv z?IdZFIDz9ITz}%c63b!hmA5HU>~OfW1)yWVu<%{iX5ia=Oz%O}#`H-1xHSmB2UeT{ z(Xz~oLY5=Bl8~M}hi{onL)E4#QHh>aX z7XA^u=>+)V7}l}XMJ!OR8d51mC9|NyC$h@FaRI=R^9ucy1f2zu)wxxCTD=#SD(qPC zFA7z;1bItE_R^*AMw+baxK*giuZ1F;YNf)%TpU{*bOJE3tE#&SRQ_HHw|3q#Y4*fZ zh~H)x^!KXj0j71q6mf0n*@~F5^k*^3Vfu?$W8}1sttDt34y&=DvPt|$1r|Jw lZ)CYkxD~Pb5DNbj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$g7NWc{{R30 delta 533 zcmV+w0_y$w0j&g(BYy$(Nklq2;JLA0zNx5w^&nVqsFEO9r6 zd)Q_Cn}=cMj44d&2)F=V8+XLfqPBkG>!9~Oy&XK;Z7CEw$uM_Sq#vZrRESFq;mZaa zRJ|Kg{&Xqof`2|Bsu-lPN2hJaazL{_VHsYfh}B4rm0uAnigc-fU0`%y*^I%aUrR*# zEGtbpg7DBm#uB~ENW2PwBOq7MN-0elKs%^#`UjV3bu@)E4bEj~wSbt`-$Z6q%NE-Q z#JB$Y5NO-d!ApCbG7EwEu)IY%6^fEtn@aH{EK#VG!RlH#!6(V!`NYY_A>l88J<9hzh?Jqb)lE!HMBoo< Xj}V=bEe=GD00000NkvXXu0mjfmv9FE diff --git a/tests_zemu/snapshots/s-set-keys/00017.png b/tests_zemu/snapshots/s-set-keys/00017.png index dd32ea4160d002342649f93d9f06842546614921..505a1d3aa875436b998a2aac2b0467a82a16e300 100644 GIT binary patch delta 398 zcmV;90dfA}0;mI!B!6#7L_t(|ob8#-62c%1gtv~q{{wr_12Y&2#DrETy5Ff~ptPGG zAO#2^g#0Vppm`p50N8G?>wNp)T&B%T^#K6a(G$v0khj$kFpirOg|B-A1bq0zXfa>>=Y@jkna2wj4c@C`1gz6cmqV~>_ z2+-sEPRI-zfqy#!bSeKR9i6pLD9g19t4raIfG-^^vuaZMY9UkWD?6;IKKe@$Me)Et z3d(2EaBaKgSJ-h7>ky^224t6)KUh5Oyr9b$%=;yYhW%Cba{*>2=2#pXidg6Uw sKqjzA*}28k6hxM1arY;LkhweoVd}IxqyM#800000Ne4wvM6N<$f`7ldssI20 delta 326 zcmV-M0lEID1K|RYB!4JLL_t(|ob8!Q4uv2LMT^n>FW7-^fb#fMKrqtkJ#j#Q$fX5r zk;rFTNiy3SJg!m^Ikj45qDAK!ynaQqilq8mA=(^bi51FM?2~c8Ss#HM3MV2WvnWvf zCbpH#VvEyW1s^BB7`u@ez1?0*JyZr`cg1psis#@g)l zKpL&HM?@xXs(Fe0nwzQ2dMcG=?sL*6jfD!Dz5z)r1)90;0M`1c&;6|8BM!4uzBt*r z+=U&+AH$ZdxxZj&M|#XUQ&iib=?G$T=5)xW6`=;R>`x!9c>wM$#=u?$XZ}(Ze_ch< zQB)QcP^MA`gg>DG0B|Q}w15u$)Ap5tmKrpF_i!BzI?=rR2|EDvp?vuhcEE7p006*1 YeiY;}N%Bp4;Q#;t07*qoM6N<$f+yXU>i_@% diff --git a/tests_zemu/snapshots/s-show_address_reject/00004.png b/tests_zemu/snapshots/s-show_address_reject/00004.png index 006c26abaac6c76b2e871b194165596c0b416694..505a1d3aa875436b998a2aac2b0467a82a16e300 100644 GIT binary patch delta 399 zcmV;A0dW5L0jL9zBYy#JNklO41~9izW)Pz&;v6V3B-g}D7xRNWuUa1 zA0Pz?A%y%Z+n{+KcL3OKuj_pK-(056O!WZ(*U=NoP>{FP5HVU(qa0WSR&~hv7#jhF z`Zn9`)iYgdWs?o$MKN3tIT^zv05!2%-B5F9|12xuGeGoXT7UY=L}3rl-HgOyu+w-0 z8NLWRMUnaEr#T`8^*NeML~=PrV-XHLKRxZ-zMt@&1B@?`e##AgoP8;%sy>OZ!vIv@ zi55q+^csLk#!s>Ld*6k38K6*~?*EZ&19b+98-VKfk!+wcM{pb3op}zd%!KM0r=s@G zkqFS^`%cIV8h?R10(2?=C>@=(PbkZ^3ad-uj({&6EVF7-`f4Fl>nl5~sXqEk5k>L9 zKMKlc(Qs|MxuX8x4di3p7lF?!;C tUqB|XNZGl?)D%RPXL0u@gpj#B0b%O2I-~!!SpWb400>D%PDHLkV1lKiy21be delta 222 zcmV<403rXV1Ni}vBYyzENklbj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$g6zI(`2YX_ diff --git a/tests_zemu/snapshots/s-show_address_reject/00005.png b/tests_zemu/snapshots/s-show_address_reject/00005.png deleted file mode 100644 index 7f2ca0d7b45d2809332a55454bce810c5f5e1c46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 486 zcmV@P)|HizO=csqovCNHt*SXK%Z9zZ0^H&Kqz>mh?*#bQ zNgNH#*OR+Gf!5%4wnvb>=Awe{$a=GA6-dE%K{(P30Gb!h%DfQc9j`GM+@}w?*86Z| zz|NpNShnLD1TkBGi^;qXX9n!}swc`)l8HVlEW(yKas-Y8W z<>My*SkP@S7K}D37a$jpMcq{~;_^Az5tUgvouYieKM(MY{g)P(pid;1s8nn=s8c$X zs=MRoozoWNSi*2oe53CXE{biiDku4#Gk_O0ZA(%+D;=c9S;k=v|11zISL*8km?RB@AP9mW2!bF8 cf*^PxUn=fJ6KPfn;{X5v07*qoM6N<$g1iym+5i9m diff --git a/tests_zemu/snapshots/s-show_address_reject/00007.png b/tests_zemu/snapshots/s-show_address_reject/00007.png deleted file mode 100644 index ef76636e22ab7e438f1ebe7450de47f08fc2d651..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^4M42G!2~2j9iA5fsWqN1jv*Cu-d?-N)uJHKn%MjG zul$bgZ%zW-vwJempZQcDK9RM^ZI0*4?Q1!WmaKRA<+WtJJMWhjjdG?83=h&bRWVop z6`64Q=;>cJKTjv_%ZN`}-oMh8KixRFG}`~TWqtC!MfVO^Ka%;-U&UN}>!hq&_WEDX z)-xP7d7Hxg?B0*vO+}otFJk|31w8$O41~9izW)Pz&;v6V3B-g}D7xRNWuUa1 zA0Pz?A%y%Z+n{+KcL3OKuj_pK-(056O!WZ(*U=NoP>{FP5HVU(qa0WSR&~hv7#jhF z`Zn9`)iYgdWs?o$MKN3tIT^zv05!2%-B5F9|12xuGeGoXT7UY=L}3rl-HgOyu+w-0 z8NLWRMUnaEr#T`8^*NeML~=PrV-XHLKRxZ-zMt@&1B@?`e##AgoP8;%sy>OZ!vIv@ zi55q+^csLk#!s>Ld*6k38K6*~?*EZ&19b+98-VKfk!+wcM{pb3op}zd%!KM0r=s@G zkqFS^`%cIV8h?R10(2?=C>@=(PbkZ^3ad-uj({&6EVF7-`f4Fl>nl5~sXqEk5k>L9 zKMKlc(Qs|MxuX8x4di3p7lF?!;C tUqB|XNZGl?)D%RPXL0u@gpj#B0b%O2I-~!!SpWb400>D%PDHLkV1lKiy21be delta 222 zcmV<403rXV1Ni}vBYyzENklbj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$g6zI(`2YX_ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00005.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00005.png deleted file mode 100644 index eabc4ec8f05e70aeda4a395be86f7e8e2bccaa37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP)VS8w29XG9lbqgoWGL-^F@dl9ddV&XvTDHm7jo0&d(0^(XwMxRB z&NQ`ko0OD~=>WY_>JJZRh{E-(T{dG&)lP_&sb=@>QgK?AEsypJa7Xl$xjf%#CBRoD z3N(;dPagV2)(4NX>_Li}i3vI*>&2p1zzx0u!x3iy;Jh$4W(7Om^FD@(@aY0$qYp<0 z>^SAYvK@~T$Zh>ACW}6t8L(q(9vMqX#>S}F{kcHTBAkn{^G}VEW`1RrvZOPuomR&W zYgyzE*n@a=^f`wI|_qrb$ZYX)zlihy)zxOJ*|ltrvy zKbT&4p}RBsx}-dRBm!ziqk-oe*;*>wM*sNT6MUtVvdQ%4$yC8N1v0`*L zGHjY+r+B~fe>Hb+Lk&Nk_HK>x3Hrbek6GfX^7@*ZX}#W`RxC20`S?z67nJ)3KR4jd z@?bp0Y?zpV+t7f+;v_r+#SKpo1VIo4K@bE%5Ck*u24Ws-?hH@n1ONa407*qoM6N<$ Eg5c8Ai2wiq diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00007.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00007.png deleted file mode 100644 index ef76636e22ab7e438f1ebe7450de47f08fc2d651..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^4M42G!2~2j9iA5fsWqN1jv*Cu-d?-N)uJHKn%MjG zul$bgZ%zW-vwJempZQcDK9RM^ZI0*4?Q1!WmaKRA<+WtJJMWhjjdG?83=h&bRWVop z6`64Q=;>cJKTjv_%ZN`}-oMh8KixRFG}`~TWqtC!MfVO^Ka%;-U&UN}>!hq&_WEDX z)-xP7d7Hxg?B0*vO+}otFJk|31w8$O41~9izW)Pz&;v6V3B-g}D7xRNWuUa1A0Pz?A%y%Z+n{+KcL3OKuj_pK-(056 zO!WZ(*U=NoP>{FP5HVU(qa0WSR&~hv7#jhF`Zn9`)iYgdWs?o$MKN3tIT^zv05!2% z-B5F9|12xuGeGoXTKdXFVGqyUjKpHF(|7|Jz6d)-k@@GRIU)u1IhssFaydm~5e_{+ zJ?-4SpYWXnj4zRX$_;*;eJQA_K8diy094pirOg|B-A1 zbq0zXfa>>=Y@jkna2wj4c@C`1gz6cmqV~>_2+-sEPRI-zfja_pDgP)PowZLW%e4xt zOW}@yFC8qiYEt@YAyexsJFKZb`b!Z-@xVU{%4gAVZM)@H*l`f+5T&&SWS5seSUm2$ zpvxD``z48pe0I-e^ABeJl-G#}jSw+<;(cF0Ca_4^xy95JM3!f9_a}sqxjX@3>a;qe S|Fu~F0000~Zy_Hc__O}@g7T!1^y^3924tD=0e|jY;Mm&}REZ$DAFM*g z{hflYaj_WK{X3|NAx!YC&!iBj}`k0&E!e9otHw?|IzFy?L70bx4Dt z1R1Yy>mGn3gMaigFo>H9fJjcCchz(aniEw)L)w=ti8R`Q!9L|nDFT>_szH$^6M{S! zi)>2mlq#@TeG1|ogy}6eFv@B2Q1%7HzN`X<1?XZI4Z768gX9FIVm%|n0@zgoUX~2) zpf}pb?$hM^|w`#Czj3d&@=;j&KHzZE`&@@VjGQRzYpI%x00000NkvXX Hu0mjfoct$- delta 595 zcmV-Z0<8Up1?&WnB!4qWL_t(|ob8(1lEWYfKuxFp{}0YX`ryVAZsMJt@jP@AR{>E` z*&G3Ko#FU|Ib7%CwNY=97UjfOBs2Dot=VpX5zWKMBNI%i)6Uj}h4DEnpEjApQ`h@f zI&JP}Q6?#Lu4J&EjDQ0J6@WCmuiHvuWaY- z4~+w$+au{!tbdZ^+tE`UGSl|}ER=S4EhZd1Ad(%(|;3Q3@S zT-m8W3)x6eG9-opfa0?H=yj>lgOc{JdX-R=AqnEBG=v~a=lf1%h&S)E7%Y5cYYYd* z9AiqVD3YKU;%wvwZ^Gj){YWwjeMQ4l+DaGYX>>Q6&3{JcFx8^b4V9on&WMPQv`Z>z zOqa6RQelhnqjq>bpHq7aFEgN2zAlY=C(H z;0Zb<46;a8>V<*xVE0vJLC-xHo2YpDhm3A9o0DKq->e+EM5x%T4Ff0{fT4GdUY|Z# zydQ)vtW3BhJ4i)9NTI(LA3wMCk~P9mfMnWuiMY<)oA?|A)To^ hAZ~h+_3s`4z!%Y+!t5pOSJ40f002ovPDHLkV1nO3Di;6% diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00002.png b/tests_zemu/snapshots/s-sign_basic_expert/00002.png index dbed7e4900453de852af88d28ff5c474b98bab07..5141a7a8f1f2babf9d0cf8b65e077ae7e631a4bc 100644 GIT binary patch delta 400 zcmV;B0dM~J1F8d%B!6*9L_t(|ob8#*7K9)OhP6}g|G+JpMQ6-V!MxJU|1CO|B#aP{ zV~x+T8@rh?9Q*CEQm>oMZntwH6ON{YJHf3mS&;#zlxdGjiZ??6ezYHVUF&ssSnP{1 zL3*B_M?D5V;`|j~;}>J}t-jr;J?@S>>M^(gFB2~0S_Q{mo`0bHN1T(w2%8&oaqUWK zK*|hWfOnYa&UrOpxlXmc2ZVg{_~=#^`|E9Zux0*&I@LLyqF97U-462)nQ$1dE?pdz z@9w-;f0aevLRoLBIqQM}*!EMBNOUPU%=pn7keZX}DSf?VD#T|+3$?&Bi#3}8Vw0Mh z?NNp)XmG3PUw;D%+CF|ajmShLGwpe5TZfI1)(&t@B%dWR`*dcpQZnKE4V%trQ(H%C z2lyF3+|O|`zC0OCk?QD0ujtO*v)j-|tJ5I>r?bc+s_?&)f5I69Yd~hUVgAwz1yY+9 uyxu0C&F}X;000000000000030#Rou3^OYI-%(Vaj00{s|MNUMnLSTXeB)#PT delta 478 zcmV<40U`dX1NZ}wB!9n2L_t(|ob8$0u7n^AMZxI*f3OeE1349Xqk3`1>>+Mp498wvcG`v3;#QoaI%!@zy7a z0g?>8f<9o?;e0O!Ea&NL^8jI&r+fEgzP}d5gO%kS3Z^ZYVl@b(xJ}m|)Zj2a9lA6+ z=k9w`f2~*f3T?UR%&V^R5^To~zr~Ha_TAGghIa8r;e_9MkN2QSD(~1XUa~OAP&r5ooo^FH;j`RAO z36K&zuI#}5<+i3XZJI5lDc@*>E>FDT$T1$+g``JPGIIyqZGS!h?#s~KO$v3K3p?=c zkIn~${l64M>WUNiD|ksc7KG86BQ&SE6M; z2)_0yCAh$0x_>T=Be@sJBlsuFV3;|DM_;A1=n_?nk(n(Mi~!f-LztX77M6F-G#Ea| z$nD?CNZET!QazrD#nqlN%i;jwTYM|;52IzDH_jXed@jQFEo)_fIRNNV5V@SOkEEu} z6IzB!6s4L_t(|ob8y=7J?uQhNmar|AD)x3rm5Gv1u`~|2tjKMD|bE z5Q$PAcM2rddmpqIM|k?(Gz12lyT0w#X$erHkP4la{qLqzwD5K@4&{^GKk7A>%?ZJ9io6tW3leuV)5eu~M_*LBR{b(xnxr3zaHDJ+(gni5VC1;1VCV+r;H z=trB>QW&|VHd^gcts!o?%78UVmRkD-vUO0JEl z6NXqKl%hwi3V)W~zQuK7I-L{1U(#!JKZ=?>U7NBQ=(UKC?_6sB5+p8X9^TrmbFw$x zZ9B)Yuiuu5be`v(8L+t-sf@lbo}XR)zt5owpkxjX7k6Gj`8QE-wXMB4HXk(aY4IqA pVDtz80000000000008LB6Lgpjd){jf_y7O^07*qoLUD!5>AmRhdbnclfED|9i zs3kh{e2@oD!!|jPo~)he@ZOU0h$mfr!zP!-Kr~bpmg1qj-pzHi`yt)-nP!Y0Z2R%^ z>wqZX?Q9&n27B4(w30sg;-2gB*A*Sbt3RQ1;WFNv zM2Y<-WpqYtID2!et2i;T#8&=s;!OBWSS%5xij>eR*!lJEk@t7uj28fYd*DKjvKi>L zh>ySaJ1>i#9{U6v1y>P<{2xVE^!JRL=S;eIC z(`ZGsbrBrva{N-ncq6P|2>vH^3#CRjDR&G#v>v`9~2RJ{4JEAWBAe$@Ie01vRY8g!TR>vdApAK+m zRa4Tz#`&n0EVO5Q=MzLkT!cFTc4#wep=R5^Li-v_%Eg&>&wqKZ`{M%I8bBrUEk&gX zr^`6|Xx|NK4cduKv{X1VOhg0(`JMeQj5d6pBJ_vcDSJ!Pf6E5LRlgyNbjOp3q5IZ7 zBJB{(-z!pHv9TBv~$)}J?P@-#5 pqjo=~3K0;&r~EoVMQr$r%6&9q!c3hBdCTu;0{TUp+y<)Soe zuh@|%q$)2S4K~IV`6N!n_r#jMsj_2DSF{8C5mejqKf_LG=~Hud=Y+w1U@+24W4z^! z&(Px}seL0gR+cvc0LI3#t||LpgO0%);O>{;OEf?k4Nyh{l+geH000000094C2e_ke UIp~DWQvd(}07*qoM6N<$f*k;1tpET3 diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00006.png b/tests_zemu/snapshots/s-sign_basic_expert/00006.png index 6e8c3a4531abad9ee832903443d3066a0f8978d6..e3b381584ff2aa42461d3d466a2b0144f20aafe1 100644 GIT binary patch delta 264 zcmV+j0r&o)1EKgP06f z9-wofd2$L)F+@@oVU0y+obz-DqZ6!%<8X$(wHqs>$?3*)B%j`23da-nKlO}ntR*ot zwO4G-<5R^yZZ#V16>Uj+=eGYuP1#hZvQ}3x1GW;BoAQ4{XMbqN=iKiX1m}TZq#w2M zmK)p9wUXraNJh{2MgVxdu6BSc#>vZQ@r@0vc&&)nPoqWfn?)g@G+fbMPvj5@66aWAK0002Mn=Sc^n)e`?4%Ywx O002ovPDHLkU;%=OWqxb` delta 392 zcmV;30eAkQ0-*ztBYy#CNklsF19R}A)+^=!=Dd*%h^y%y*bWKfVvUsV# zRJV;q)I|^#6n|MtW3{1PB)6dA>zrphRJ(QgS38fn&tC#Hz9h7u0Ct#Jv*&e21v$TC*^AtQ mCgTa1%p>*y-vAuPDlfPl7M@-fQ2+n{002ovPDHLkU;%<#JF;>B diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00007.png b/tests_zemu/snapshots/s-sign_basic_expert/00007.png index 258dd897e94e94a64c731f10a7a425b536a5ea1c..3cea3c790025a4ee5c733590dc6cfec559517eb7 100644 GIT binary patch delta 525 zcmV+o0`mQ}0;L3yBYy$xNklYr9VTaJRh6%^U~) z?5+2&eF0RtF8fEODg6R;JN^RD+TBl>=HKVpJsJp^%P0B%Du4LGYGkPq8UHEhtudgq zclTir0K7d0P2PO~_#S?4K_bWZ%9zbR4nMK9d50zBOl27^gu zMe`|M(?wLO1eBI%($2H9oUao-i45Ldu#wfCwpf)rq32TGNLzR%pi~UVCIPu}koBqQ z!hfo{a4XO8Ie#~y9z&v9t!$kGt&lFJ&Ygz0{I)M`2fl z)8bhj0D5P!#W>grCI7N>;b9=>BJRIttvHkefGq`Omopz@GqdK3Q+v$6LL#p5k0n1V zby?AP4&eJB1dUHkF1nv;CH8|D#vt}ATi1Nc;h~>diF+(BS(3 P0000Ye~#hjBpkV?~* zUS!4~nZ^)@V8b-#^;brB6)io#g65|T%*K`Lip$#A`75klOcK(`N!61POo>$dA}k2mk;8 h00000002_J6|eapypr855*pHmK>7S_-w<;yASV8)Mm5$CK%yc<~#Ob=WT>kTDCmDR`` zt!Hhv<4jz2S7a2eI)Q%K(n9tuL8-AHIT)2WEfi+RixlEbh&kC){sQ-l@M(&;%1A4E z2BY26r_cY~>08eM%)Z9cX=O3cbCG<0-3^j62V@P+R*t*5=$Ru+;>iIPYg%$qQ`B;R zG21@=ZzUxyBT5+$#}xno00000000000DuyF06Y@Sn^hFu@c;k-07*qoM6N<$g47tD AQUCw| delta 283 zcmV+$0p$Mt0<{8=BYyz=Nkl<@!q)@V$w1mm*h>AV(fyt^EI%e8o{TEKyu90b zldM@*s3QyMg9u!0C#l9z7FJh)@a0~if~BwETy;#^6S|WV(SO4%ekjWJvITuI27+uS zDXY#D_9@NtuvKK6FIp&Oc}S`?=TUVhDQnM&r;hLws?C(AouQQq06h|3MR15{PDt^M zH%lEDj+>a!)t{Iv!f}({lt)Rk*>@&afFJFqyJTYe~#hjBpkV?~* zUS!4~nZ^)@V8b-#^;brB6)io#g65|T%*K`Lip$#A`75klOcK(`N!61POo>$dA}k2mk;8 h00000002rU}UDg$0t~?RueMNun z!_~y=Z0!*HAhz}RAdL#1Gol#r<|BF&jhKC9zsJsmXVJq)1%HhT`x-1CI(EQyO*(n7 ze~Rsv%|7onWECT$|3^^&HK;@rheyvooeMy}w+0WGeL8YLKsSe!iQ@%guCc%pRTAO(KXogdudQJ(9ic%r{eR3!uk zZ)tqoi#rq{5`T0Vkr)8E3Z+GPFi|#A#61a~9DuB?8E9NAY42GLnW^gNr zw+y|?P~=Vz)(@tb_^V4Lf54RtE^=Hu0J+m60h?34S^roOBV7r9a}>H}4~ljG=Ky*_ zVJ2`5l}hYLJNOqMaT=rwioxgTrYReAoqpLObp|GM6zzZ=xgUUvxd$W(bN)c2Lv$cr f3e-+aOt|p}^i>hCWU6%r00000NkvXXu0mjfSRn-B diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00010.png b/tests_zemu/snapshots/s-sign_basic_expert/00010.png index 2818fe84cbdfbaf00a1cca4e75973219ed9b10b6..f90a44a6cfe7b5d2e84c1f6a8711b3a0c27b7bbb 100644 GIT binary patch delta 283 zcmV+$0p$MS1hoQ?BYyz=Nkl<@!q)@V$w1mm*h>AV(fyt^EI%e8o{TEKyu90b zldM@*s3QyMg9u!0C#l9z7FJh)@a0~if~BwETy;#^6S|WV(SO4%ekjWJvITuI27+uS zDXY#D_9@NtuvKK6FIp&Oc}S`?=TUVhDQnM&r;hLws?C(AouQQq06h|3MR15{PDt^M zH%lEDj+>a!)t{Iv!f}({lt)Rk*>@&afFJFqyJTA|Uk(KZ4so0fS!Pz;h- zw0N8)<#?}Yd8M=QUJw6n8eOWD!MpI~b!gM+#Zzf;UuerL_T^L~XxpV-8O%OnHG)sO z|V8b1n>b+dZ1|Q zbL$c#h}?|aHgF0)3>Tiz#fDTtI;Gcoy4m07YyKc(G(JAk|y&`xKJp z$OV@^9@HLu!vW;W9*dZ~ljY4x7y-=zby)$lp*jj76n}`so>EsB=tfRVO#D|YJ%uUZ z691rB^wU()J$aa)4ZP~EftMbr;|40&0@Eb3U_BF8(9seH0CEGYzzvA!(OGQIZb{(* zy^EZ#2Y}RMVB~QrMP82RKI%p$?jsu2)r_tO(EBZspKJE8>JWMWv9otjiVZ;$2Y_<} z?4e3bYC^?knG<_wrU}UDg$0t~?RueMNun z!_~y=Z0!*HAhz}RAdL#1Gol#r<|BF&jhKC9zsJsmXVJq)1%HhT`x-1CI(EQyO*(n7 ze~Rsv%|7onWECT$|3^^&HK;@rheyvooeMy}w+0WGeL8YLKsSe!iQ@%guCc%pRTAO(KXogdudQJ(9ic%r{eR3!uk zZ)tqoi#rq{5`T0Vkr)8E3Z+GPFi|#A#61a~9DuB?8E9NAY42GLnW^gNr zw+y|?P~=Vz)(@tb_^V4Lf54RtE^=Hu0J+m60h?34S^roOBV7r9a}>H}4~ljG=Ky*_ zVJ2`5l}hYLJNOqMaT=rwioxgTrYReAoqpLObp|GM6zzZ=xgUUvxd$W(bN)c2Lv$cr f3e-+aOt|p}^i>hCWU6%r00000NkvXXu0mjf^Hl{U delta 222 zcmV<403rYB1o;7wBYyzENklbj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$f+h%SI{*Lx diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00012.png b/tests_zemu/snapshots/s-sign_basic_expert/00012.png index 505a1d3aa875436b998a2aac2b0467a82a16e300..2818fe84cbdfbaf00a1cca4e75973219ed9b10b6 100644 GIT binary patch delta 585 zcmV-P0=E6A1K|XaBYy%YNklA|Uk(KZ4so0fS!Pz;h- zw0N8)<#?}Yd8M=QUJw6n8eOWD!MpI~b!gM+#Zzf;UuerL_T^L~XxpV-8O%OnHG)sO z|V8b1n>b+dZ1|Q zbL$c#h}?|aHgF0)3>Tiz#fDTtI;Gcoy4m07YyKc(G(JAk|y&`xKJp z$OV@^9@HLu!vW;W9*dZ~ljY4x7y-=zby)$lp*jj76n}`so>EsB=tfRVO#D|YJ%uUZ z691rB^wU()J$aa)4ZP~EftMbr;|40&0@Eb3U_BF8(9seH0CEGYzzvA!(OGQIZb{(* zy^EZ#2Y}RMVB~QrMP82RKI%p$?jsu2)r_tO(EBZspKJE8>JWMWv9otjiVZ;$2Y_<} z?4e3bYC^?knG<_wO41~9izW)Pz&;v6V3B-g}D7xRNWuUa1 zA0Pz?A%y%Z+n{+KcL3OKuj_pK-(056O!WZ(*U=NoP>{FP5HVU(qa0WSR&~hv7#jhF z`Zn9`)iYgdWs?o$MKN3tIT^zv05!2%-B5F9|12xuGeGoXT7UY=L}3rl-HgOyu+w-0 z8NLWRMUnaEr#T`8^*NeML~=PrV-XHLKRxZ-zMt@&1B@?`e##AgoP8;%sy>OZ!vIv@ zi55q+^csLk#!s>Ld*6k38K6*~?*EZ&19b+98-VKfk!+wcM{pb3op}zd%!KM0r=s@G zkqFS^`%cIV8h?R10(2?=C>@=(PbkZ^3ad-uj({&6EVF7-`f4Fl>nl5~sXqEk5k>L9 zKMKlc(Qs|MxuX8x4di3p7lF?!;C tUqB|XNZGl?)D%RPXL0u@gpj#B0b%O2I-~!!SpWb400>D%PDHLkV1k6@x~%{J diff --git a/tests_zemu/snapshots/s-set-keys/00018.png b/tests_zemu/snapshots/s-sign_basic_expert/00013.png similarity index 100% rename from tests_zemu/snapshots/s-set-keys/00018.png rename to tests_zemu/snapshots/s-sign_basic_expert/00013.png diff --git a/tests_zemu/snapshots/s-mainmenu/00013.png b/tests_zemu/snapshots/s-sign_basic_expert/00014.png similarity index 100% rename from tests_zemu/snapshots/s-mainmenu/00013.png rename to tests_zemu/snapshots/s-sign_basic_expert/00014.png diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00001.png b/tests_zemu/snapshots/s-sign_basic_normal/00001.png index 2a9a9a0773ff0f6d366e250b24de146500e13d4e..96d935e48fd1b8f9721d90d9ad3ba6eb293544a3 100644 GIT binary patch delta 621 zcmV-z0+Rjg1cn8WB!5jwL_t(|ob6i4w!~Zy_Hc__O}@g7T!1^y^3924tD=0e|jY;Mm&}REZ$DAFM*g z{hflYaj_WK{X3|NAx!YC&!iBj}`k0&E!e9otHw?|IzFy?L70bx4Dt z1R1Yy>mGn3gMaigFo>H9fJjcCchz(aniEw)L)w=ti8R`Q!9L|nDFT>_szH$^6M{S! zi)>2mlq#@TeG1|ogy}6eFv@B2Q1%7HzN`X<1?XZI4Z768gX9FIVm%|n0@zgoUX~2) zpf}pb?$hM^|w`#Czj3d&@=;j&KHzZE`&@@VjGQRzYpI%x00000NkvXX Hu0mjfoct$- delta 595 zcmV-Z0<8Up1?&WnB!4qWL_t(|ob8(1lEWYfKuxFp{}0YX`ryVAZsMJt@jP@AR{>E` z*&G3Ko#FU|Ib7%CwNY=97UjfOBs2Dot=VpX5zWKMBNI%i)6Uj}h4DEnpEjApQ`h@f zI&JP}Q6?#Lu4J&EjDQ0J6@WCmuiHvuWaY- z4~+w$+au{!tbdZ^+tE`UGSl|}ER=S4EhZd1Ad(%(|;3Q3@S zT-m8W3)x6eG9-opfa0?H=yj>lgOc{JdX-R=AqnEBG=v~a=lf1%h&S)E7%Y5cYYYd* z9AiqVD3YKU;%wvwZ^Gj){YWwjeMQ4l+DaGYX>>Q6&3{JcFx8^b4V9on&WMPQv`Z>z zOqa6RQelhnqjq>bpHq7aFEgN2zAlY=C(H z;0Zb<46;a8>V<*xVE0vJLC-xHo2YpDhm3A9o0DKq->e+EM5x%T4Ff0{fT4GdUY|Z# zydQ)vtW3BhJ4i)9NTI(LA3wMCk~P9mfMnWuiMY<)oA?|A)To^ hAZ~h+_3s`4z!%Y+!t5pOSJ40f002ovPDHLkV1nO3Di;6% diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00002.png b/tests_zemu/snapshots/s-sign_basic_normal/00002.png index dbed7e4900453de852af88d28ff5c474b98bab07..5141a7a8f1f2babf9d0cf8b65e077ae7e631a4bc 100644 GIT binary patch delta 400 zcmV;B0dM~J1F8d%B!6*9L_t(|ob8#*7K9)OhP6}g|G+JpMQ6-V!MxJU|1CO|B#aP{ zV~x+T8@rh?9Q*CEQm>oMZntwH6ON{YJHf3mS&;#zlxdGjiZ??6ezYHVUF&ssSnP{1 zL3*B_M?D5V;`|j~;}>J}t-jr;J?@S>>M^(gFB2~0S_Q{mo`0bHN1T(w2%8&oaqUWK zK*|hWfOnYa&UrOpxlXmc2ZVg{_~=#^`|E9Zux0*&I@LLyqF97U-462)nQ$1dE?pdz z@9w-;f0aevLRoLBIqQM}*!EMBNOUPU%=pn7keZX}DSf?VD#T|+3$?&Bi#3}8Vw0Mh z?NNp)XmG3PUw;D%+CF|ajmShLGwpe5TZfI1)(&t@B%dWR`*dcpQZnKE4V%trQ(H%C z2lyF3+|O|`zC0OCk?QD0ujtO*v)j-|tJ5I>r?bc+s_?&)f5I69Yd~hUVgAwz1yY+9 uyxu0C&F}X;000000000000030#Rou3^OYI-%(Vaj00{s|MNUMnLSTXeB)#PT delta 478 zcmV<40U`dX1NZ}wB!9n2L_t(|ob8$0u7n^AMZxI*f3OeE1349Xqk3`1>>+Mp498wvcG`v3;#QoaI%!@zy7a z0g?>8f<9o?;e0O!Ea&NL^8jI&r+fEgzP}d5gO%kS3Z^ZYVl@b(xJ}m|)Zj2a9lA6+ z=k9w`f2~*f3T?UR%&V^R5^To~zr~Ha_TAGghIa8r;e_9MkN2QSD(~1XUa~OAP&r5ooo^FH;j`RAO z36K&zuI#}5<+i3XZJI5lDc@*>E>FDT$T1$+g``JPGIIyqZGS!h?#s~KO$v3K3p?=c zkIn~${l64M>WUNiD|ksc7KG86BQ&SE6M; z2)_0yCAh$0x_>T=Be@sJBlsuFV3;|DM_;A1=n_?nk(n(Mi~!f-LztX77M6F-G#Ea| z$nD?CNZET!QazrD#nqlN%i;jwTYM|;52IzDH_jXed@jQFEo)_fIRNNV5V@SOkEEu} z6IzB!6s4L_t(|ob8y=7J?uQhNmar|AD)x3rm5Gv1u`~|2tjKMD|bE z5Q$PAcM2rddmpqIM|k?(Gz12lyT0w#X$erHkP4la{qLqzwD5K@4&{^GKk7A>%?ZJ9io6tW3leuV)5eu~M_*LBR{b(xnxr3zaHDJ+(gni5VC1;1VCV+r;H z=trB>QW&|VHd^gcts!o?%78UVmRkD-vUO0JEl z6NXqKl%hwi3V)W~zQuK7I-L{1U(#!JKZ=?>U7NBQ=(UKC?_6sB5+p8X9^TrmbFw$x zZ9B)Yuiuu5be`v(8L+t-sf@lbo}XR)zt5owpkxjX7k6Gj`8QE-wXMB4HXk(aY4IqA pVDtz80000000000008LB6Lgpjd){jf_y7O^07*qoLUD!5>AmRhdbnclfED|9i zs3kh{e2@oD!!|jPo~)he@ZOU0h$mfr!zP!-Kr~bpmg1qj-pzHi`yt)-nP!Y0Z2R%^ z>wqZX?Q9&n27B4(w30sg;-2gB*A*Sbt3RQ1;WFNv zM2Y<-WpqYtID2!et2i;T#8&=s;!OBWSS%5xij>eR*!lJEk@t7uj28fYd*DKjvKi>L zh>ySa{Q*U%1Xb0Bo1yYneUb3#4`+YJY_dz~=H@>s1`*!7PHh zcms*gc;Vv+HoH7hY{(Qb5iF_LTTy(qtw;kC8A;=jCqIi8Pp6D!53fuekD0cO-Bu$t zd4uW|M%=j1i?>FgwQO-*I8c&Wcs zw~a;AMGzGfS$|4nwV_@lx1i$doM$^!yLI_jJCC`~UjjA0B($Iac9>bT2%x-Zx_Cra z0s!Tp`}|pSPthl45)_$lwXM1hz;PUBJd&#jZQOhAcdFRDe@^i0=*hSRIlp7si`;@H k;|Z9|BlZB_0363EFSs2Ro?aGF0000007*qoM6N<$f}m}(Z2$lO diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00005.png b/tests_zemu/snapshots/s-sign_basic_normal/00005.png index 006c26abaac6c76b2e871b194165596c0b416694..3cea3c790025a4ee5c733590dc6cfec559517eb7 100644 GIT binary patch delta 525 zcmV+o0`mR&0i^_xBYy$xNklYr9VTaJRh6%^U~) z?5+2&eF0RtF8fEODg6R;JN^RD+TBl>=HKVpJsJp^%P0B%Du4LGYGkPq8UHEhtudgq zclTir0K7d0P2PO~_#S?4K_bWZ%9zbR4nMK9d50zBOl27^gu zMe`|M(?wLO1eBI%($2H9oUao-i45Ldu#wfCwpf)rq32TGNLzR%pi~UVCIPu}koBqQ z!hfo{a4XO8Ie#~y9z&v9t!$kGt&lFJ&Ygz0{I)M`2fl z)8bhj0D5P!#W>grCI7N>;b9=>BJRIttvHkefGq`Omopz@GqdK3Q+v$6LL#p5k0n1V zby?AP4&eJB1dUHkF1nv;CH8|D#vt}ATi1Nc;h~>diF+(BS(3 P0000bj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$g6jcl_W%F@ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00006.png b/tests_zemu/snapshots/s-sign_basic_normal/00006.png index 505a1d3aa875436b998a2aac2b0467a82a16e300..87fdb454dd7bfdc8b726a9353e17388d879fc535 100644 GIT binary patch delta 353 zcmV-n0iOP-1N;JzB!5FmL_t(|ob8#x5`-WKhPA2pf8Y-7q1Ffrsa6-A|Cd^-SyKf#EOfs;Xgc?!fn}YiAfq!maf7TDX148>gXwdp0 zgz?bqK}Csu%gA=6GXEH#Qx2aN*3c*A%PH$%#*cXs=d4D&8(9ua4_pxI4JAXB)yN#J zXKl9QOk8zWWE8DBfqvQ2LiQ{{sj(k97?n9K6lTba6yi;YIoVVG0{4sXX^ObYNGo~< zqutY|&;Q)%&sqV@zQ)sOWiilmk$isL4U#hlWDU($j=Q<&nIlW$$pIE?T5?fS)N+6^ z+dlqpB_%B*N*NEw6#xJL0000000000fD(KFJQB^DRTSOv00000NkvXXu0mjfz`vbE delta 398 zcmV;90dfBP0;mI!B!6#7L_t(|ob8#-62c%1gtv~q{{wr_12Y&2#DrETy5Ff~ptPGG zAO#2^g#0Vppm`p50N8G?>wNp)T&B%T^#K6a(G$v0khj$kFpirOg|B-A1bq0zXfa>>=Y@jkna2wj4c@C`1gz6cmqV~>_ z2+-sEPRI-zfqy#!bSeKR9i6pLD9g19t4raIfG-^^vuaZMY9UkWD?6;IKKe@$Me)Et z3d(2EaBaKgSJ-h7>ky^224t6)KUh5Oyr9b$%=;yYhW%Cba{*>2=2#pXidg6Uw sKqjzA*}28k6hxM1arY;LkhweoVd}IxqyM#800000Ne4wvM6N<$f~mQ>#Q*>R diff --git a/tests_zemu/snapshots/s-show_address_reject/00006.png b/tests_zemu/snapshots/s-sign_basic_normal/00007.png similarity index 100% rename from tests_zemu/snapshots/s-show_address_reject/00006.png rename to tests_zemu/snapshots/s-sign_basic_normal/00007.png diff --git a/tests_zemu/snapshots/s-show_address_reject/00008.png b/tests_zemu/snapshots/s-sign_basic_normal/00008.png similarity index 100% rename from tests_zemu/snapshots/s-show_address_reject/00008.png rename to tests_zemu/snapshots/s-sign_basic_normal/00008.png diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00001.png b/tests_zemu/snapshots/s-sign_large_nomination/00001.png index 070b811f0a1c9e076a83a712ac97d357129ba786..6d9371a80884c0ee93cfaeada8c42e248f4002b3 100644 GIT binary patch delta 641 zcmV-{0)G9#1)2qrB!6K^L_t(|ob6i4wu2xHjXn1NKe!9uf>Vo`fiU#dyHbV>5JD2& zAjk27?Fr#HUYFM%EKJskX?jHhoLc9-Xkwr|B0;oF;RvViA()Rz&uG^9N*|moN^zyR ze_BTxCX$019eZf#fYW9@20K_m2}#x7QbVp_l+)DVtPAMg%!h^z z7?8FkgygrKxSS8h>b(axDmj0Uix zD#1ucGh#2s|D8H^)9zspxpCvSk%I9vBu8$Mddbq{IV$tivj;^sXH{I65Uo-d=!sHw zHXkmrvH>7yVG=Y))@sq`4v+#2(?-}sMtfO0?HfrCw_@)m)8GT4xEjwZOF?ik)_QFREWB)zqL`C2bht`S7GY+fMc23 b=REuYq(f3|mUc_*00000NkvXXu0mjf*w8I9 delta 680 zcmV;Z0$2T-1;7Q6B!7oVL_t(|ob6fJmV+P+P3JiO|G|B59yn6W#toaco%^I1k^mu_ z4=S-g>G4Zru|H3*!}%kklhE|a6p%~KBW(I8l}v7Ir^aG9bA(|@lb+cu$z*@lX*zLc zxV=U%u}vby+|)}W39>~ari!dCZNgMTq(kA8KC?wSBJ#MjR)6pTVQ!81LVf0)IM{AP z>X}SN!>ar#4f-!$vLX6#LF>BKwASq@@Ym= zz~RO;!~?|S_)^%0z#geJ3-XbZ z0X4@5n}0vDU4wVTNSHhbe3?>8Qvnz$#AM0Nw#GVke8;7f2FQ(I2H_}xcLoR5+mQq4 zlvnkV%*_2=i)QQc4h?JzX2ee=*b4$JtLilRZKuD1agQn~*otT_@f&tLP4OizYdPQu zsx%=8vqqcD8PvRUhC|2zV}ROU@!J?G+Z&q2A|c$Wg#IopXkcVPL-7Y%9`$!&2%~NQ O0000Uod)L_`YY9F; zKy#wJo++=%o!9g5Gh&G5(0M(ynatL+3D9;ae0@Gug>0MLao2BAD9X^zZ@X+5hv?;~ zbJ=@GIwqS(>2%_uDFwbh8|1JNY_mPgGurp{QFPa{G%U(%oqw#&+#S^5&@+x@hk zfQ_l55X-A#rtM9_ERD0{Rh~I_ZubBaj+yY{nT`($OIzgEIp^0?MPm?0_E*U~j$QQM z!&Z6}onq}+j(>Y@h~~G=8P0-uOS1GB6S7|9bjj-)YMtJpDLx0BDE^wSX6b@^S`L#w zG1p?r+W>koXDJq&H&v!VvE)Rss S_H*C>0000L_t(|ob8z1vVt<6zJCPwSG{ z1Yp9A{b{H`x+>A#;T5&+PBKxrI@+XS;%a9D({f``E;Z^#b${hId8^$4*f|+Y$EfsI zjQ;0hlZPz0@m_-F&jDIk5ZCg8>Zo(0- zlMeuJn*d|3Yx>X@VYCIKuUK{ltc=p@x|epE0O~6nCQ`7|_I#gAb%HJWp0lr%8MXvT zBX3%8(Agv#r;4qgL(f#zWXqN}O=(#wx~jeQN8Lm_9!q~fM^a+{gFN1iW0TG&x*h8? z`ipd&SUj?X|L;c;i3g{OZM6e8Xf29@AP9mW2!bF8f*@GVA1%Uo8p84x*#H0l07*qo IM6N<$f^*2{G5`Po diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00003.png b/tests_zemu/snapshots/s-sign_large_nomination/00003.png index f4e5642c18f0574fc4b80d956f4aa63f6e1d8a4a..dc22410e3adf3a3a665663bff56424df3c629666 100644 GIT binary patch delta 638 zcmV-^0)hRZ1(yYoB!6B>L_t(|ob6i6mct+jHFMJc|KKh%3r|z!t%BN_-jz`TD2PIG zq!QON9gpOW>sdWUh)_izkE#u5a!)2G+n9J~=w=g7W%Feru8%7bWsCl06 z-kFXG^uSI>ZW>H*`)rWIMj&fj=^5?&vJ~0%EDa0u`w{mTM}K|s;(Vq=+9VzwbCX}O zOyS;1puu$pp%C#3K}&1^0t-NSB$o6ttNlYzt>n*p07u@nI3CTbx!V*lkc*tv@K#X> zoU7zX+jIy68n6~Olh8%je}kq(ot$2*CckdLsgry<`uuwHQ1*ov4rP2{6#+;e5v}s! z?x5q>s!e%Cb>eCg$*^h2^(9jx z%j`g>Pin&L0Apc5?NoWnl>?!3M7P$mhjCdbtiA=w4uY%1BZ5kvGK_TrIhxrpV1Nl} zONL8+8>A<$rZfr~Fu?efmgJ&F%&KY_48WO}D-0yt3V(uV%N@B*olTZgmlzO`stT8p zKsO=}#=o69hRyCrC;8%w|BZYZzpvyVEaE8Hnml`Do^tje=w_^n%Nl}J3W1y`b!YSL z8Vd$U%q&!fDrN61V$J~Wf}#2dxykS-$!FYt_pSD5JIT2JdzxQcFBZeXn7Yu zCPU;Ti+2rzEKEQ$p%8Wp+WGS=zM)@Q;Q@^1*_ChQFWBuaZ!>_Z--f_zq!PObZA8}& z0JSQvbTu-olINUXW}39k`goWvxEjiR1DILb>_CUA+s0cRt$BcYGx;bi{T^^_Q~O+p YUr5DPZApb8761SM07*qoM6N<$f^n5B+5i9m delta 649 zcmV;40(SkE1)&9yB!6g0L_t(|ob6fLvV$-P#54B)Ke!J)4^AzHOO}MBwsjvm8VRf+ z5}*rlJnppIC>M|W;Wk}AVtTn9t_vA!#G2Ac$<$V?R4&q$BMMa+J}3nq_i}JB^Yu0Q zmc2=&Y&Z3zkpkPVv%4EuN$cs@OdP0=HtCqy$JLFATp-H#TYqPFtC}6!aL_=bhd-Y+ zarNoo0D4o7=s(>ksV8md5H4iiwbf3tzdaioL!hbGEvdHe`t)r7at-hushBL3DTCb0D01mK@^R0klZH5fAo&i?QS4~Ko z+Xmd6bsa^~(g@As*fX&>6U+hNs^R4*D9r8dE|v2z&wJW)!1{c38mhWs#HLaEOPHa*F2fU=x6+&yJ%3IGm|OQ5P;>%h#m^;G6kc>9 zGDtEyeUI|USt|D&Uu(WCn$wL77cN|wg(XLg%%-DVUnh4||GEKB1yxLrTl_7xWTaRi zF^0S}G%F`@^hEWC&Dnr9;0v(Mw_-$(27DMSKaJ3T jR-B+6-TGhBci&Q#(UJ4tN zU<_X+cQN}9JHkp3IvPO#YYCbk1GKOpU@?U9vMNCau3BB;P-@fr`^Eei2pHUu{fF&e zGy0_pKv}d$l;2)1v6a?PgsBxY$>_}U}WA#2xW0*N7WrS~~q|L4&<<8)h;rC1P?PjE`ugPwf)b0Vw;7`A$v zyEAhF3X^H+=G!R%@&-<`O>7Mi-6^s%RR73b=CmWRTL1))+2qxa4tu=PL`6ApBX<~j zD{cM;`y1IF&!18_?ncZ!f=)AIQ2;&##vpWAKoc(hdOIe*1}ImX?u`P90hDCtN9*ds s<{tGSNs=T8}fMCmI1{}1j%`w%rte8U(+6KRgBRm(bK z0%UL~rRM!Axx8Pe&q}nUT`lQ7x1{C`(2RMF#qiM-N52^}!dY$mZ+$#7(>QyuCp}so zPkOgn!2Y+6Z}xw`M|(6qF@x;-r{2ys2Ti|z(v3#ri$~nJwtt!0PBFq)b1OxhlbHnW z$Fpo>Jy~|wO5U#pEuI5nEQG^eNW3j&#MG{(1$$yru#_ixQPT}8ig(peOPzziG$p>!MDukXZyBrGGfCrPlqhAAw+WL1 z(G%8uz2a)*s#qx*u3RsTwq`Yl;onJ%Xxv&}`)4iXe+@J?u)N12wG6cn7{=Aa^OEM_ zrDvJ{ZU?^Gdw_jrb^NQ>nz-YMQcj!gA$0<}$`W$c#xaM?S(Ef~JTc-_X%p-W0{{R3 i0000000000T$T^`tfbZfmUdDA0000e)N{v#7JnKYIKErHnr4>fYG#%6VTNsu!EPWoN4@MDQ z)I87k=$(#<^q@}11`Q?1J{#n)5lGrrdPe)cEJb!b%Y%h^dVkJ;0)a*6alAO60IW^o z(J?pqC+ZaP*V2ULV2-osr6@$aQqU3`pu~buZiywm%xeD>R4e)O{y;PDS{x7eYVI}# z3gRMX^?9o-g!WZ-r*&<@hz6}iW)ivx`v)ihG0ccl4+cbhJe@kpr=!oWH&10>%)+63 zU)V)J(nmzAe1BSJ(D7r{D2Lk$6N~h2GFL+)x)o8QcMqVE!Fm}Q6q*eHCfB2-Q>!Nd zhM-~Bmo14bvqOV(N|ROu7#joXpvqGSLA58*t(&*)VO$mtt4~3)gU~MVh@g_E3}atF z&So|Y7~qDoC1FZ^8>A=grZ@!+7+`!#OKMRg?&@k741drvZ>uo?wiQI#wzcKD23?j@ zmlzSSstSjZKsRDH#=l)UhRyCrC;8%w|Bb7@$wO(8W=U`HJgf4Qs|P_hV^>_(@Z#<} zCqpijx~uu=8Vd%1#w=8ZDrN61V)lU60Ymi>Hpu8#me05$X>bevt_qzT5JIZ4ys{jG z=aNZ_p?~GK^c4)5lWjH#vM2$|ghSXVXy@x$dP2X<|51@&(~9Tubc5}8d7A-L{Wb($ zBb9iHP$#+~0QIU`t*en)l|1kHml>C~NuL>J3+{%t?f~v=ZFZnT)ot^w4sRWxo=iRp iOYZ}&ZF-;U@CzM?T3bU9qi_HK002ovPDHLkU;%sF19R}A)+^=!=Dd*%h^y%y*bWKfVvUsV# zRJV;q)I|^#6n|MtW3{1PB)6dA>zrphRJ(QgS38fn&tC#Hz9h7u0Ct#Jv*&e21v$TC*^AtQ mCgTa1%p>*y-vAuPDlfPl7M@-fQ2+n{002ovPDHLkU;%<#II?m8 diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00006.png b/tests_zemu/snapshots/s-sign_large_nomination/00006.png index 006c26abaac6c76b2e871b194165596c0b416694..44e3b8b1172eacb15a90014b6bd679a77d6e600f 100644 GIT binary patch delta 439 zcmV;o0Z9J&0nh`GBYy#xNkl53eg6mUqGyp)OMoC6i0RD#O&5t0 z@PZ$SW3qNgr&AY=6sSI%L*SUlQo%v~d6c002ovPDHLkV1kUd*FXRO delta 222 zcmV<403rX-1Ni}vBYyzENklbj?&pa6O!qUj-KP8b*aIa}NQpVDM27(Yu87xPW-HU%N9Xm=i`GrK z`c<=vSN1M)7xn*dyAZw~D~|m>-9vo?clT7^fSMlyQ3UBWz*lp*W^o_xVX~hV_xLK! zJWxl!^aO+v9CqZO_yak9g>(j#>GisJk$>I;(Fy2tpnp;v&~L`+D(V>k00000001D# Y3NOB8u!Sr%S^xk507*qoM6N<$f)9ObApigX diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00007.png b/tests_zemu/snapshots/s-sign_large_nomination/00007.png index 505a1d3aa875436b998a2aac2b0467a82a16e300..01dbf26a81de0b34cb9bf667beef160d2cd25977 100644 GIT binary patch delta 639 zcmV-_0)YLf1D6GmBYy&3Nkl#P*-qK1IMrLw{JADg5b`2anpXq~x(z#JtfvB@o3OZ zex*SL_zFA;qD=u!lukm>>?oUJ*-ta zr8{WSo^Xi zkwrT+=u_5}c7U-lpbn}u<<5aH*dtqQ+rwxU4zq7Ta)8h-aStO%Q--lGAZIfhIvg;d zY{_t`Z-eBd-IPj39S-PMX-X|>#Hg-@!2u=rmKp=eW`9AHZA(XP)nJw9R1>2Gtf<0e zBruHFgYkctj$zt8^d&cL{5JAs{JfH*v`DjLZSm|?dCJv;Ae*r(E=!246au+WYOdzp zB^Dfz3R?WhLES-Kw(#!=KOK<3h)_6d(Sv&Yv{(@Z}@-_#k@+}BzBXzM0(@He$ z0Mx50wXS-!f;7kcWu{8nERToVg1e!mZvZ1(n+<3Xb=iEYqqYuEZzf-bsow*RWqP0U Z@CTl8Qf=qN&?W!?002ovPDHLkV1lrdFBSj* delta 399 zcmV;A0dW481*ij%BYy#JNklO41~9izW)Pz&;v6V3B-g}D7xRNWuUa1 zA0Pz?A%y%Z+n{+KcL3OKuj_pK-(056O!WZ(*U=NoP>{FP5HVU(qa0WSR&~hv7#jhF z`Zn9`)iYgdWs?o$MKN3tIT^zv05!2%-B5F9|12xuGeGoXT7UY=L}3rl-HgOyu+w-0 z8NLWRMUnaEr#T`8^*NeML~=PrV-XHLKRxZ-zMt@&1B@?`e##AgoP8;%sy>OZ!vIv@ zi55q+^csLk#!s>Ld*6k38K6*~?*EZ&19b+98-VKfk!+wcM{pb3op}zd%!KM0r=s@G zkqFS^`%cIV8h?R10(2?=C>@=(PbkZ^3ad-uj({&6EVF7-`f4Fl>nl5~sXqEk5k>L9 zKMKlc(Qs|MxuX8x4di3p7lF?!;C tUqB|XNZGl?)D%RPXL0u@gpj#B0b%O2I-~!!SpWb400>D%PDHLkV1g4Jx?}(V diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00008.png b/tests_zemu/snapshots/s-sign_large_nomination/00008.png new file mode 100644 index 0000000000000000000000000000000000000000..d99a5ea796b9c44f399d10b6f97ff4a98b3a37c2 GIT binary patch literal 476 zcmV<20VDp2P)sT%yc zg1s*C?exX<;;AgKVzXC?A`X4%{|zg&6m(LB?6`eH=#NjUAGFx7Bu$I5AQ!}{w+~4nA02Yr9VTaJRh6%^U~)?5+2&eF0RtF8fEODg6R;JN^RD+TBl> z=HKVpJsJp^%P0B%D)_=`WT_Du|0(FLF`%?}_hAnJygdd@-hBZ09)4~?BFFd2n9V;9 zKe4oVhb81qS-E8!*zw zvoq(7+hKxMG~JK8?Dj8ZBpkiel5|I5SA^5zSseg+XR*aN*a;>7vUA~KAm<|Pzh6YI*x(L>zKo%?xB5ryQ?LY}-(ogXwdp0gz?bqK}Csu%gA=6GXEH#Qx2aN*3c*A z%PH$%#*cXs=d4D&8(9ua4_pxI4JAXB)yN#JXKl9QOk8zWWE8DBfqvQ2LiQ{{sj(k9 z7?n9K6lTba6yi;YIoVVG0{4sXX^ObYNGo~x zk~0Tn4b4`LySeC@BTM4R0Tydoa#2&%a)2@0KK^edB`qUL84t%500000000000001h a5_|wW63v@c6y5Ov00003ywrQXrg#WAE}&fA-To0=7P94>zGEkE>c`jNPM?7?1)6B8R;_CDv<)lgd? z=E{Ho2ZZ$B@^yTVbD2}TQO11!1OMI3qUSsJb?n({{b8zKYsqFSSE=el=e8u8ZCvHM zC1NIHcf3_6uKIgal zKWDnQW$KIAh^i;={2X>!+}ZiXEa&UT7gTe~DWM4ft8t^O diff --git a/tests_zemu/snapshots/x-mainmenu/00008.png b/tests_zemu/snapshots/x-mainmenu/00008.png index 3922fb6c5109e00b491711b6f1755370b48b882d..86e715d1dd4f3d6bfdcc19ed0134f801855560f7 100644 GIT binary patch delta 385 zcmV-{0e=3Q0-FPnBYy#6NklFOYz30gw z#rjR57DE640000000000004KCQc5Z5E%)}eK7m?{(fSmYa#w(S`Ij=t*^nE%EiuN@ zKI*27W?1!?)d$Zg>10()5P{|zv?G+B%CWZG&48i}NXETu5Pvy8s$v|8gGhp<(YH9zvQTiy?@}p-!c^1zb1Cx6Rdp~041e`Efg65MwwsEf) z)m8ezqyXJjegTK+hs6b`B9N<)emj-@+ivrH+IzTM50znW?kPXOd;I<(^AHpO00000 f000000KkPlsm~yM8mNuA00000NkvXXu0mjfTot%I delta 256 zcmV+b0ssD+1DgVnBYyzmNkl+pMWt&Xzr`*0#0BqAn|wXJfz=A`gxtC-%khqbkI)+TuZ=K z#Pm?^zxv)koc?-zAk&%GTSs6K=VifL5o^BNptl#NE5{UEz`k`AI{1d&X$wf9fMyD4 zcJu=7%Xj@*9{yrh)vG0b``!Pa^a4cLPX_=100000kmVOx#(9?1$_EPo0000r|9k2M zBTWF6ZW{mq000000000000{Bt7;E2m{WhiK7}hIVCuYQnhFa%N-EI2{Jm!SS2((`(l z_qsvz5LtF6dopvn`eNW!m9hZm<4WhGyOQf+zlSaBvROTEhMKuO3mxx+;5WT-bR3Th z;uoP_`isTSAb-!)zNp-E>}R1fASn2+)!<&tR8xZme)Bqf7hjRyT{#)Yr8DP)oU!gn zSj_K>J;4P9$cnq({vKz4N1<-1_xn1VMa6U3v+lx&TW0egcAE98H4M1GH8a5Xp|4Jy z@0NY275@hmA|AP|4Y==jK>-%XHICj%c5&GflwZh3^eyC-(8}q|zdc9K1poj500000 e00000ZtWj<%3}e-#7YzZ0000ZXilSoN3H2hS+!WK~NLf#w>tBb1)Xv9{dJfT9gZ#=UD0Ie$N@W6f7QzXedtq&5oO zJn@R(C8$kmZ+3G1869i>qpO|)qs8=6)%~-`SFwDzZP^^Nbeli+Ivepixi8(@Fl5qS zrV};kFGdY4u?kt*2$>pO%1gYboX6fl(wFk??`QP~^7s7x+a4a_lueGaxY&xA+_?JC*(0Zu5QGd$?Q=m0@r0DL=q_{Qe>H5EK9a00000 e00000z=b}k&mepnsExS*0000)5l^`omPe){@Ouu2R*9&TUCF+qlYi zOT~H@zW#sY!jHi>|7(9 zf6jDq%hVUK5mis#`8n*exU=(%S^d?z80Ev3K`njxgN@xNA)N7sa delta 436 zcmV;l0Zab+0?q@FB!87jL_t(|obB0LvV$NDfMHLkJ7NDzaxdqBnM?)r|9k2M zBTWF6ZW{mq000000000000{Bt7;E2m{WhiK7}hIVCuYQnhFa%N-EI2{Jm!SS2((`(l z_qsvz5LtF6dopvn`eNW!m9hZm<4WhGyOQf+zlSaBvROTEhMKuO3mxx+;5WT-bR3Th z;uoP_`isTSAb-!)zNp-E>}R1fASn2+)!<&tR8xZme)Bqf7hjRyT{#)Yr8DP)oU!gn zSj_K>J;4P9$cnq({vKz4N1<-1_xn1VMa6U3v+lx&TW0egcAE98H4M1GH8a5Xp|4Jy z@0NY275@hmA|AP|4Y==jK>-%XHICj%c5&GflwZh3^eyC-(8}q|zdc9K1poj500000 e00000ZtWj<%3}e-#7YzZ0000?YGFsE>_?5GQ;gM zXJ*a1+Q}FqESiE|@1y?`$>%hm`J1;-SGd)!I_2ND?pQGe9gtyuUlT*%6eO9$e_&22 zXECQivpHvgM$AQH0#0nBN9+%ObELO7vu0UlJ|1%|HQ$Mu7>?PgEp)Xpn_Jvs2Ahw( zzAx^XfMRy_C4U`p+XR$6Ik=}pv(OFYT8Hl@d-rbbLT7H-y?D4-s6`vGPi5E%uaV*? z!rZA1TO_?>^3OPR<>qNC>|OEhTx1q-ZuiSyD8&fy$%EwsU6!Gj9oZA05BEPkqffq^ zBwd6D`g7RNxPAoqojbFHI*YLWF!{r|1ONa40000002u%P0MZjraXv3O=4HhI0000< KMNUMnLSTaFz{4~E delta 357 zcmdnR+`v3RrQY4s#WAE}&fA-gLQMud4i{fkOuqNuV{bS2v8c-pj0atQ=CdC4@|BvP z#KeFAe1)BI4OgOEmrS{|?e;s#n8oY~7XDvcpNQEuEZ-;cD|WMsSk$s(`xa~IZ1$d_ zBf4PG{xwrB*+t4dG2Il*_lx&x?HeJbK-Lb?H9PD3J5A^QO}}ZdtvO{S!~Z+^x3^xK z#`%A0it}{mRL_PT=_T`SymeAnaITy+{nIvUzdzR=ZCrS|@7^2}=P&>7gTe~DWM4fQ8}f1YqxKZ{qtOiM#9r3UZ-DP$gxC%=fg7 z($=y02{daaA|fIpA|mo6KdS?nkW!jD-`#JD@poLftt7N~tjK^c>y(4z452{Z%f6F)Jkn&ff^nfb+=i<-5ez4cfmMd%*YrVI8 zO$-UB2iWk+wtv?r#=qr**sfAtBT5e#Z~Nu%GF?wS5AnfUF4VR#lmggriza>iBx@tb z8iKOeOyYEEok@6VNXehJ_noeYh=>S2tbfqBaF=FkZ(|{#g;=q0m*)Er7h-P>?t@xW zx!xx0oxx5(>;bK611G+$iqYmbo`9Bp!|VZX+pKk(_Eh;1e26`uHwSnywW$f!8ng$XrZi delta 416 zcmV;R0bl<01G)o{B!7WPL_t(|obB1su7e;9fML#Z-h}smB;I8g%Sc0OWzJ$V|L?YGFsE>_?5GQ;gM zXJ*a1+Q}FqESiE|@1y?`$>%hm`J1;-SGd)!I_2ND?pQGe9gtyuUlT*%6eO9$e_&22 zXECQivpHvgM$AQH0#0nBN9+%ObELO7vu0UlJ|1%|HQ$Mu7>?PgEp)Xpn_Jvs2Ahw( zzAx^XfMRy_C4U`p+XR$6Ik=}pv(OFYT8Hl@d-rbbLT7H-y?D4-s6`vGPi5E%uaV*? z!rZA1TO_?>^3OPR<>qNC>|OEhTx1q-ZuiSyD8&fy$%EwsU6!Gj9oZA05BEPkqffq^ zBwd6D`g7RNxPAoqojbFHI*YLWF!{r|1ONa40000002u%P0MZjraXv3O=4HhI0000< KMNUMnLSTZY@58A8 diff --git a/tests_zemu/snapshots/x-set-keys/00001.png b/tests_zemu/snapshots/x-set-keys/00001.png index bbfd1fc1d81169f49545790cd242d17d0f4e1d25..b67f82c5794b7db6b1440faeebc3c350cda05ee3 100644 GIT binary patch delta 384 zcmV-`0e}AI0-FPnB!6N_L_t(|obB0Lj>8}fKv6oHov{BUv6uPi1R>i5_mSEv_k2_l zC6t<1>y!cj004a4ExH5$T5J8f*7{;Que7kE*4j7#TltOdz?5DS{*t}|dWEs1)~d^+ z{KS6zXpCl$qZw!sHC-Ya(T#`4y-P6wV#4-dnOl=CoK;(vWPgxi0E)F~lw)f52|i9+ zec0xV?^65#=)j%q5B~i}7v|Y^M)8O6cqEo1O!q=@RC*3!-7-H+0RR9n)eeu|by0uz z;)$bK=L-fP{-5y7xF-7REaD>9CT|KLe{2!KxjTS^yD=?j~fG@M=rvf zVMbgb)%TiqCRH!rE8ABy`jf4T?~?ZS{zhYv(2l!M9*ZC|2A3kd000000000000000 e0002MW&QxJ$vids{#Nh+0000^e?JOc-NzaH|EF7=Dl!{F*&=&y{>2ZtfQ_PO1;`C zhrf%yG-s%GjpbGh$-fkz?(lhz-?PU1wg=Y9@%G-A&|=)(+2?&>%FfKrX11+vsgaKs z2s1D3efPD%z30KJU0uC}u2)a(+Y=kL%=X@_8{M~`|7|^XV4-NZqP^7IGZH+m-FVdQ&MBb@0NcBl6951J diff --git a/tests_zemu/snapshots/x-set-keys/00002.png b/tests_zemu/snapshots/x-set-keys/00002.png index 8b2ab4d331a71a4922bc350ff2dbe2b58b5cbb84..74d31a5d78df165ae19a2824f74de6794ce75293 100644 GIT binary patch delta 620 zcmV-y0+ao~280EWBYy%*Nkl{LI@#*5JKGfa?ba9y;4fYapdFt(W?EjwKAQE2N>__L$MTl7eN@WnG;C~&j_4VWxn&#{tB5I=p zktHZ!XL$f#JgyY!^kMTSW&nB@d=&I#y{dIn!d5`J*!2mB)Ss!Omm+=_BsQkQ+EQx7 zsHFayQ0~e4w)N>u)%t}SgLw%BQ)}^V?i^F=xf=$bRfCF5`@?)Y2OPOle!`9H$Jt9stVMl@a==yo!D-;G9B zv-h3h7(~J<6v?2IIR;y)yLXElifEqZn4V?93#4PJH~41DOL;n`IFW8BqWL7p^c3cv zBCZ)m?&X*Yf`6QA=$I-u9&-#UUgZA+=$NMA0POP=>)>ZQri2he2qB~-%nd~}pX8XH zWx)+aG-VHTOa;OJlJw-7&&gMJLlMng9Me;j3oxT-#6hj;3Dz{j$aNf3!L%8N|LV~M zTgTL}O(ZFjCCm*)c!Fa(?S^`Kigob5jwvC85JCtc7vdKu)h7-e19xBm0000Lykr{fBT!mSRsd;kT0o(kMJj$_|< z(bC>fGl{){iEv14(khW&m>s>AxIjI%2p(Pm`@WlrOVcr$uYZ1>o!4gQ`}zO$0RHBn zFB)k9ISq8}`b3`p25inc5O;ODU-AlnFu^WGZxi)D@uHtrIZk8(n4oeVzj_-=UJbG% zB7_if73Q9=woPnz#f5p-97fz?I*Gp`-j+9hz<^pW2rqGmrJ9+Rv7ezXpcDN0<3j`P zZ8Y?-6w#;qJb#*kdO)11-ig^*2%(2M%Q@2yC-;+B~q_r+4B;T2@rLlZ$B^ML5tD>9&t^dra|g3J=lB2tv1bt zDXfTbHGd&&p`ccFSdN%ZiJs1ta&(RId!%*XJ24l{=rHhUc$XY4>eU;h$K) z1vbSW=k_N_9n7o%OOk80#Ljp1|By|e+K-r2eOLd*21$-!cml*To34?(429dQx2dL~ zf*z3E>B@#AN3cMQOM|^Z<4l>6JX4#ME122t{d6car@tDSPS1v>p!#VxnMX-u;@f z6cbd$mkbdA000000O5Q^c6Od85go@-K9{ev{1zFK4c_xrVlA z){&Ni%1zcEoOkZD)RvK96HmebXm@*5Xl7d0l5Ci5n&hm2dZpX5&y#<;9cf>8Ah`-+ zoezx*hIF9K8@!hJ^<{0 zWSONsFC1<0_>mYTW@%jKXS57$_G?)}dkH`dGNK!>LuoM|y zRSh*tE;0)~e=+Cr^B~Rjev#V7bFdz=@wE80(pfgaT4`ZxH8h6Yr|^~(p(%ePR@tZx zDM#+7Yp&O>xx@6-p&5+&IV)CQkKe}GQb>C}{rAhTQpDnbx+Vroh=O4NqF5kaDP_cxa-|e?cHmFR(j9I zg`Gg4l@8fRIxB!>z?fY0QCewd0G7XX{TAGb%*E#c&`QbN+n|F200000fUWrjEcieH TqU3Kc00000NkvXXu0mjf$yhgc delta 828 zcmV-C1H=501=0qPBYy)KNkl9N?rzx=N%EWJ>Pd%;HMAzRYpj-|nVvGeo!m4y+nB!%7@*-ezWNwS z9u3d?gb;EbUuh2WOx>@`$F)eLfToVJ{Y^EnBkr^!n@&m5?!5ZMmitn16Ka6M3#biv zi39S^5_PjAMt_y;fMp>mVyr*Sful`zpS_G74O6Y2m@($fF-De)98sRgEA zvz{Ufx|H^d^hew@EoU{jKL*7(q#GvB???}6F+=EdNF8)eQEIGdh+^2zRzvY92$1L_ zb7G(lCzzZXx?~5S&(>anKCERE}Ys7II5-7wfKkBW^C+e)icd$G84E})ZPc+;B8wa zE1HV@^F_TUs-a8xi0C(D1_=4Ejf$hDqS>tV4Vg5^p6p4g3*Sw86$Wca2qA(D@ z6ch-ndCZiVo9z;b6ahKEE<1(>0%1vd)OiqtX@A+0YcKQgJsg)sJ)nzNwOTU-gA~bG zB~~}JOoD&D2r}|zT=4k~ay51_)Lw~^O!mnMbZnuZVRZ_YDPN13=N`&niA%) zXp=5(!3zdZ!|)t6r!Cq=>g%j;LqRokMlurx7kbngR!O#+JJrzZ17Jn z5jE3GY1wvXrq5`!+P>+|t5tkb=<__SzX>6P5JCuPt+oHsh9L2?HeNQuZ<*sgM<8V~8=7-1C(p z*Sw9nZBhaN00000Ae^7b%FgplDILd=pYumA|2OB{e{KV{p{;UkkA>gJ$~eBGPu*VJ z%4wz4M)DKDUu0z&x)o^2MP8oSptx*1CNFq!Elk(}(&*DQOMe$Hx92Oj=#v*#kv7dZ zriGx~N%~;yxy6!)pyGUVOp-4XCP3=#L6FR(sP(Z{KZe_HEZiaCdH<_h=M z>1s(#r9(J-kkZiNc2Q2F-VW`B{Zwc*9_plt$@c(9yp}DN|A+X+2mkhYm|!#?X-&-5v=CE$9{jV`7m@ zEyYtk7>5b4#3CSZpMYXuOf0uTooqaQ|Ls4@D% zU=C)2C^VDGAY%@O!iU#K4RuNQT2tQh+mzQwcxi!-B}OUYp^c@)E?00I)X?~=?@ssa z9w}m+UidcU)ruv&c-d4-^Z+s_bQr_kkPzgx-(CFV^F}#%+!-42Dj{g8(N8-nuhw70 zQp>AF4}TNBEtOXQ00000K&iheZ%MFRY_?ZSd$3%x?KW>#OeKO|QG#MBv6dQYvH4QP zw3Cxi>`d{2+eij|Hr0{^6;p}I4ha7Dq_1M?=+jbZUoDeg)TX>sF|Etd*F(&|CpT71 g0RR91003Bsf3pZI?*PFMZ2$lO07*qoM6N<$f(Pn3XaE2J delta 829 zcmV-D1H$~C1=9wQBYy)LNkl^$%jzhg(H+cMl8|)qZ_2|Q~*PvP=huiKzg3r4KZXCx^YaL43 z3LQez3e^Qp=5Vuwd!cr;j1Rj3)LzNWJD}F8&Vd^aw?VD7H-Fymv&XeM^!0q*?ZD3* z^jT=gNNSg&<*rxc{xhH$`(UV*;eL`O{K8mSSe~)!pYBs8I5YSdI!7=-={UaiV<>rQ z_`FXDA?NXdt6ToRydSkQway;SgK2LuhhO);Z%GaazaheLe8dC z=-kFbN!rhd!GB;_dQOod&UJ0`QguZVlaKmFrpB0c$MF z0@jqQ+fjS9`FK=GnM>kKfXv{ki`a;39JqL@1HfQztMzAI(86j8vKBjVZZDDLIh-7a zkfvw-1O{ihUyibzPDEUQL< zh6+lOM6|{!$rF##mjv}lU_35Kx`LYJq+8{3=bLa^Wdz;b_cC`gwd-rX`r0!AATNQW z6jvEr8-G>9iEA=$u2a2L^O!0(f%~;cP5^egh*TKY>@0GhBhC(|CKGq)-~p+UnShgY z&9YTxEU_raA%X(S9QV8s0(oWdT(uZeiszR<9oO3gck{M?Q+*Th zayC2u4u}Y%YGFhp#Pa0Iu?e!@lt1$JBa$j1gb+dqAy3UWo9-iz`KdfB00000NkvXX Hu0mjf9`2HO diff --git a/tests_zemu/snapshots/x-set-keys/00005.png b/tests_zemu/snapshots/x-set-keys/00005.png index 0716f8315645deac9fbdc13637e7926250362a82..9381536e63c48fe4cdce4a225b7758379a98214c 100644 GIT binary patch delta 652 zcmV;70(1TJ2BQU#BYy&FNkl8Md%j*7 zf)SPIO_~w_000000Pg&FHg=w8O6fR`{5$_?6~BsBwn&Zn9?CnRL6-9C)>0GO><=wf zyT=##h35RZwNyeUX4&UFH?u=?&gurwGr1B1Rsfg%JQ;Hl_J`$`9s)kxo5Lc$#cSufC1pTdK7SOT-B;5mrma^oR}3*F7y7>lhmJP{L-zuTzl6` z2;K!%8`EKJDSc>Khu8LRfU~@psamgoFf58ABzOfFVmN0p{Zn$Ei2wlbLdI%nQuD@)Zu$$zzpY<8QcLSwDBbC_&u3DOS3*2gr$R15vEEI=b-Z$TKWZKDw@1^6oVHs&F9rROzKAU zya}vDF>l1wSY^uO)r|@D091Fwy&asjNa9d*8@}0XXn(&&+ujWZ8`_HlY?6_EHyWu% z_MO2PM1m?5$soxXgQd{)O4ZO0Lpg9G(bOu=m0j-~Zi1-9$4WmiQ8nZi%8k@eAy(5W zTnGIil_IJmT(x*N6-}*tbbX(rzf|`XP2I#-4$%rQk*jtTO%3C4?Dq_iuuJxnPL9^e zfp-&4t$*V9Z9@S70000U#KeEfpDy1}K3IIcL{ma2Tk4!|r+g%q9mQ7;(Mj0hKzLi? zPr_XGISDY4m8kfJ@+IP{h<*VvFCCJ$_7z_#gB4I!K%ZLlD)DvvdHVG>9?zA`C_m1P m6+53Hz5)OM0000G#y@7cEe=&!BRT*8002ovP6b4+LSTYlZZeht delta 862 zcmV-k1EKt*1@s1xBYy)sNklZT4*0upyK3x5P>SiUc7c`S)iU#a)fxIjbe z51K^@FAop~SvF8JQvKrT6YiNhHe}Z8Q)(z=&LmASd%a*{*pz;IrKD@bE=xfv8i) znGHTg;wS#GX6Z!8xCF!^rjF|; zS)oAbW^XGq52<}us3GAUsMaa<9?q*cO+ru)O5+32^VdQ?Cmg z-v4pBmuHZUz-60+30!)mxBfJ4Z8cI21>Lwcm*KTDGJUz4+SFb10*C8F;kFIam@JBM zu2%=!_dd`XZC|NN%r05pNy}s3qlVt3N?y?#pHcI#vvLf@n=v}ixpv%l0P`t4eF=k- ol3rUnVS~Pe5JCtcg!o4M1&ivQFXDRoC;$Ke07*qoM6N<$f`kd5BLDyZ diff --git a/tests_zemu/snapshots/x-set-keys/00006.png b/tests_zemu/snapshots/x-set-keys/00006.png index edf7b929ac8ded31b8988139280f61337edaf789..a6b23c47d71b5d1795dadbc341765517de1ac7d6 100644 GIT binary patch delta 602 zcmV-g0;T=i2J!@uBYy%pNklUI4ys{O9N5@xGp zDfbfFH4ZPYyaLEa}?57cmsl+4!QIUdTDq%elBg2Ldis_BpPyhe`0D#XzQ$rWFX#6f%Xl*mv zeY^6XhEo07QSE`Jue) o0G&qf30Sa90RR910KjYU2Sp+HqC(EIuGv;qIt zpm&xyk<2E|I=eoR=br)1*$3iV?d~5E!XHe0M+}Z^?;-5%ztZsDk34(M!${cH6TTtojf_Yr1-W7V)GS==7fHTdOuBP`l!!>vkozmFgMU`bNfyA%3~TwGJ~2EAr7)=3xpz{XfEVf=H4= zH(g>tV2Rh^sM4wD8+*Vc&x8@z%q%jfn=Ut?cUkQ>h-y-2WgI+w^^pg!7HK$PeG6c+&0I9qn~xA(I$e!a8Y$U-NhT5rme z|30eVR^9X_A$GaV`3srahSkSC_+m>8ddJ&GuN7_~!rI;lA%qY@2wBNr68U0XepMCi P00000NkvXXu0mjfKm(e> diff --git a/tests_zemu/snapshots/x-set-keys/00007.png b/tests_zemu/snapshots/x-set-keys/00007.png index 2660b83e667a309527dd43c12a17aca1973bd2df..19edca8a33f2dcd5bfdf3da4e13a7f28c0d04e02 100644 GIT binary patch delta 408 zcmaFDwvl;)ay?^(r;B4q#hka-11B{r2)G6sO`W^pzv|BEKNqZ8&F*s1QBLuD%|yPY zmuek~3_x&rubbbt+-MHPV;Q->Z)DflN9A(u=6(HOcWSfETicvvv9+7y>(=znfAlT4 z^6dtx46cB*zoXCJno*Wm^zz## z*-x2GOe){FYZre^H~;oU^lP!Kc)o!nBj2~w;MZZdx7tmACjUVE*~d%SH|z6!Z251B zO-W(De0lHD?l6(Sne6ke z{idhsP5B-vjg8!zA7#RJO}n>}ui&&x)Xh{AD>JV>oZW#8hFl76j7KyM97(f2uvUsO}>I`{Aw7!)G_`s_Y+h(9=UWrC}2HZ{an^LB{Ts5ruw_$ delta 846 zcmV-U1F`(E1LOvfBYy)cNklVd9 zp=Jr2)lG&mlZe!5T;Qb}A#a@tR;SI}JOgU2<`|^uNDXSO{eQ&j=h^YM>3To^?hfE* z4Ekh=70GN;thMVCx&IqboOvML>U2M(gg=;gj~Fc3-bdJLlCE+b$OJG!(|P>rZ76v( z-0u@Y$ou#M+8qnAI9rzN&?Id7)m%3eJN*fdX%i%#clf=Er^dveM{N_>dmD4yV=5WN z$AXEN(qT*RY(HCl;Umld7pNprExmuW%g0)kA7@;c?` zeuGw!`b=qw3GAmQ(5Y5!j#r9th(ZZkf;Pf_gGjghOuljeCVsY9K+oJQFSH~Dr+a3@@a?j%Vv$Kb8#^g?QAd%aY1{DF&(K`2Arn(=sTJzw}~V`9&03N3MLP^ad! zm=GNio3y#7o2I@%`ysQq$%2z`s#7AOqgD`8ylxTQv^YseW?SjbYq1DA@uP-`i!rWZ zu!*SUxPP>RR(;#JKX)SZei$~lXTwajrB5((w zpN2(!hxg|wh-V4-h1B551nvODSBtN>oa49ZrZY=WytOh#M^Pr)W_r7(yGnIg{dP#o z^_~Qg{F-thgb+dqSw*6Tf}1n^@?|WcwDIeq_7YXfu{xCY z>1ja|icQ+N_5wzW=L8IL_#kE`{rW+pVKS$7jU4E}&Oz^<3p8#VQ{FQ}5l!^NpwHqI zi}%p98SN)96HS5)#1D0}CdmvK(wiD^JM+r*P^ACml{l@qA<>o%R}+!1R(Y+aE7wDX zFGsI)B(Oa^;$Ib&i#wkOimtcTW@{gl1z#~6!qV2{`RQ-9BcG0$n9U>_wYz%D&x z-WYuH!JfTsbkN71pa8w6jhSAz-l=t6njMhu^yAexa{kQD>x%3M+7%bmmuE}fr>IK! zyC<6G&%x}y$iFuJR+#Pl(Ltt&cfdlcmMzQwm;GV{06f*FFp>8oqnck8(0H>^yU#WB zq9}kE1rVbEVt*9Cnf!h2?E-g$$croK$r~$XbdyZ>%`{R?_Ki^kB~BqF-or|B>2-C1 zyG>+N`ZF2}8#O)&i%|eE3Lr)S#3+Dc-Y#(WhyVZpV4Alpo&U&6X=oaQjS+kj7NY=S s6hMpuh*5w`@pj4c9{~UW06h8u^Ex2nxE{wZ00000Ne4wvM6N<$f?NN)XaE2J delta 856 zcmV-e1E>6_1MUWpBYy)mNklX@$eIJs?PV6 z5-?!Ez?`V12qAW*H2)qm^kdJe1J&;Pd@@G}N= z6fzMhEK;J_RfFGt4)5;)rLhjoTkp^hnZmyqd`1KzyR`|oPL^qu(?BMW4jT63pFW0) zk4EQxA%u92f0O0!09_x_uS9$gGI{Dif8VpZESrmh&*^LQc9=@TJbW{rqDx`~dAii0 zI!~|giT8H0Qh%};fJBP$qm9QO8|f;=b4|K|!_q)s_-5R~Ew+ya;9gC&QIocUr4BJBk0xKo!kUg~O1 zYF^>;9l&KtnT+oUvjRX$S5FPp3TUOAbDv;t;DjHohAF1h!srx&2B4*Y_O_so4}}=5 zRZ+v~?JzxRmBO)Tm>vJBV86sTT+#le+#CQedHOAdlpz7kHZ}Zprpd$fC`?SFP^;Hd io3Ic<2qA(0)hjOB!5XsL_t(|obA|M62c%1Mp1O!N%p^_?8OI0hT*T&QV4p_lUA(w z#YT#A0002MbdS{&C{We-sfdg^;q_Au_gp=Js!?J2^hLyA`p&u6>Iw8xRS^kky2|f5 zIT)VCZ#2d36_ATtQ?U~H!H_stz-h@pftMuS9_%lgJLWc!-G2hu&u)mFT2PSJrr2S& zDB+d`aP>x?9|QmZfI*9QL)%Nn#%@nI(%$KeZ-(=c@%{5ZE?bj5oKquvb|X}^wnfqT zxf7VX5z~+B=h@;%ZEG*+yVUYNRy$8|q<^rgTDA&Ml%$zo9AO9IFvMhJ@y}o~>jg++ z?TO646gPUyyE!L5iF0000000000000000002E%^OP)=wDQg+z$W%002ovPDHLk FV1i9^s)Yam delta 356 zcmV-q0h|7U1OEb$B!5OpL_t(|obB0L62c%1g<*8u3Hx6Xd+|YsVMw^NW1D3Bzo*&@ z)%U&I@$dImKNne=a?L{0iP zqYo@mg)A*XrVlPfyZ`_I000000000000000z-8XMxkIo+-lbyz0000FnjSDnQ+GwQ8GrYix@TP{a9{vpN>k0f zWNL#sgC_%Qq8{#>crw83%5By+wfut%12k8z9KP#vDoH8j*TJ4i43R5q_U?ZFXK>&F z9IvcgEPn|LD--|#fF@k-EPcp-77guhA?A{C0(th>LMHhY+&qR}qwxYC254$u_@2Wx zF^CTXNT$YJ7ARz z?H{9|YH0s3uz@CsLYiP7)}&VN+}Y6LD|Yj=Wl>TzuWJg;g*xL$Lha0a7kU8aZgorK zLz(jT_x%gqnR86M3GY}^_l?Q&%-{bW&~$&{d}rvzfq%UD?D=&&Gv|200L3sA1m&@X zkScq0-T(4~!^xR*>>8ju-6Hwe~0#aRsbuLIiS`dNbTjzo-Cm;toBSQa8_<{ta5fPg7 z4RApM(mjF*94omX?+M6YNrZEM(6Ez$T;>}htn2|^5|AXn1rY!M00000FvLHQq6JaO SleWnK0000lT3dP zDGwGx282!9X-xO@H@|?#XmluG}*KS{Zi! z-W|ZF^OT!#&$exLjdBY?b=PJnw+?Syi+&a58|n3rp<0535JHH@f@Mn}how&xz@}W6 zk>^|y)Cv-533>L=la;F`rrsHG5!j@IR~U8N9DgwDJgu8-#G>s?f0o%F^+DjB&U-5q zX>=QTZ*VVqEof$hAYmx1)hf`sE`3^)`A`zI7^CPW+FL9 zR!${v3LkIc^(A1u=9P?72Ee_@XuTR{S^u*af?C{7pkg`N%Xp9&XBYIdD?Wj70MZMv zsw9}yuJj0OB5HHf-jm5__ln?6XJ5Tlowj?kzhT+r>AE(Po zEvPVe$bZ{OP2nN)sm5@7D7#uY0JD9xr1w(|6@zuwsZdE*1GlN6tLFZXmO>jd0IoC$ z6vP%xy;Md83LSxA%qY@h&t|uyDy1$TuW(^RY3OjEFSrbAM-UC){5r^Cjr)XP|uD0sP7#^4}Xw z3H>h7HggSp2Dp~)is72M21Ck6!7#4)t4o_JL}H;b;6=P?!rx#W`G@o~zUG{D5+&1d z=_wz8+1_tN@(xS(?3FD1nv+>Bq8YG6_)7+$(EAKOUBX-#GnE1FgY?Co6*Ykj$v4N8 uSSegx6DYD%0ocOmYf&MD5JCtcp2&aZkdfU4Kn=100000dZ_ diff --git a/tests_zemu/snapshots/x-set-keys/00011.png b/tests_zemu/snapshots/x-set-keys/00011.png index f52123561361b5da6b146a8d2efb916fa731eaf4..aa6b3f9fbdf4a5406f4e8ef88525afdc9cbdaaa9 100644 GIT binary patch delta 363 zcmV-x0hIpU289EVBYy!*NklUT007`}KaTetiJFs52(d<4S z-+h%|$9t>Pf_*VcwfEC8Ld;5kct60HI&r7oRKwtoe}WAXP=5`lNn}M$(yGj@vQq+V zGga*Sx>xO#fSIxtebgaw%0F$90JUtzyIWoA^x}wBPzsikK`G^ApA@-sn7Y5zWTS(0d5C9bKu1C!!_2pQxNY z&xs&t0@_JW6J%S*H5uwjSxi9_Fll(87(Wes1A+-sDdkVwC|cBkb{t28CyDc*H`bkG zX8$tER5SY*BL|*%3wh!@?1||G0000000000000000002~%@gBO5oka?oyhiy888W0QYiu?U!>F;TCm+s2ZK@?VO|9i#8LU-(c@SdLiAv4gK&bh!8>u zITuI`m3m94z(~n6x5HEYw11{!w&FovHfKrFYF?Jb%H><|($kNSA4o=Di5e}XB|eDB zHgr0U_0&nz9e=EcDZ19eSNCRy;Yt;#8JN z5#3l*t8&zd<3|-6Q4yE8er8>l_N)jdB8%o6aFWLt6=1oV6+h)w^E{{C|a*mCV}ThEmn6{mrlqo`kc| zlLVE_HnAdI#1hG&`dmMa3xwfJV-kmwk$3T?fF-%M6b=+YbV?NbdE z3GBqHiABuaC(ECcp?VD)59AaUn;z<tts^%MoTrdT1i)OB;-wmRbBC65iur#;r3<(C-ai|*Vka)@am{)D% ze?d{QmQ7iFvDZ@7o0>)%tMO4@hJ@VvL@pQ>PX*JGs`U)Y05JCtc|M&)lM^dh4 S4j;k*0000uF4AvBozK8Thq zY|EQl=Mr;8{X@?_?wQNv%lb!0KmvOOmz2)xce>Zxszx!@6tIg-va!D88U+Rn5 zyh;>R*B$mc^1Jki@k1-6YsM?ndam@BnVS`F?0s*(-n^`c@2Ss@`178Jbj6K~ij|I|L!UEucr(SzJy5&O=zU6x<5KlktXPs|8E+r8v_*1Pd7 S^YeoSAVE)8KbLh*2~7aNNSj*# delta 485 zcmV8}fMKhz>N%p@a_A(!p5VDO;QUW14=Zl&I zyT&|vyKMjf0002P`5EsrrIg$IzIPc-jFVFOSh6qk0o|Kld@|((lOWu>tT3jOw573k0CQGAZGUUNg1lTr!|WZ;oC#pZ z$o$R@;O*Sy5H2w>kT6>e}CfLQDM~ulF62`H*AC-!&+;XPRoV}yB3@2y+vX5vs5Ek0a`>f4};pf z{sWElI%C?`nd!X@<`08HQ65wb6zkLcA=RBNoEc%>q{kv#qZ$PLB!oC*kt$>FW`+5`bFczDDy!q62As7c|00000000000000000000 bz8}f1YqxKZ{qtOiM#9r3UZ-DP$gxC%=fg7 z($=y02{daaA|fIpA|mo6KdS?nkW!jD-`#JD@poLftt7N~tjK^c>y(4z452{Z%f6F)Jkn&ff^nfb+=i<-5ez4cfmMd%*YrVI8 zO$-UB2iWk+wtv?r#=qr**sfAtBT5e#Z~Nu%GF?wS5AnfUF4VR#lmggriza>iBx@tb z8iKOeOyYEEok@6VNXehJ_noeYh=>S2tbfqBaF=FkZ(|{#g;=q0m*)Er7h-P>?t@xW zx!xx0oxx5(>;bK611G+$iqYmbo`9Bp!|VZX+pKk(_Eh;1e26`uHwSnywW$f!8ng$cap4 delta 333 zcmV-T0kZz}1Ly*fB!4eSL_t(|obB0B4#FS|fMGP=g!>mj>@X))#P9xdUWk9NiP{6Cjm-cQh}(tuNr| zNPsaCU~H*1psd4Q7J#KV-JUW986yDz@LXM|q4LRoSIz}_8h<0VfI4y<@2up{Bln+5 zl^SK$dfS&$+68r_Ra@&Vj|JVF0|UDtM<-m4^d_L%`#QrhMmZv$kg(ij-Pq3N_Z~&$ zpOH1T=KbaAY4*y0a|2V59NjWl{n)C*KW>gc*5CZGC*f)iaHnej>YFZXJDlpiNXAHW#bfhA@kORU3|=w1K-0000000000 f000000N`i74DVUZs5}@w00000NkvXXu0mjfp3Rp2 diff --git a/tests_zemu/snapshots/x-show_address/00001.png b/tests_zemu/snapshots/x-show_address/00001.png index dea87ae346b2e5ccba70ed2389c0d36175060e59..c1fcf03d7608cd31a4ceec784743576fc9f4b950 100644 GIT binary patch delta 863 zcmV-l1EBoe2KEM!B!4|gL_t(|ob8-la)lrag=wcdasNwlFMV)^p~=Y~px|x3r(T5+ zAp|%&EhR~kBuSDaN&YA2d7kI#zonFa9p9@RD77m;rcXostad;Ijt86#$8lWOkK-U^ z{8v`7cm|LTC9{Ea4ZKK<)H1N6NnL*BdA67Vq_do{-)EuiaerwU<#6_mI)E#I~>boUvy^)t|= zd~31oQ*pL+RZk2?xmU1lpy-Z$)EK-DZx%}K!06;0gIfuAufB-Glf6eLAQret;PF+e z=&Y`o_1hVb*YH8iqi8x06TF!J6rvw+2K(hnt->CFj>A;w9P0u4pdWUmK<1yNwA2r| zU~uq~(0~3J(LwD2km9=jygOb(bIY8a&N2}Fd7-{yn!W4GxJ?8#CyI;{GSboXc5?Ix zWEU`fYAOp)cQWW1fRLiuVc!W1Tjj3bPPL}zeW}Xz)v3NssN6dP$TPHmw_dgvbt6&r z5n6D*VpRNxONhsleF>Ns=Us_yu3K$urMV+qMN%p@a_tGEfaV)?Ks7c6c&Q~W< zLKHFFm+DfIBuSDaNs{E3Q)_iy0`1?z*V7LCr`CEL#|Mn5i@#4hpkNIAcIG$^?_u)8 zIWGO+ihoa>Boh{Dkwr;CXZ|UrY{^2kRy^o&<{(fC+BhgAw|}(E)8@E8e3mFHpp^m|d zdMk?LVoMxDlYhzw$tUJ+hLpcrgncSbSbtY>Vo=(>g0O*t9s8&`cpcU( zlw5%_$T;vQbSiHnuJMJFH@xJY2}b=1+=9hkM-S&vtDA!boDjl~3SX0JkUfwMR+ zcWM>-1WXiDt~%C&=mRcxMuE(~cIoNA&f~$sTZ;CpM+em>U=-Kw@alMRtu1wR8rz8A z=N0u8)qm_&U&aLy)QkWb$7N*V*5Tyn706q__N56np6O&TGXX9|bHct6F>JwAyPakY z=lxNa^9xt}n$Wm*1(0Xx|L(o)Phulp^-;87{D~3xFK!_gPvYWG4WGbO+^Cm&qU-_W z&7p)3rCm;j_&og;ko>8(3?4v9k|bqi55Q^($bW#AjzIP(?0sLoU4J-w_f?%2oy1)% z?0gIA6`OlHdhPdzWR6uI#0Fjgn6qI5z`b2DvPC)A5|u?-H}gJ0RwqE!^rvG4L?Y1| zMe%2DF*OUS2E2=<3E1e3D(oy87tKz1HM0E79^n1)VT8ArUFvG>x41Eil9l*a{XO7a zx<0=PdswUt!ZTVBc%@s(X&a+~{Irm|f}6Lj%Rv9E<9Cu1kR(ZxBoFZo1ZBP4m^{;) P00000NkvXXu0mjffFqm% diff --git a/tests_zemu/snapshots/x-show_address_reject/00001.png b/tests_zemu/snapshots/x-show_address_reject/00001.png index dea87ae346b2e5ccba70ed2389c0d36175060e59..c1fcf03d7608cd31a4ceec784743576fc9f4b950 100644 GIT binary patch delta 863 zcmV-l1EBoe2KEM!B!4|gL_t(|ob8-la)lrag=wcdasNwlFMV)^p~=Y~px|x3r(T5+ zAp|%&EhR~kBuSDaN&YA2d7kI#zonFa9p9@RD77m;rcXostad;Ijt86#$8lWOkK-U^ z{8v`7cm|LTC9{Ea4ZKK<)H1N6NnL*BdA67Vq_do{-)EuiaerwU<#6_mI)E#I~>boUvy^)t|= zd~31oQ*pL+RZk2?xmU1lpy-Z$)EK-DZx%}K!06;0gIfuAufB-Glf6eLAQret;PF+e z=&Y`o_1hVb*YH8iqi8x06TF!J6rvw+2K(hnt->CFj>A;w9P0u4pdWUmK<1yNwA2r| zU~uq~(0~3J(LwD2km9=jygOb(bIY8a&N2}Fd7-{yn!W4GxJ?8#CyI;{GSboXc5?Ix zWEU`fYAOp)cQWW1fRLiuVc!W1Tjj3bPPL}zeW}Xz)v3NssN6dP$TPHmw_dgvbt6&r z5n6D*VpRNxONhsleF>Ns=Us_yu3K$urMV+qMN%p@a_tGEfaV)?Ks7c6c&Q~W< zLKHFFm+DfIBuSDaNs{E3Q)_iy0`1?z*V7LCr`CEL#|Mn5i@#4hpkNIAcIG$^?_u)8 zIWGO+ihoa>Boh{Dkwr;CXZ|UrY{^2kRy^o&<{(fC+BhgAw|}(E)8@E8e3mFHpp^m|d zdMk?LVoMxDlYhzw$tUJ+hLpcrgncSbSbtY>Vo=(>g0O*t9s8&`cpcU( zlw5%_$T;vQbSiHnuJMJFH@xJY2}b=1+=9hkM-S&vtDA!boDjl~3SX0JkUfwMR+ zcWM>-1WXiDt~%C&=mRcxMuE(~cIoNA&f~$sTZ;CpM+em>U=-Kw@alMRtu1wR8rz8A z=N0u8)qm_&U&aLy)QkWb$7N*V*5Tyn706q__N56np6O&TGXX9|bHct6F>JwAyPakY z=lxNa^9xt}n$Wm*1(0Xx|L(o)Phulp^-;87{D~3xFK!_gPvYWG4WGbO+^Cm&qU-_W z&7p)3rCm;j_&og;ko>8(3?4v9k|bqi55Q^($bW#AjzIP(?0sLoU4J-w_f?%2oy1)% z?0gIA6`OlHdhPdzWR6uI#0Fjgn6qI5z`b2DvPC)A5|u?-H}gJ0RwqE!^rvG4L?Y1| zMe%2DF*OUS2E2=<3E1e3D(oy87tKz1HM0E79^n1)VT8ArUFvG>x41Eil9l*a{XO7a zx<0=PdswUt!ZTVBc%@s(X&a+~{Irm|f}6Lj%Rv9E<9Cu1kR(ZxBoFZo1ZBP4m^{;) P00000NkvXXu0mjffFqm% diff --git a/tests_zemu/snapshots/x-show_address_reject/00004.png b/tests_zemu/snapshots/x-show_address_reject/00004.png index 1e4be69934787c368c2b5ed677cc7f5a2470be3b..81ae2b72a503d4bf369bbc7fa6d1c7fc213c2cfb 100644 GIT binary patch delta 475 zcmV<10VMw80`&usB!9d~L_t(|obB6Pj>8}f1YqxKZ{qtOiM#9r3UZ-DP$gxC%=fg7 z($=y02{daaA|fIpA|mo6KdS?nkW!jD-`#JD@poLftt7N~tjK^c>y(4z452{Z%f6F)Jkn&ff^nfb+=i<-5ez4cfmMd%*YrVI8 zO$-UB2iWk+wtv?r#=qr**sfAtBT5e#Z~Nu%GF?wS5AnfUF4VR#lmggriza>iBx@tb z8iKOeOyYEEok@6VNXehJ_noeYh=>S2tbfqBaF=FkZ(|{#g;=q0m*)Er7h-P>?t@xW zx!xx0oxx5(>;bK611G+$iqYmbo`9Bp!|VZX+pKk(_Eh;1e26`uHwSnywW$f!8ng$b?K~ delta 328 zcmey${FrHiO1+k+i(^Q|oVPcl`I-y_S|48AA^dIsl6Obj)r2o`cZm17|9|g!kzw9S zW?exB1gOwhIwj~zdf|c4TBi3;L~FlVv!3`eJ@w+elZt7qGfE{ce>uF4AvBozK8Thq zY|EQl=Mr;8{X@?_?wQNv%lb!0KmvOOmz2)xce>Zxszx!@6tIg-va!D88U+Rn5 zyh;>R*B$mc^1Jki@k1-6YsM?ndam@BnVS`F?0s*(-n^`c@2Ss@`178Jbj6K~ij|I|L!UEucr(SzJy5&O=zU6x<5KlktXPs|8E+r8v_*1Pd7 S^YeoSAVE)8KbLh*2~7aAc$-lG diff --git a/tests_zemu/snapshots/x-show_address_reject/00005.png b/tests_zemu/snapshots/x-show_address_reject/00005.png deleted file mode 100644 index dea87ae346b2e5ccba70ed2389c0d36175060e59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 860 zcmV-i1Ec(jP)2WN;3#duRYtC0EQ9=|k+?VQ7k|arzBuSFwms4wXT>|aj z!q?Ld{HNA>9LEQYsf)i)JD^|;{C4Iz4)0;|!#OVf;EI1woFo$#YLP`rL1+FcrEJMU zwN^anapoXU3fed*B)7E8)8@E8e3mFHpp^m|ddMk?LVoMxDlgbClC-_k8;A%k7 z!NFUK_Nzw+)hA#S*X{7?cyX;Qb#)rsh~VcH^%d3ZRbR#h5!8$T8OLR0;@08h=oQFY z!1kpHHlFEZFf#!zMRUTw5ixARRlA*L4d?w)m-7o({F>0Xb_I}U=>P7$>`!7NUiDG5 zVEl;@_%CiD7Ej{hPz|5JRotkTdZO$Bn= z3CMt!jzIP(?0sLoU4J-w_f?%2oy1)%?0gIA6`OlHdhPdzWR6uI#0Fjgn6qI5z`b2D zvPC)A5|u?-H}gJ0RwqE!^rvG4L?Y1|Me%2DF*OUS2E2=<3E1e3D(oy87tKz1HM0E7 z9^n1)VT8ArUFvG>x41Eil9l*a{XO7ay1xs1SgZ`fGg=UMrCZ5q8>4~zw2-=jo42gX mK>w`ccajs3BuSDa5Ah8IWxd>(Jky&10000}Aba4!+nDh3QC*L6h0hfzx zg_H06_ox*Yo2K(v@iJ4n<^Q!EofBRjauzxR)C2`B58u73dw+Mvz0KAI?%PilE%iUb zbYq+D-W8|j@_**kI>NLej&0Xf^Uc@a@ZGuMXVG=l{HWlBkf&m6_q}A>z;l(st$Tya zNrqFQ#*O!|9JNfCFA@z1fGx~X+ zDKp!6FW9~C=>zTWQ|^AdGJ~(&??i9n`+0R~UvHjrlW-OMKinfy6vr{an^LB{Ts5!C{j* diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00001.png b/tests_zemu/snapshots/x-sign_basic_expert/00001.png index 3b59abd775a0399701d0833a1c43ae496603202b..dd500bf25629b5b5d58434a1b2fd3ad7a10ffcb6 100644 GIT binary patch delta 362 zcmV-w0hRvd0)+#RB!5gvL_t(|obB0B4#FS|fMGP=r1w7(cky8f!2+c&8D;u^Z_aMh z0>#yo0001h>`$+Nke>LIC#UwN+WpURy-9lSHFs`mm}IiQ zOefW3e=)`&5>+VDB*~1yrARLT000000000000000003~AH;BaiMM4FqcK`qY07*qo IM6N<$f?CF;3;+NC delta 331 zcmV-R0kr;w1LgvdB!4YQL_t(|obA|K5`!QNKvCN1PO|?cxtIPqnS_^4HKE?~RfSR~ z0W2v60002E-7ES5%C>F#QbbzaT1`v)L_a_&D(EH|Pmm%3p3a1s_`a#tdB1PERWF}w zQ>v}zL%*rj-``KN+ET0ly#@J6ZJZ8VHHG2RKSctnI+++Isedz|A0##h@4(;AKty8q zq7*Bjzxy9*+UdxOh`B7hgaH5mLM>AbJv}o2GN=6fG?b*&GnC>W=IK+?Wcky7#jF4h zVm+Q~m1MBG>)0cEcIIjnBx+-m-<8X8{RJj$+s@cMYw zOicSPRbLGaF+>ROT61Sn%^(x~+f+hL^lwHEBC!ia8U&dfT#E1l000000000000000 d0001&`2s}E<}7;R;0B!B-&L_t(|ob8)ij>RAdhC7qliThuYdzptOh9LgnT^qiqQ%fm= zSW7+6<2a7vIF92u%lX-D03yan4?_sMESbmeZUb~e2(Rl|JXB(gwU?~tZ?^%BP|xP! z2_dAz_s6l>b3q2=B%g||e;bp>Q_Gp$mjP^Oi)T;vIODzmB!8Hf*|c*@4DOqPfM*Y% zZA5NehN=%?CU#w59LI4S$8o-mvJBl`j~ud&6j!KBAgyKDVz;x)y&6~m78e(dw^PNa z04QKQSpjuHe;Z2?d1m1EAST1)*;P+@;L!H>_p2wBfYiYbdO>Yt*IIhV8pV{Vrj!BT zM^&S$6Qm%%OMj1T#@-pb@IW>fd%sh|$bCVj zR~tM=9%)F587AuK4`iO)U^uHcRXf{dTy6wD6g7a~R7pvp<=Xu4G0dE~*Gg$!%KKc2 z8jQg^?m@AABc2yA2qkxcKfCb@Kjw|3#-6 zLhAv>4>9>pzIPiiM9%p{r`Mc41d*|&3`7TwIcN6(kum`s!GGDyP-7D2NdN!<003|d zh73^f-1*rc21Ik=byWa<__UriWDj)#h3U07z}`Ik5=ze?Z~jr=4mN{?1^gG zK>PhXweM<^>Wi~>dF=rB+eIe#V-6XAG`dC-GKRb@a`J;uoH|zJ83u>F<1(Buk}%$udB!v zQrwEQCaGPkg0Cj|3fNY7MvUi%`7Ljh%Xj~plqg;qB!8f4I2F^m#*5Dyj;dLuhK3uU zr%7t!+LT?St$G^rZPRR#MgZ!)dyy(V@8DDu6C2`qUv|C6RBYAL`G|9Gy#HvT-E6gE zSmOM|%i&#w7u&QUjHkW2u8Vt?11az{S(#pZK=HlBZ^kjcarh+rm7{~`dJK>z>%;4t!k>^vn&Zq-SCQM^Km z5>>foMVhJN+jZs93OABNILqSx5(5(pfaqVlBC#|(PGZSMehpriMr0$ldeb4=9Xrxf zo4Vq-O({G@H`T$Nu&7yT3KzG`5LvUN@!Dt=d4D`Y8k1l6nx$d|wIJREdi9(D)2q1t zC|9ziGL<>NuT_Z0#Y7@KU`p_pimY?dG*sX|J@#W>M|YuSm+iybChRFTIL&)p?G zfQ*}S=j3L$^$$c%ZI$2k_e-s0(gL1r6Q6>%-jB^sulOMI$sF*{I$j8$hsy6w76AYN bI2Mp!mg2nie*BL700000NkvXXu0mjfe^-pn diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00003.png b/tests_zemu/snapshots/x-sign_basic_expert/00003.png index 9d49c168f72bb97b42847aa0fcbb654221124ed5..dd141cb85de443c9721cacca002ea679650ad5be 100644 GIT binary patch delta 621 zcmV-z0+Ri|1BC^UBYy%+Nkl&r61 z@Hmi2a-0JI00000;4wl7A%xRfIOiNwLn=mR!hbaJiTqi#t|Llsi-8tz>Fcbx_dXq^ zX$!4e&TZb)0Ps=J$p40>vv41K93O~B&J33&e$zPv# z2`Zk(-g`RF;=ztK(x_4g3rmpuXstAFPwmQPOgW7vvbF>nxdVS?r`k(0fR<)i+%@FS zZCg3cUTDwN7nUGec0Y+|HKDpr5|=ksE&PSL#~w^S83KMWz8$f%p}Cdu0L;<^0002E z2dyK&u=U$Hsm{Wa^RrFl)fa8BXVtCpD~ntzXy9>BFj)fug^tj)+nBZIS= zYkb%Vk3{n9j>)p-^WO(#(_hQ$I4IWvD$YL9y-0J72>}SXk7TRYE|k=AM$7fP9~^dS zt}z;bs=BQHe$D7UcT8D%wdRqb0JL1=YfA3Hj^-0GAP!g#R@Iefw$yidPTxBFH3t9y z0001#re<#F0}aUICiL?_1JZ&C8mqnwvfO}dWRD5;o$vzsR!VJ2BZZOGKc2B@_1jLBmc1vYQnq^xOk(X+S3XEtmiR00000fFb??cmz>}>#ui-00000NkvXX Hu0mjfKms0# delta 422 zcmV;X0a^Zq1-}E3BYy#gNklp)Ao_)BdGh zba(wmgIbq7AGy#ykLj}@&s)+0clz*rOc50wB)`w12!GMeCm3H)AodbCGO+_EDQoLEXn$4)3hC_{%=LU0FG<{Q&0)P^7^m6N9f}dI10c0000003QGV000000D!Og12~z6lu%WX QA^-pY07*qoM6N<$f^!ba#sB~S diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00004.png b/tests_zemu/snapshots/x-sign_basic_expert/00004.png index 44c82da1d42e25798785b6c31d98fbcd8fcb5328..cd304eb91e087053187a80cad8575a32566b94a3 100644 GIT binary patch delta 415 zcmV;Q0bu^m0=WZ_B!7TOL_t(|obB0Lj>8}fKv6oHov{BUv6uO%N?qF!GQxqj_k2|d zh(oM9CvG4=LH)|X1YN>j(Y=L5CFfj6Sch~UZ4!f2C9;+3M|CBuS*>z8xve@uLVxZ6wOQ0Yl9OnwwYI0d zglt}a=bUAEe?7(xM)eO-M^G|z(dQn@vm<)x+1_NGI&lJzpiQ2@%1BgKMn3-zkVmsU z+*|Bk3*CLHbN5=;JPe|aAbBXCYSKCo4*RLi?Gx3$lGSRRqffnz~?4sRHmp?Cn6j1T~1{t+}HfpkKF|3f-vIJbo41B$?Ej_k*u=T zZ(-8~aFa-fIbk=~z3t(1x9I{5I?NI6zYIJBHnYi2asN7ZOWcP2eik~2WS>AkSaXt@ z{mVF0&Fo){HCTyLXeFM*D>1zQ00000000000000002ly3m_MikOqbPyc%%RT002ov JPDHLkV1nyizjXir delta 308 zcmV-40n7fm1J44GB!3o3L_t(|obB0LuEHP?08nD?PT2pFx|jQ5LP#H!CL+^%&R33rkJb^V4q?)Bi5#SHZ~djW@X&fCF~gL1dd%6o8GmU7YlG!E@< z_Ij{!K6Xo1*wYjD1at};*-o$73;2MX^L;B!+yvZxYj+A-f`4+(^$(%;2LF*%0RZrM zw`dzY+0~x&W5oI+RvMYxm)joaQOk2Rayp-sIvxO=9+7qvH0;xbKquh6TYGlp>SSE{ zmLPF2Vm0IHiqV*}ns&7t8mfC5D*>r52mRCHTbH2DA}~~4iyF22j#cO+ywBKE!5s!! z^uJ~&)S~}oaxE~EDm2qckmX<~;ROHy000000001hVg3P`fz7#|yBaV600003b`J zjAZ@6qhzuy003~guhARWmUAxGDW!5}z3zFoXJrIGqc^bO%>-wOeig9*JIcwZk41fF zd8}W~Ii=J*70UPM4V=>?nEot}#i*?{xMFiJnd}5Ko`pV<$$w5jt+blRFZiK}3vdq+ z3s8Fcs%P1Cn*#vgPU^3czE%!ULjP~+$C?E-gR}Z$xjr0-Hg|dksBHhB-Rw&{Q_oXR z1vzSgPQd!McK+wpO#k}@$-Rg*3#vQD&YEV~*@0-N0cxxQEPXZTUlw26f+GBXRQIBt z-aTU%I*9ik?>ba)PeYdeWj3Og{>9W_Bwc8vgOJtWqr?jU000000000003Y)UROY|8 T{7N~o00000NkvXXu0mjfaz~aa delta 238 zcmV=)IF>z zvgN@?gD=J_D7po;$0FG4-y))5`mO91w7ar9Pu&&J_Fe=vRcBuT^A3jN_h-F75dZ+T zm3_ZGh2fJCIexu>(w`#EKmo}VkW2x|#sYr*nO59JywX3w(~zZqn3brde=r?nvI}MM o9L^+O0000000000008)!8-aa$I4Ur62LJ#707*qoM6N<$g31?bFaQ7m diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00006.png b/tests_zemu/snapshots/x-sign_basic_expert/00006.png index df2f1d51b880c66dbab3b930cd4b0acc8b2ff4bc..b18c07caaee3716228c46ac55ea359ca7529c45f 100644 GIT binary patch delta 306 zcmV-20nPrM1I+@EB!3i1L_t(|obB0Nu7WTS22eD2C+vSo-HQ(-4YuXy8leN8^Q2@* z@T(nh7zO|UINhW71-wZqO)tiA%x|aHclGRj0l)6A_XV`2lAPVX+_0yI-DYL-G=sZ1$_ihdHb1%DkOROiVe?tq~RtIlpI z&Ha@@1YLmI{u|R=nR`xs1OR}(VogJ9D|4QeBg1b@QctyK8ZnLU;=HS!d;X6K0-XbpB!6T{L_t(|obA|A4#FS|fZ=Jp3HLt|ckzLQ5GYVEtXBW;X|h2o z-8#l~0RR91w|iIzupq`*{tO|c#&m$2RB7<;WgWn$@)J-d#?dq3J^`gX?~dxy(>j2E zM*@tI0AoM(4#@9eFE4<@&E}xrRG7?WsXa zFN|^U)4oeFEVb;*W0ixpYrYs`)!4R(9mivSa!+tQAGc!lQ_g;`a*kuzYuS_r>P= zcBmFQBT)}@8bxU#}n(FD+|Mdrba>I96V%sJRDaAK`o zT4IXJUu7iIzNcRRlbgWlhN3UsNoMwMBTO~3e=~Ami7I4iGRfrND5e(x0000000000 g000000021V4KE*TK->-H;{X5v07*qoM6N<$f`A0MD*ylh diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00007.png b/tests_zemu/snapshots/x-sign_basic_expert/00007.png index 3be6937581dce43388eb0dc277c8c38a52adbfb8..9aac67d5b65aa283fc51f136fe73fa982c158ffb 100644 GIT binary patch delta 580 zcmV-K0=xao0^9_UBYy%TNklFnjSDnQ+GwQ8GrYix@TP{a9{vpN>k0f zWNL#sgC_%Qq8{#>crw83%5By+wfut%12k8z9KP#vDoH8j*TJ4i43R5q_U?ZFXK>&F z9IvcgEPn|LD--|#fF@k-EPcp-77guhA?A{C0(th>LMHhY+&qR}qwxYC254$u_@2Wx zF^CTXNT$YJ7ARz z?H{9|YH0s3uz@CsLYiP7)}&VN+}Y6LD|Yj=Wl>TzuWJg;g*xL$Lha0a7kU8aZgorK zLz(jT_x%gqnR86M3GY}^_l?Q&%-{bW&~$&{d}rvzfq%UD?D=&&Gv|200L3sA1m&@X zkScq0-T(4~!^xR*>>8ju-6Hwe~0#aRsbuLIiS`dNbTjzo-Cm;toBSQa8_<{ta5fPg7 z4RApM(mjF*94omX?+M6YNrZEM(6Ez$T;>}htn2|^5|AXn1rY!M00000FvLHQq6JaO SleWnK0000cBbYvYk?TvSZG9*C2e0%bu8 zV;Ld5^1R0$K16emi4~av<4W=;G3pil`w{Dz2u}q7fR_@s8v2ahl8#5oGxU~v=6Sc; zGgHV3`i+mAoO=jPQaCzfXOWJEK&cDRyT&6%q|a3a*5xtx^9p~ z|1=w+7X6c%gDOa>P$c)^NWu#M00000000000RQF_YDclgk2bw(00000NkvXXu0mjf DwGoq1 diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00008.png b/tests_zemu/snapshots/x-sign_basic_expert/00008.png index 974b4585763cebe5c0ffc2dce94db254a09efe90..aa6b3f9fbdf4a5406f4e8ef88525afdc9cbdaaa9 100644 GIT binary patch delta 362 zcmV-w0hRv10)+#RB!5gvL_t(|obA~`j>8}fKvAZen{fXlahEQtL8&o@R7`Br|5gzN zC&F%mASD0*0N`>zj`uF5h?bo5t1;(18KL&9(Ztwez_!mZ!j~$gw3#?NuwJ*(>^>jg zeU)Fwd#lufeKAV4_tP;#%u0WFKfsteai`u?!{Cm8f(;T-4S%OeWJOKVs?4pjQvz%= zRqXq^SM8L5nX(mq)FE-oKW&i!wQR+^TV3k(;)qpH3YL;U>^0(&6{Pzzbc26D&#JPe z{JY%C69Debb2rqW?%{~NOry{7yUIfI6UHju=sa@~&Bn{ndkD83U8#pBq9whbsGL2| zi6CeK+DT6nTVuyH8R|({OhFScX?UO*KMi~Xf(cS72QAl^m&jnxFZ%>?#kRQaU%x_vNeF zN+ngXD)C10PD$w&8>FglEmrOM007Weoncg2^V@STgAhOJm5ck3FX6aH`4>G48fd>}<3@jr zI0I5jal_q;*8!Ek2~jqHh}%FU&;EfE&-I^S@U|18@&Cx?6&?mz^rz{BTJ$H=2P;{H rR?Xbck$RW?Fd+m)jbwb(z0a@3 zC~BbvSxNu^0Kjyw`L}fU{M*b%F3&A&2XC|{_g3B5%tqoBG1j|2>IXjUL2j`GwfV-EkU4$=jy_Ma_YIeA-x+CuTeD=bcSBPDT#{gdF>45;ZDq;SkYLx0_5xc60jAMAUQ>$)Zr z_IUKmqX(eOjlmtFUk)xoLEzf3))<+EUR$$*x&E{UZ!#p0XJ$^U^#tMBOAsN15b|KY z;>*F2u4H0MP{%YY3Pp2$1`YHgT_^A)zA8-B1FJ9#y4Q_)GDGCUxQ;2vfD$PpXATIQ zV|O|rMhWrlUkgWsj}z^jbkFH`F17kRLHJrE`t+M z7b5Oy)<_ZNNK8K8Yn!G)u}q6P=4N2_HJ{q4dnU`YAiX;ww6nV$3f!0xq!m)<@EftN zWDy*U{zA)g08+`YG{U6$zR;`Fwas=NI%}csG;qE+Cx6JX;{f7bNk?VdIpja%2AR>{ zh7oE;e={6|lW-L}NfKm^!AH^IP1MlZCQuwjWlugd<{^Phj91F%qQ#1r-t_Cftw->msL*RZ#@ z_^%3Tp(l>wyF#^q#AR(LQF06 zn0J&n^BVZdc?q(LV>4GAr#r9mbq-6=K)rb{PCnn_`R@Tr$9~tcV53?B?F`e@ckMa= z008($l_yS~Bd4pRxc3EO6KB5(t9bnB{VTq)(OFQV{4n|4>|ZC&0Qb|IvCb<%B2Eb1 z08ZQnPE!8^;7S*=zyCc{o_3D-@i)H42p^M7_LnK7n(Qw|4Lq?5d14>-M0x=L00000 j00000000000Dx)U+!NE8D3lSN00000NkvXXu0mjfn8}fKv6X6PT2pFW-tAygeVW&kk$_BJs%?t z2_!YdElx@R006*`_{qYHqFL&_*Nt=WFM?VFoAR%ydSWAqCjkCUW&Kb7%N7HSlD%PDHLkV1iwDwb=jw diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00011.png b/tests_zemu/snapshots/x-sign_basic_expert/00011.png index 1e4be69934787c368c2b5ed677cc7f5a2470be3b..23f3ddf7af531214c9faa4e710bf473b8d9bb53e 100644 GIT binary patch delta 831 zcmV-F1Hk;_0@VhPBYy)NNklU5Sk}{dp4YF(an!=s=Po;-$$6gFUw!>+N%g8$FwLLlb6HO> zp1w9S%;u|cBOD3P>IuG<^~B)wvHT1NPVJVpR^iG_Z?Sp?fPbik`B)2In9A6=X+q*B z#G~w4g8b!$C216T;~NhDz&;WO+!L$~( zRwTcvwz>f8-qrZt73tT*>>N*9`0v~wfLWdhA%qZ!L=A08gUneCs}8;#tC*o|X-YsV z;0gZKnDQrGpns|Y%Pjcl4Gs*rPAWWr=J+_zdzhMK>~y&olB=Q2NRkpGxQydCmYx67 zD+)F3JvV4LEAeQzk~%dD3e)-IJ2iLFX)co!(HAoAdFDJ12uGqWj$>KlZH5NTGHvRF zn?cyu{nSp~3z_ynW=tKs&hD})aAQW8R!p7EPsF;C#ec9d`V%eN0r1WImQ^=Q@QBLS z>Dp$y4xP2ocM6;@jT7Y9ae#5Jq@%Lz9P*!O23gTxMi6R6e=!<^ooE%>NfKm@!K3)_ z=I@5KPMp2+VJLsr&y0c;S`JHEhtau4(v$v#n+%};VBI6sv(jFepUllO=nF_y>E-xd z82hFgvwxgCq6J;O@72fCYTA*pg(XUJ)cKhxPAdnu@555&C zn55!pOSc&oWO$c)y-j;(rHC$ktNSm{cee){H{?n+#&pJ|B`n{+tq|Gad(LKx&MFfd68k> zN@iU_1_Y?kSUM%>N_yde&|0SVPeg0KTC<+`GClR;ypxJ)tTRd_E`K?^jv+Ld`96r2 zENsi0TjvsUMg2q1KJJ;zQ&) diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00012.png b/tests_zemu/snapshots/x-sign_basic_expert/00012.png index 81ae2b72a503d4bf369bbc7fa6d1c7fc213c2cfb..f8e2e17010979b2194bacf3335abef60941cb43c 100644 GIT binary patch delta 448 zcmV;x0YCor1KIF1DKvB1oop}FCVlVyh48sT^gaaaO?)gdy z23sYLaGU?uO_D1oOPbVbi_pQxZ_WePYg0>pNp7+EJU`wHWMK161n9G#9pJ zq&H>dX2#T4w!d*kdOXj{5!1-`nv#GicLD&whY?F$z2&&E2{HDmb&u+`L)|@? zcv^MOEB z+y4N2%GcTddw}y~)UI$8gJWn++^aKDPy)nJOb(MV@a=i#_K|(}!r+-FC;{TPl>aup zzCk7+I6B6QUml3s}%00008}f1YqxKZ{qtOiM#9r3UZ-DP$gxC%=fg7 z($=y02{daaA|fIpA|mo6KdS?nkW!jD-`#JD@poLftt7N~tjK^c>y(4z452{Z%f6F)Jkn&ff^nfb+=i<-5ez4cfmMd%*YrVI8 zO$-UB2iWk+wtv?r#=qr**sfAtBT5e#Z~Nu%GF?wS5AnfUF4VR#lmggriza>iBx@tb z8iKOeOyYEEok@6VNXehJ_noeYh=>S2tbfqBaF=FkZ(|{#g;=q0m*)Er7h-P>?t@xW zx!xx0oxx5(>;bK611G+$iqYmbo`9Bp!|VZX+pKk(_Eh;1e26`uHwSnywW$f!8ng$b3v? diff --git a/tests_zemu/snapshots/x-set-keys/00014.png b/tests_zemu/snapshots/x-sign_basic_expert/00013.png similarity index 100% rename from tests_zemu/snapshots/x-set-keys/00014.png rename to tests_zemu/snapshots/x-sign_basic_expert/00013.png diff --git a/tests_zemu/snapshots/x-mainmenu/00013.png b/tests_zemu/snapshots/x-sign_basic_expert/00014.png similarity index 100% rename from tests_zemu/snapshots/x-mainmenu/00013.png rename to tests_zemu/snapshots/x-sign_basic_expert/00014.png diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00001.png b/tests_zemu/snapshots/x-sign_basic_normal/00001.png index 3b59abd775a0399701d0833a1c43ae496603202b..dd500bf25629b5b5d58434a1b2fd3ad7a10ffcb6 100644 GIT binary patch delta 362 zcmV-w0hRvd0)+#RB!5gvL_t(|obB0B4#FS|fMGP=r1w7(cky8f!2+c&8D;u^Z_aMh z0>#yo0001h>`$+Nke>LIC#UwN+WpURy-9lSHFs`mm}IiQ zOefW3e=)`&5>+VDB*~1yrARLT000000000000000003~AH;BaiMM4FqcK`qY07*qo IM6N<$f?CF;3;+NC delta 331 zcmV-R0kr;w1LgvdB!4YQL_t(|obA|K5`!QNKvCN1PO|?cxtIPqnS_^4HKE?~RfSR~ z0W2v60002E-7ES5%C>F#QbbzaT1`v)L_a_&D(EH|Pmm%3p3a1s_`a#tdB1PERWF}w zQ>v}zL%*rj-``KN+ET0ly#@J6ZJZ8VHHG2RKSctnI+++Isedz|A0##h@4(;AKty8q zq7*Bjzxy9*+UdxOh`B7hgaH5mLM>AbJv}o2GN=6fG?b*&GnC>W=IK+?Wcky7#jF4h zVm+Q~m1MBG>)0cEcIIjnBx+-m-<8X8{RJj$+s@cMYw zOicSPRbLGaF+>ROT61Sn%^(x~+f+hL^lwHEBC!ia8U&dfT#E1l000000000000000 d0001&`2s}E<}7;R;0B!B-&L_t(|ob8)ij>RAdhC7qliThuYdzptOh9LgnT^qiqQ%fm= zSW7+6<2a7vIF92u%lX-D03yan4?_sMESbmeZUb~e2(Rl|JXB(gwU?~tZ?^%BP|xP! z2_dAz_s6l>b3q2=B%g||e;bp>Q_Gp$mjP^Oi)T;vIODzmB!8Hf*|c*@4DOqPfM*Y% zZA5NehN=%?CU#w59LI4S$8o-mvJBl`j~ud&6j!KBAgyKDVz;x)y&6~m78e(dw^PNa z04QKQSpjuHe;Z2?d1m1EAST1)*;P+@;L!H>_p2wBfYiYbdO>Yt*IIhV8pV{Vrj!BT zM^&S$6Qm%%OMj1T#@-pb@IW>fd%sh|$bCVj zR~tM=9%)F587AuK4`iO)U^uHcRXf{dTy6wD6g7a~R7pvp<=Xu4G0dE~*Gg$!%KKc2 z8jQg^?m@AABc2yA2qkxcKfCb@Kjw|3#-6 zLhAv>4>9>pzIPiiM9%p{r`Mc41d*|&3`7TwIcN6(kum`s!GGDyP-7D2NdN!<003|d zh73^f-1*rc21Ik=byWa<__UriWDj)#h3U07z}`Ik5=ze?Z~jr=4mN{?1^gG zK>PhXweM<^>Wi~>dF=rB+eIe#V-6XAG`dC-GKRb@a`J;uoH|zJ83u>F<1(Buk}%$udB!v zQrwEQCaGPkg0Cj|3fNY7MvUi%`7Ljh%Xj~plqg;qB!8f4I2F^m#*5Dyj;dLuhK3uU zr%7t!+LT?St$G^rZPRR#MgZ!)dyy(V@8DDu6C2`qUv|C6RBYAL`G|9Gy#HvT-E6gE zSmOM|%i&#w7u&QUjHkW2u8Vt?11az{S(#pZK=HlBZ^kjcarh+rm7{~`dJK>z>%;4t!k>^vn&Zq-SCQM^Km z5>>foMVhJN+jZs93OABNILqSx5(5(pfaqVlBC#|(PGZSMehpriMr0$ldeb4=9Xrxf zo4Vq-O({G@H`T$Nu&7yT3KzG`5LvUN@!Dt=d4D`Y8k1l6nx$d|wIJREdi9(D)2q1t zC|9ziGL<>NuT_Z0#Y7@KU`p_pimY?dG*sX|J@#W>M|YuSm+iybChRFTIL&)p?G zfQ*}S=j3L$^$$c%ZI$2k_e-s0(gL1r6Q6>%-jB^sulOMI$sF*{I$j8$hsy6w76AYN bI2Mp!mg2nie*BL700000NkvXXu0mjfe^-pn diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00003.png b/tests_zemu/snapshots/x-sign_basic_normal/00003.png index 9d49c168f72bb97b42847aa0fcbb654221124ed5..dd141cb85de443c9721cacca002ea679650ad5be 100644 GIT binary patch delta 621 zcmV-z0+Ri|1BC^UBYy%+Nkl&r61 z@Hmi2a-0JI00000;4wl7A%xRfIOiNwLn=mR!hbaJiTqi#t|Llsi-8tz>Fcbx_dXq^ zX$!4e&TZb)0Ps=J$p40>vv41K93O~B&J33&e$zPv# z2`Zk(-g`RF;=ztK(x_4g3rmpuXstAFPwmQPOgW7vvbF>nxdVS?r`k(0fR<)i+%@FS zZCg3cUTDwN7nUGec0Y+|HKDpr5|=ksE&PSL#~w^S83KMWz8$f%p}Cdu0L;<^0002E z2dyK&u=U$Hsm{Wa^RrFl)fa8BXVtCpD~ntzXy9>BFj)fug^tj)+nBZIS= zYkb%Vk3{n9j>)p-^WO(#(_hQ$I4IWvD$YL9y-0J72>}SXk7TRYE|k=AM$7fP9~^dS zt}z;bs=BQHe$D7UcT8D%wdRqb0JL1=YfA3Hj^-0GAP!g#R@Iefw$yidPTxBFH3t9y z0001#re<#F0}aUICiL?_1JZ&C8mqnwvfO}dWRD5;o$vzsR!VJ2BZZOGKc2B@_1jLBmc1vYQnq^xOk(X+S3XEtmiR00000fFb??cmz>}>#ui-00000NkvXX Hu0mjfKms0# delta 422 zcmV;X0a^Zq1-}E3BYy#gNklp)Ao_)BdGh zba(wmgIbq7AGy#ykLj}@&s)+0clz*rOc50wB)`w12!GMeCm3H)AodbCGO+_EDQoLEXn$4)3hC_{%=LU0FG<{Q&0)P^7^m6N9f}dI10c0000003QGV000000D!Og12~z6lu%WX QA^-pY07*qoM6N<$f^!ba#sB~S diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00004.png b/tests_zemu/snapshots/x-sign_basic_normal/00004.png index df2f1d51b880c66dbab3b930cd4b0acc8b2ff4bc..cd304eb91e087053187a80cad8575a32566b94a3 100644 GIT binary patch delta 415 zcmV;Q0bu@}1Gxi`B!7TOL_t(|obB0Lj>8}fKv6oHov{BUv6uO%N?qF!GQxqj_k2|d zh(oM9CvG4=LH)|X1YN>j(Y=L5CFfj6Sch~UZ4!f2C9;+3M|CBuS*>z8xve@uLVxZ6wOQ0Yl9OnwwYI0d zglt}a=bUAEe?7(xM)eO-M^G|z(dQn@vm<)x+1_NGI&lJzpiQ2@%1BgKMn3-zkVmsU z+*|Bk3*CLHbN5=;JPe|aAbBXCYSKCo4*RLi?Gx3$lGSRRqffnz~?4sRHmp?Cn6j1T~1{t+}HfpkKF|3f-vIJbo41B$?Ej_k*u=T zZ(-8~aFa-fIbk=~z3t(1x9I{5I?NI6zYIJBHnYi2asN7ZOWcP2eik~2WS>AkSaXt@ z{mVF0&Fo){HCTyLXeFM*D>1zQ00000000000000002ly3m_MikOqbPyc%%RT002ov JPDHLkV1k?NzeE54 delta 386 zcmV-|0e$|t1DykqB!6T{L_t(|obA|A4#FS|fZ=Jp3HLt|ckzLQ5GYVEtXBW;X|h2o z-8#l~0RR91w|iIzupq`*{tO|c#&m$2RB7<;WgWn$@)J-d#?dq3J^`gX?~dxy(>j2E zM*@tI0AoM(4#@9eFE4<@&E}xrRG7?WsXa zFN|^U)4oeFEVb;*W0ixpYrYs`)!4R(9mivSa!+tQAGc!lQ_g;`a*kuzYuS_r>P= zcBmFQBT)}@8bxU#}n(FD+|Mdrba>I96V%sJRDaAK`o zT4IXJUu7iIzNcRRlbgWlhN3UsNoMwMBTO~3e=~Ami7I4iGRfrND5e(x0000000000 g000000021V4KE*TK->-H;{X5v07*qoM6N<$f@58|7ytkO diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00005.png b/tests_zemu/snapshots/x-sign_basic_normal/00005.png index 1e4be69934787c368c2b5ed677cc7f5a2470be3b..9aac67d5b65aa283fc51f136fe73fa982c158ffb 100644 GIT binary patch delta 580 zcmV-K0=xa=0^9_UBYy%TNklFnjSDnQ+GwQ8GrYix@TP{a9{vpN>k0f zWNL#sgC_%Qq8{#>crw83%5By+wfut%12k8z9KP#vDoH8j*TJ4i43R5q_U?ZFXK>&F z9IvcgEPn|LD--|#fF@k-EPcp-77guhA?A{C0(th>LMHhY+&qR}qwxYC254$u_@2Wx zF^CTXNT$YJ7ARz z?H{9|YH0s3uz@CsLYiP7)}&VN+}Y6LD|Yj=Wl>TzuWJg;g*xL$Lha0a7kU8aZgorK zLz(jT_x%gqnR86M3GY}^_l?Q&%-{bW&~$&{d}rvzfq%UD?D=&&Gv|200L3sA1m&@X zkScq0-T(4~!^xR*>>8ju-6Hwe~0#aRsbuLIiS`dNbTjzo-Cm;toBSQa8_<{ta5fPg7 z4RApM(mjF*94omX?+M6YNrZEM(6Ez$T;>}htn2|^5|AXn1rY!M00000FvLHQq6JaO SleWnK0000?n+#&pJ|B`n{+tq|Gad(LKx&MFfd68k> zN@iU_1_Y?kSUM%>N_yde&|0SVPeg0KTC<+`GClR;ypxJ)tTRd_E`K?^jv+Ld`96r2 zENsi0TjvsUMg2q1KJJ;z8}fKvAZen{fXlahEQtL8&o@R7`Br|5gzN zC&F%mASD0*0N`>zj`uF5h?bo5t1;(18KL&9(Ztwez_!mZ!j~$gw3#?NuwJ*(>^>jg zeU)Fwd#lufeKAV4_tP;#%u0WFKfsteai`u?!{Cm8f(;T-4S%OeWJOKVs?4pjQvz%= zRqXq^SM8L5nX(mq)FE-oKW&i!wQR+^TV3k(;)qpH3YL;U>^0(&6{Pzzbc26D&#JPe z{JY%C69Debb2rqW?%{~NOry{7yUIfI6UHju=sa@~&Bn{ndkD83U8#pBq9whbsGL2| zi6CeK+DT6nTVuyH8R|({OhFScX?UO*KMi~Xf(cS78}f1YqxKZ{qtOiM#9r3UZ-DP$gxC%=fg7 z($=y02{daaA|fIpA|mo6KdS?nkW!jD-`#JD@poLftt7N~tjK^c>y(4z452{Z%f6F)Jkn&ff^nfb+=i<-5ez4cfmMd%*YrVI8 zO$-UB2iWk+wtv?r#=qr**sfAtBT5e#Z~Nu%GF?wS5AnfUF4VR#lmggriza>iBx@tb z8iKOeOyYEEok@6VNXehJ_noeYh=>S2tbfqBaF=FkZ(|{#g;=q0m*)Er7h-P>?t@xW zx!xx0oxx5(>;bK611G+$iqYmbo`9Bp!|VZX+pKk(_Eh;1e26`uHwSnywW$f!8ng$R|u? diff --git a/tests_zemu/snapshots/x-show_address_reject/00006.png b/tests_zemu/snapshots/x-sign_basic_normal/00007.png similarity index 100% rename from tests_zemu/snapshots/x-show_address_reject/00006.png rename to tests_zemu/snapshots/x-sign_basic_normal/00007.png diff --git a/tests_zemu/snapshots/x-show_address_reject/00008.png b/tests_zemu/snapshots/x-sign_basic_normal/00008.png similarity index 100% rename from tests_zemu/snapshots/x-show_address_reject/00008.png rename to tests_zemu/snapshots/x-sign_basic_normal/00008.png diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00001.png b/tests_zemu/snapshots/x-sign_large_nomination/00001.png index 951f157b1554b2357d0d3b3b402f8168d4816842..db3406ed0dfda89a5f78ee72c3e8a6147402ecd9 100644 GIT binary patch delta 383 zcmV-_0f7F21DXSnB!6K^L_t(|obB0Lj)O1^g<*FzJ7NDzVlVTMX%v}Upe43Z{_iQG z+;m)$;)(zO008D*-Z$`X-}gM;w(a~OYUk?4$bP+VK%|!1$2mSI`XodFl>9X0GW4I1 zvRZ0f9$W5E@~zpAs1@=QSh;NVh6;nJy|#q(FtUBO*lNJACO^F=JZVYRxO(&$fA8=S}Y;r_A5 z2CA&~i>M5uI(Rt0vA^5Zvl(-4MYJA*8=dK4%)9!Ke=o>DzhSrfA2O;Lw;KHf%$^Xc z)Vg~6s@VUJ!EzBE#Jlo0(M&UB(l=9yn)HoP15eCCo(3UPgQ5>?8mHt_HrA%=1d~gUGj_QGv6r zs8b~@awC>Dv5mG*v5}c?eXUK<^|!_S-MwCoR4;R9BeVUJ;$_ymISXz@)F#0|-N?pP zq=|Y#$7#2cVqYsyd@I7*Qoa~H147#6YF!<^D%RG6)SdQRggfEA^GI}44KmSpQwTND zcSa5(QH3IPf=mt$MR)-K0000000000000000D!}M08PdQ9z%)`UjP6A07*qoM6N<$ Ef+N)L_t(|ob8-ja)lrahH0leasNwlFMV*zq`CYg+|)Dqo{oqi zBm^PSmXah%k|arzB-{C#F7Z51R&pH2^j4fuWvUuiA=L_(s6uA(Ggn;suk<3*M}7vx?IM zBkxJp;`L)&WbAOjWk;uVYPGBL>{(eDdI?)?C53s&@34^Ahlrv)ZVFn#;C!+)Q0DK1 zyHU44Ns=VVI)57PfZOL~wg4RzV#%rL2bPBzPfLtSU=G;4aE@*rJQZ+0POgSM3XIUX z43&`qGVihu$bHra@ldV5Y4RYtDO2rx31QEAddCXYkP2f(0QeCqY{~>7h+7%a&DlF= z7YgL&jTjyv6Tj_*-X&@f0GZ7~K)(aFrK|iYIV@y~GJmSr?qpOMalm+&*eIi4#|9;j zGsWv3xC5N;pP~hID9qVxYrS$oyRv4;b4?So3La(HLPOOPDcQH|W2XE_Ciaer`ldIY z5c?mG9(hp@pM*XM?_zrICio!f#x!;MU;_;!rw^7AFfW_s*@8^2&p^(gsmh4gaoz&x zh8y*Fhkv~b)w`$zO>m0F>VL=qQvePqMlYNiV(Sk|n0YYE+S=eTQnVqdMwlvR+>tW4 z!EkOi+U)F*a#9I=sY(F9sSrz`=UI7K95bi1nibYo+)E)%XG}htxGja!f!t=Et-Yr_ zA$b{;9T2vxeAUD@K@Mo@_dukLnw6(C+Wl-G0)JSR+)A2{^oq)KCgleSY3mu$QI>p= zvA#a;{HW4FhpM>#qY~^K{Px53J>_rVhEI~u9TazPg9B#$J;mF{ev%}~?X3FyfRmiI ztcB4-9H%%3r`DmDp(dKoHZ^XDBg>9!hasNxoUiy$}#sNHl|GDLRN^%tp zD#nwWl!71#f*=TjU^!n4d|cO6p5~kvI3=!cr}rsoz;#_YXR+ks*3N}=!y1ESnfsX3 z;zoFtsr<}#P@}vzKIp_r!wWnk+A?6z9Lw7};0XusiSqc)4}at!{RN$ue;r56fFV^# ze;5sl>w&jnJ#6cM#1adEFPLh2=?vfc=%F%+#G-gs3=cCs-fDgs+1L75AR~DL?b|H*tPBAxF16;yOr9G z3D+_rTHx9ofGDY!7OF}uaD>Y!9l&2xhyqScm@KcK^CT|zmO3MWQj2}z0`3$vN^DU_ zhgcZkngq*Go8(SG#{4VR;uB)ohI1^&-L+++ELB6r1b^!715mz44RzsCYH_RR48Vz^ zO?TvWnzxeVf^8mA%m~$MrlHuEJvZAyT7@ak%)s32POKT)Vw74)ffON3y*LlqSL`l?4+9V1w7UIRRyP?^etce}q3bduLDqI62 zSa-PszuKkKHYRpJZLo_=cHL4L~nZ)^16^DG-YN zA}2Dy4_Z~6?rf@EkkD)X(q>?8qqm)0#h5A$-$FO)1+LzH$K-<_C2KwkwBb!oTqzq6F zLXD8H(K0)Y{M&U7&n@EC(0G*~+|Bj+Cb zkSl*Axm8to`UQV@L+<~0_{@t&xC7=id=}}WONc=+jp*u%!2t{>R}8iia4%Zr(E}NM zK2vH2rhh3bQP=AhifwwQ{^6i|A^WQ~0294LBaJ^4fE1JfT*4@v7V6$#)R6gMmbA6e z=g7rPNjAe+J?nv_$*oLhvr}`hOU6+n^ix)YatxJ73O(1-)621PQm;vAE#*B`Vg@7s z^Yrw!B@4RE?AG3senWRV6n!HsdHI&qeWC@xw14k~P#>AXDVeFkz}L|EdBzM!);%@}Blj;el6@@0}D+@IU}Ue^R0F z>2tp*isEtd|59H1QiHabN-lXbh;9I(E|3`N4qnR+$F%(GoXRoSIeV00000NkvXXu0mjfU)8m3 delta 879 zcmV-#1Cac$2ZjfbB!5jwL_t(|ob8)ilBOUGMwzME3Hx6XdzlBTDJGYX01?#5dFb-j zn8XCR1Usc52!bF8f*{z=uMIXzDecdk^9G~Dbk4awCNli0Cj4SZ8ulm@W!jTm0AF?I z&)o(z+Gpd9PJC&&!1Wij?&otX0X0%Q6YcTUKahj;6Lc>BI)5JV2Dscp@?jC6V~PE)4eVG6PoT|BgCGckt(1m(h6rdkcFzE9+^*3{ zQcdGOfzI}7_kS^gnBDU}qG3zPa6JKYPI3*v6Z|09nIS_OlhaUfA=BE^rY_Tq9j%75 zvVv`!uw4m{XSPGWX8=l>Qp$PxW*2%(PXZzghZlIVp_(g||p z;8u8eeRjn7g5LO@h^T>hDSo{&`Uwy|ulcX3P0A|I=va%}O4w^z1oTXNrQ%{&6eH9B zdUeRdG=E);<7ezkQ_JdX$g3o+0n@+1>YAIb?`pmo`+$A|wED(e?0l<sabo?G|&4CrlFwi7h)*IGo6)&*&GY>oL1ndH~+11m25)rz-w*ZZ8Sp_}WY zLs)$C^8ZS| z`2^e%`d765AP9nwQ%b>89m^STzWjh4AY$TO#$n@4qf24mu4+NV0@@`@ER1(?SAjO) z9Ju|LByVV1EgrX7OxS6yojJvq-aHw!*? zcQ00iVJ-_;?EwhAAc)`Bm0;rQZZ=w8MLlc|o9 zyc6yQRq`Dh&VQmPikD-|0o#XWv<4kiBI$t}W3;mytn#P^J!&|c=F8`ywJN_x++MitWt$ zKA?SmhIkP@#L>t(I93MUj-L~el)rV=zy?^9Us*{#_!W{55nU^HFzYkbj^avjMC1pM zzJKzV5yPnR5te?at$49C+B9-_iq^$y7IVJ|O$pW<|RN(nMX0s!ED&38k~&-&^(9eg{HKHG+_yKu7uKbP&A76{SkVN~t3~F)i|Pc7qs%$jE^uP4 zTv}p^%U@+A)4r!)0F#@*>4u^&-AQKlZzD`Kvwt&kV2LVZX)?*=;3%dS0000000000 h000000000u<_#|&Y(U%%=HmbW002ovPDHLkV1hx*xd8wG diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00005.png b/tests_zemu/snapshots/x-sign_large_nomination/00005.png index 1e4be69934787c368c2b5ed677cc7f5a2470be3b..67135d53225b9cf86cebaa0c6f308ac569d30fee 100644 GIT binary patch delta 925 zcmV;O17iH+0cvXbLCVyo~&8$+9Mma~Sng|tLdHP2U|uJX6Ji%j3E zTr{*P$;4VWL=o%&5pnp`T94zntf_?#yZ5>jZya{{3d=hA+<#EV@k{yJRWM(%NV+bm z05vze)Sw#X#X{H}0SwSjHrPE?j9G2zglV!o0@x^a3e&=a(B1+jZc(}ESEpDMJ0idj zn^l~hcdn3h`DyF&h^=6`15P_SO?io(-DdZ;h4YK>jmz(YU>@>2tV`_!6_%$>K`RKE zN!A5Q@J@Ibaew2JBuSDi#aIJwpPJb-=%f-&&y{;%Nr?HJ#HmIlRoa;}Kg1Rfr*=(yVxuD)wvdeR(iJ5?>G3-G@Y$s~u*kd0v<-a7b zcTCkM{o)C+|L>6_uh+wsFs9*Mg!eAM2gxw1snZ7=FpQi&SW1U^*(}c<$lB*KkTWow zGUIiew|@X_!27!-uALMX3o}XT3Bmw-zqVk5qvapTMA`> zcAHtPy=Qw!@-!$rBdl5Zl*Bec4lvvIKw2A_!ha!^4&U1m0W3?dCCz7gMRhup@{@G6 z)-$4eS@J?gd;7TarOE&UO~vw$O0aYA>WAe$i6nAig1N=X!z`T9zCrOgr z&Z^%BRC3z#D(pSPQJZscq71$4s=~j|c;lY*2Qk3{z7-{L@~cZ8w@njUx8SdO3K|$P z+JB~o#R2_lZ2XFC(}Jdw6R0cL`a^B!Yyf5+O{UdP3u#tEv%cu#4KvSi5oetZG>)k00000NkvXXu0mjf*?n+#&pJ|B`n{+tq|Gad(LKx&MFfd68k> zN@iU_1_Y?kSUM%>N_yde&|0SVPeg0KTC<+`GClR;ypxJ)tTRd_E`K?^jv+Ld`96r2 zENsi0TjvsUMg2q1KJJ;zFnjSDnQ+GwQ8GrYix@TP{a9{vpN>k0f zWNL#sgC_%Qq8{#>crw83%5By+wfut%12k8z9KP#vDoH8j*TJ4i43R5q_U?ZFXK>&F z9IvcgEPn|LD--|#fF@k-EPcp-77guhA?A{C0(th>LMHhY+&qR}qwxYC254$u_@2Wx zF^CTXNT$YJ7ARz z?H{9|YH0s3uz@CsLYiP7)}&VN+}Y6LD|Yj=Wl>TzuWJg;g*xL$Lha0a7kU8aZgorK zLz(jT_x%gqnR86M3GY}^_l?Q&%-{bW&~$&{d}rvzfq%UD?D=&&Gv|200L3sA1m&@X zkScq0-T(4~!^xR*>>8ju-6Hwe~0#aRsbuLIiS`dNbTjzo-Cm;toBSQa8_<{ta5fPg7 z4RApM(mjF*94omX?+M6YNrZEM(6Ez$T;>}htn2|^5|AXn1rY!M00000FvLHQq6JaO SleWnK0000*b3@CL$stA|fL4BtNSIn2=JMI^W%IisVASs{?qteG1_26ivReNdZdg>1wb; z0bz%<)KDfw~?P+4p_dTiP*g&ga#J&ut_Zep_?# z$c^L!+s+#vny$5U%S;RF4RPBqzOj?PUpqDac=hTlO|^zzTfbj6bUNczUtxb>hE?J6 zdm)D(^wl@<3I*^k_e^p1y|n7g+D*YsImV%He(wr@JEdXfCehj}iiM}_b0;!v%{jU| zI`-9!;`1MO zpK|&vd`#=!3!7rWv&T+fsOH!%8@sYyeUa+k`77qwp6^u1V7le$FC2Z`RPvQ)q>rPp zL1x7Q347ie<|fV{&8PmiHKMLGmdUs`t9O20V18|GO4@&;Qz6E`#g*CTRd826vVPO~ gk`)*n$l%{u;m5&(84k8{PlAL!UHx3vIVCg!0Q_aC)&Kwi literal 0 HcmV?d00001 diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00008.png b/tests_zemu/snapshots/x-sign_large_nomination/00008.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4be69934787c368c2b5ed677cc7f5a2470be3b GIT binary patch literal 355 zcmeAS@N?(olHy`uVBq!ia0vp^4M6O`!2~2@x4h6`U|`hpba4!+nDh2#G+&c}K^PbX0`eJS}y70`%8T>n^%dV>bk>TM}C(cF@9*Jbj^5WTF;gKGIO)y zjlJ*9*PE9W@jdm~5r5wEu#TD8y6+Pnh8_O<-8#^Bx$bnOy3REWn^jXeAFev)TXe-F zTky7j?62N_lL@yzwx7O!=&4O1W7^|)7fcr%%i5*3D%0_G;tl)cpW3Io3*7!cdXW1o sV&B=e%knGs=l(tai5cc!1_ryAe9w9}zGZ%X&;TUp>FVdQ&MBb@086r+N&o-= literal 0 HcmV?d00001 diff --git a/tests_zemu/snapshots/x-set-keys/00015.png b/tests_zemu/snapshots/x-sign_large_nomination/00009.png similarity index 100% rename from tests_zemu/snapshots/x-set-keys/00015.png rename to tests_zemu/snapshots/x-sign_large_nomination/00009.png From 77eb4633a1a5d613babbb8de1f46bfc386d6a5bf Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 20:11:51 +0100 Subject: [PATCH 12/14] add check_version to CI --- .github/workflows/check_version.yml | 58 +++++++++++++++++++++++++++ app/Makefile | 4 ++ deps/ledger-zxlib/dockerized_build.mk | 4 ++ 3 files changed, 66 insertions(+) create mode 100644 .github/workflows/check_version.yml diff --git a/.github/workflows/check_version.yml b/.github/workflows/check_version.yml new file mode 100644 index 00000000..85e7bb48 --- /dev/null +++ b/.github/workflows/check_version.yml @@ -0,0 +1,58 @@ +name: "Verify PRs to master" + +on: + pull_request: + branches: + - master + +jobs: + configure: + runs-on: ubuntu-latest + outputs: + uid_gid: ${{ steps.get-user.outputs.uid_gid }} + steps: + - id: get-user + run: echo "::set-output name=uid_gid::$(id -u):$(id -g)" + + get_version: + needs: configure + runs-on: ubuntu-latest + container: + image: zondax/builder-bolos:latest + options: --user ${{ needs.configure.outputs.uid_gid }} + env: + BOLOS_ENV: /opt/bolos + HOME: /home/zondax_circle + outputs: + version: ${{ steps.store-version.outputs.version }} + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: true + + - name: Invoke `version` + shell: bash -l {0} + env: + BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk + run: make version + + - id: store-version + run: echo ::set-output name=version::$(cat ./app/app.version) + + check_app_version: + needs: get_version + runs-on: ubuntu-latest + steps: + - id: checkTag + uses: mukunku/tag-exists-action@v1.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag: ${{ needs.get_version.outputs.version }} + + - run: echo ${{ steps.checkTag.outputs.exists }} + + - name: Tag exists + if: ${{ steps.checkTag.outputs.exists == 'true' }} + run: exit 1 \ No newline at end of file diff --git a/app/Makefile b/app/Makefile index 3b5f707d..4aedd72d 100755 --- a/app/Makefile +++ b/app/Makefile @@ -249,3 +249,7 @@ ifeq ($(TARGET_NAME),TARGET_NANOS) else ifeq ($(TARGET_NAME),TARGET_NANOX) @echo VARIANTS COIN KSM endif + +.PHONY: version +version: + @echo "v$(APPVERSION)" > app.version \ No newline at end of file diff --git a/deps/ledger-zxlib/dockerized_build.mk b/deps/ledger-zxlib/dockerized_build.mk index 50f2e4dc..835151d5 100644 --- a/deps/ledger-zxlib/dockerized_build.mk +++ b/deps/ledger-zxlib/dockerized_build.mk @@ -141,6 +141,10 @@ clean: clean_output clean_build listvariants: $(call run_docker,$(DOCKER_BOLOS_SDKS),make -C $(DOCKER_APP_SRC) listvariants) +.PHONY: version +version: + $(call run_docker,$(DOCKER_BOLOS_SDKS),make -C $(DOCKER_APP_SRC) version) + .PHONY: shellS shellS: $(call run_docker,$(DOCKER_BOLOS_SDKS) -t,bash) From 081bc754017d3055ed7c564983ad4c9691b0e964 Mon Sep 17 00:00:00 2001 From: Fernando Theirs Date: Thu, 24 Feb 2022 20:47:25 +0100 Subject: [PATCH 13/14] fix recovery tests --- tests_zemu/tests/recovery.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_zemu/tests/recovery.test.ts b/tests_zemu/tests/recovery.test.ts index 89a57a46..77773d76 100644 --- a/tests_zemu/tests/recovery.test.ts +++ b/tests_zemu/tests/recovery.test.ts @@ -39,7 +39,7 @@ async function activateSecretMode(sim: any) { // Activate secret features for (let i = 0; i < 10; i += 1) { - await sim.clickBoth() + await sim.clickBoth('', false) } let reviewSteps = 7 From 637b7f4a6e13d589db11974bb8301054efda1bc7 Mon Sep 17 00:00:00 2001 From: ftheirs Date: Thu, 24 Feb 2022 18:17:55 -0300 Subject: [PATCH 14/14] update logo --- README.md | 3 ++- docs/zondax.jpg | Bin 16119 -> 0 bytes docs/zondax_dark.png | Bin 0 -> 83636 bytes docs/zondax_light.png | Bin 0 -> 83657 bytes 4 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 docs/zondax.jpg create mode 100644 docs/zondax_dark.png create mode 100644 docs/zondax_light.png diff --git a/README.md b/README.md index 8e708cda..28db8736 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ --- -![zondax](docs/zondax.jpg) +![zondax_light](docs/zondax_light.png#gh-light-mode-only) +![zondax_dark](docs/zondax_dark.png#gh-dark-mode-only) _Please visit our website at [zondax.ch](https://www.zondax.ch)_ diff --git a/docs/zondax.jpg b/docs/zondax.jpg deleted file mode 100644 index 8dbcff8504f2f3e30671a450e4187ceca7d071a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16119 zcmbt)by!xx*6-eL)7{-&(%s$NAl=<9pa`O*f`EXCfP_ecG^il0bayHtD5=1GJ?DJ) zoclcA{o{Uj@8_Mp-dQti*3A57ui0zX?dV$VP)`T100=$+czFl<8>lMKo0(hCBUb<{029Cl2mvuWhX7wrZ?{n3|9YKG z187MAFv0Uz*8jEGf6u^jbP8|)01$;{*Esn42cqc~^p7wk&=*ZZhSB-N4z6~NXnGY* zbNize1OO=Z-+cRj()536mw(bie`$Xs14VQhbf4+5UH*f%{}0;1)!z%Yha+S1RtNbo41prlZ(HTQ-Hmbr%wp4gO3-VB)yZDotviw z{of7;{H-YW-<9Lwr8jbQ3!q1%hu+uU$Jq_t4EnF9n}d^gfRiJAkhi0gKfN8jqQ8?} zpj)sLy`qnomydSct-u^DSy}f>g#>pZ8bbJ51zRybl5IaTZ zr~NyRxex&G?gK#6$A9P9X9Ga9J;76lM z5D)@{0Z~8<5Cb8_*7P0$o5i&;#@WAAwIm zAJ7jB0E55~Fbs?WW55^SD=+~}0#m>YFbm89^S~mo1S|uqz#6a)Yyw-rHn0oq0pEaq z-~c!RegMb7Pv94D2Al&Iz!mTtxCU;3Tl8xX0>VHzhy+m}CWr;%fVdzYNB|Oo#2^Vs z29kr6AQeah(t-3KBgh1@fUF=p$N_SJJRmQ~4+?;Spb#hmih<&wBq#;SfO4Qbs0b>9 zDxeyu0cwKUpf0Ef8h}QiF=z^!gBG9_Xan8_?LY_633LHnL3hv-^ag!EKQI6c0)xR& zFdU2oqrn(37K{fUfDgeW@DcbJOaart4DczK1!jXeU>=wc7J@}!F<1hYf#qN&SOr#t zHDDds05*XwU@O=Tc7oktFZdDc13!a<;4nA}egVh9NpKpR1?RyJ~Fi0dM8WIbMha^A}A<2*@kTggJNrXVwrdB_rE1+os=gzP}RLG~d>kQ2x$ zS)m+IZYVEQ04f9(g-SrBp|Vf~ zs4`RystMJB>O+m7CQx&z71S1L4|RgNLOr0~P(NrOGz1zBje_2T#z7xI6QRk_6lgm1 zDfBrs4_W{%g1&~9K`Wqdp*7HYXcP23v>n<7?S+1V4nT*YW6*Kv6m%B409}EuL${#2 z(C^Sg=n3=`dI9|ny@5esa2N`P1;c|8!bo7`Flrbbj1k5H;>#4 ztQb}XtAJI*YGIAA7Fav13-$rl2OETq!oI?$V6(7A*eYxTwgdYHJA|FUPGOg@Yd8Rh z!BKE5I3An`P70@l)500yEN~7u4_p8)1Q&x#!R6qJa8Xg z17Cozz&GGK@bB;=_%HYc{0{;^zz`?|HUb|(j37r)BNz}Y2o3}fLI5F*5J$)$6c8#1 z4TKKD5Mhe2MA#x65UvPMgfAix5r&9D#3CLb9wAZ?8Hj8|9-_{G@08#`g zfs{omBGr)ENPVOU(gJCVbU?Zyy^wy$U}OX`26-QugnWX`KxQNJkS~!X$Z}*gvL4xt zY)AGW`;ddkG2|q24!ML}NA4i^k;lkWV zlp;zErHwK`nWC&vb|`0*2g(-}gbGK+pzfoRP${TP)N@om>J_RCRfVcWHKE#2-KbBf zLDU#(5;ccfL2aV;P=~0Ws0-9J1{4E@frCMaL54wt!HB_z!Hpq+A&Mb|A&;Sgp@pH3 zVS-_aVTa+2;ep|Y5sVRm5sQ(4k&Ka!k%f_mQG`*7QHfED(S*^C(Sy;4F^usQV+Lap zV;y4$;{f9X;{xLv6M~7t#K9!Oq`;)bWX9yc6;^62_9mlE+fT(#A5xGRLyTa>R1S^2G|qio}Y;O2kURdWw~c z^%AQTs|u?Qs|BkQ>m$}6))%a4tVOJKtUatFtW&Jt*dR6%8wZ;Rn*y62n-!ZI`wq4k zwhXp1wkEbdwkftXwj;JXwl8)tb`*9zb`o|fb{6&v>{r-tu-{=fVz*)UVt>XS#h$`m zz+S`N#XiJ7#r};0;-GMFaY%5ea2Rmdad>fraU^jRaMW;gag1@SaO`p1aC~rraUyZz zaguP-aI$dnabDw8;MC$Y<8$adB};aH((^aXE1L za7A#Xag}g2aP@J`aBXp&aXoPZaKmw9aT9SC96!b`(@ zj#r3RiuV?;0j~|O7jF>nE8Z;L3f?x}0p2OzAABf2CO#oP1wK7K8$KVt2);DF622C` zA-)B^J-!>hFMcR~41NNB3jQA@zQ?#F9KB$t1}mc}-G9(n!)t(nm5zGE1^bvPW`4 zazzRy#U>>tr6FY{irE=n#(u1;=1Zbj}y?oA#-9!vg+Jd^wdc`5lj z@)q)5@*(m`@@4WJ@*m_^6i^Cm3Q`I>3J!`p6p|Fm6gm`U6m}FI6oC}c6b~uVDRL=Z zQ@o{Urs$>^q?n*sqS&VRL2*S1rNp5mrKG3iq!gr-rc|NSqqLxOp!A{)p^T+`MER7m zfU=CTma>iV6Xhu7Eaf`oKIJLpEfoe85fu#;8x=p51eFq%4wV^|J(VX_5LFCS5>+Nu zK2;f2Ema%UC#o^3IjRk+1FCaskQ$4cgqn_;gIbVUnp%}wpW2eziQ1Psocca>3iWg9 zSJYM1P1HTqL)25$E7W_`zo>6$P&9-z)HG}~0yL5|$~1a37Br4DJ~Ux8@iZwk&uL!K zyrpTT>7f~>nWkBz`A&063(#WHlF-u8a?%RX%FwFQ8q(U(y3z*FM$snHX42-VOBc!9IW23u6Cq<`9XFz8~=R)UC7fJV!E`u(gu8gjZu7mC~ z-8kJ6-7eivx*K{FJrO-EJqNuIy)3;3y%D`Fy*qsn{XP0*`Yie)`YQTn`d<1G`dRu7 z`a}9l1{eb#10@3s13!Z#g9?K_gB61dgFizwLlVPNhC+r4hDL^NhGB*ohINJmh6_d* zBOW6qBMT!xqZFemqXDB0qZ?x&V+><5V-{l(<6FiS#t)2RjPs1!jK_?Bm{3eaOms|~ zOu|g^Oj=B4Ob$#wOyNukOzBMdOmCPPn7WvTn5LQ5nGTsQnc>X%%+$>6%!16a%$m$5 z%=XOQ%wfzAnA4eGFu!4LVD4fbVxD2%U_NBNVnMJFve2?{un4orvuLxJvpBK%vP7~Z zvOHyZ$x_AA!t#;j3(F$Q4$DuLTUIPqGFB#5K2}LqRaQe*TUHO&5Z3#wX{;|;->^2Y zcC!w%&a!T@{$Rak!(by}V_@T96K7LlGhnk}b7u=?i)Tw^%VR5JYhdeU8)lnh+hRLr zyJp8^CuL`1=VO;-S7SF~zsv5$9>$))p21$gUdi6f{*nC)`x5&e`xys>1CN7>gPlW& zL!LvM!-B(wBY@)`$77Bhj#7>~jxLU2j#-W^j$@7+PApDxPG(L4P8m)OPE$@tPCw2l z&PSZtoUb`+IXgH9IcGRGIgdGSxG=fMxR|*FxMa9Axy-nnxcs?dxE^!maFuY?admMG zbIoyWbN%E7xpBFvxY@adxfQr|xvjX}xP!Ulxzo4{xGT9^xIb}^bFXk8a9{Btd5C!! zc=&jvc+`1JcpQ2Bc%pfdd2)D4dFpw3ct&{^c=mYCcwxK*ytKUByyCp7yhglsygs~< zypMRZc}sZfc)NK=co%qgdC&Nud<1;7eB68ze5!oLeD-|4e9?T#d^vn&d<}fPd|&vM z_`dU9@+0_(`5F27_@((Z`OW!V_yhUl_|y0c_^bHe^Y`;l@o(@S^WO^K2v7>J3y26P z2^a|674Q~_6nG@?T%c5-L7-RQi@>tLzQENT)E&}0%y;hGk-MXF$Lfyzov=F(?>xIx ze5dwK*PW3&i+8@=xe!DM5(_d33JA&yY71Hkx(kL1CI~(gEEcR4>=qmqTon8+cqxPw zA{Am55)_gb(iO51@)U{?N)mc5R4UXc^g(D`XjSM)=vo+Cm{OQSSX5X=*httx*kAab zaH?>=aFuYI@PP2F@Q(1Q2uy@Xgh7N~L{>yc#7e|NBwQp(BwM6Zq*3If$b`t6$PbZQ zQCv|PQEpL5QFT!>Q5Vr*(FdYWMToXa9*$z<7NMP*fGO=VqVLuC_XpUb|HZIS&fJ14s*dntz@M2pu3c_KZb|My?nWM0o>rbuURGXL{;s^Qe5`!B{44o7`493F@|*I%6yORZ z3aknu3aSdG3a$#F3P}pN3Ka@%3PTEu3I__;inxk&ihPQ4iu#InivEi6icb|^D>f?j zDb6VFC|)RGC{ZeLDM>16DOoFdE5#_KDHSQzDfKE%C~Yd8DkGH1l-ZTVl{J(tl|7ZC zlv9)om1~rHl*g4flz*wfRmfD>Rm4>^R4i3IRiacMytPUERYsYbKL zfX0HxfyS*Sz9yrlkfw^JnWmd&gys{?Ld{yu51Lb&JDQhTm|E0YyjpTv23n3Idmm;b#(9Q`s+T>&DO2ZZPy*uUDN%khtMO}s@KTQ9zexZJ?{zv^8{XP9Z26zUH z20{j^1{MZh2KNjy3`z`I42BGr4UP?AhNOlZhEj&QhW3U*hKYuGhSi2WhLeUnhF3;7 zM)XF4Mk+?;MxI77Mj1vWMlD7|M$1Mg#&BbDV=iMEV|`;M<51&d;{xMa<4?x3#@~%^ zObAU_OvFqyO>9m4O&*x!m{gf`nM{~$n_QXVn9`dHnW~yvntGeYnLaZuH*GilV!B~^ zZiZ<_YbIc(Y-VQWX?D*n)2z&_)oj#k-R#sH!<@#P-(1Pu%-q8~#yr!!%)Hfn)O_9i z%mTxL#zMeC*}~ky)8d}RQ;Rni?G|4wHZ3kJu`KB<1ua!AEiHX4<1Mo-D=oV$CoFd? ze_P>MF@wR>#)fHpDjB_N8ru?SSo)?a5ul zU8=i$ca`p%-SxT~cQ@;9<=w8klXv&-UfU7cvDr!5>Df8ih1;dr72CDgjo7W(o!MjA z)7uN%tJ~Yy2iPat=iArW_uDVn|8RgiP&)8AC^?urcss;9Ja>5O(CaYcu~frR+;hBfB68wzl5sM0a&?Mw%5-|;)ZsMlwCi;3Oz6z!EbVOI z?BX2doZ(#N+~GX#yz6}JLg>QoBJE=6;_4FZlIc?J(&;kkvgdN^O6h5~a zHOsZqwa0bZb>9u*M&`!jrs!to=IwUhEywMh+b6dLw;%2ZcWU=L?rQGV?g8#e?uG7+ z?t|{D?q?p@9*iDh9y%V59^oEo9;F`b9^)Rn9ygxEo}8X?o+h52o^hVfJ*z!Gdd_?P z@IrV|dkK1}d)aygc_n)ld9`?rdTn}Lc@ucEc}sg6db@ky^Um^q>;1ud&ijWC!iU;N z&_~_pu1~PfW1nK5_dZ{IwtcRBiF`SI<$O(jy?pQc=K9w9_WLgT{_?}}WAqdA)Ae)q zi}cI%tMKdgoAEpJhxt?a-|<)TxAhP9f8zhzzt#V%|E~XS0BHbsfMS3}fL}mjKw&^r zz(~Mmz*QhYAbX%}ph=)t;Qhe7z`DSJz}3L>Alx9TsQ6wVp05N;9f7oHSe6y6g4 zC44smh#-sLi%^ZQjR=lNi71WejF^r%jD$zhL<&c0M><7DMLvss8~G`6G4fXwb`*1z zRFqMaXVm?u7f}sSBT-vX*U===JkiS0*3m)HPohhrJENzg4`UE9v@xPFx-l*>F)`UO zH8G!KR%0&j5!~arCx6f4p8vf^_lobe-J86(9}A16i4~63iFJ;RiOr6!iTxbA7JC^- z7{?i>7-tz58231?B(5`VI_@YQ8BZTC9f{7vB&+62BFHbD!)!|9!RlcK5^Y zXWp;6|MC9P{j&#n57-~bKd^Y<{~-Cn>jxbVrXL(7pb{7oBoYi0JQE%y6eKh!d`Z}Q z2zf~LQ0SrdLzjp59_Bo(dpPuP^Wk+OSt5U;dZK+|MB=l=>csxU)x@hLq9pDll_cAw z(4_RF%A}7;%Sq>t@E>tLQha3nDELw8qw+_+j}{-DCgUZuCo3ddCI=;_B)>`SO)BzevTlh>!o|7KS(c3f1f^)ewcyEV9b!pFwOAGNX{tD=+2nW_?3y5$&sm)X_Fb6nVI=E z^K<5U=AWlzPX(T8J#~H>`!w%q)6*|czdwUNqkks(%=nq_vq#TLo^?N)e|DOMm&KW- zoMoF8p7kuNCTlQjD;vnB$`;Pn%l61l$S%rm%bw0YevbW|?YY8p>*pcQGoHVF{`vXF z^P3!s9HAWD9QT|DIWKeCa;9^RbFp*TausrIa>H_;=Dy1v%-zZZ@~HDf^9=I5@)Gl2 z=XK@H=bgSFc)|Tb^@YQW=odLJ8ee>Q@jV}z&zLWrZ=N5RpO#;l-CF;o(b+mn<*kUs}Bkefjid&C8*eJ4MhU zx*~}plOq43l%k5FzM{3F>sJ)7gkR~u@_Lo@s^nGAtEE?$#U#Z7#oEPg#Se;$iaUzu zicen?yykhW{@Uqv?CXNpt*@tFpOoO1aF(c+IF!VcKgPZ=&AhzG-?h@#d%;yPTt3x!k@y zx;(GErF^pdxB|C=vqH7PvEp7ueno4=OvTSi{7RlmjY^lw_{x`+9hLKy=T*d2{8idj z?o|(~URU*0Em!@1Oa4~)t-)KLw~ybJzwLXwQ4LhnR7+HwRtHvRRKKepuHJixc*pck z?w!rMhVP`h zI>|coy5PE}b+vV4b^G<0^=$RZ_4f7m>I>@I>gVdu8i*V2H0U;XH6%B@Y3OU%Y=kt@ zHA**HHik83H8wPkH~whCZQ^cHZ*pmR&{W*i)3nlb-AvUi-fY?&)STH|+dS5M(1O*% z(W2Vo)DquP)Y8?m)bjg1#e1>$Chr5^XS}a@Kl=Wl6|0q_RkhW*^?vKC*6!Ao*6TK^ zHim=zE z>@?`~>rCye?i}g--i6u4(WTnu-1VUAbysiKS~t*5*Dcd+)g95D+x@hsrOB9fA97O_y^_>iXZGh#C~}Bq5H$ihntTyAEiE8 zevJ5-`|FKBXPvf6X`Uv{?`}F#J`cnI<`$qZ>`my`D`!)ML z`XBXI^bhp!eMWs||E&7i<#WR4($AkhZw8wV+7X!%n~~^|f|1UV z<&m3Fx>4Ct+tHZO!qKkLmC@TV`Z2k&yJPppUXJyQt$hK%Fnm$?V*e%X%d0ORzHEGj zer5iu^wsI>gRdoD`@U|EBgfgsRmWY&6UWQP2gbimU`}vNXia!dJehbqF**xvonjD<(So&^_YD;`*wD8_Gk`&PGHVpE@1BIT;tsI+{HY_yu`faeB^w=eAoQy z0=U4qptRt$kg)J(VPN6gBGw|$qRyhvV)|m;;^gA#66uoIlKE1^(u<|erIlrHnQ>WZ z*=hOV@|)$s<^2_$6}}a{75|l|D~&5NE0?R3t5T~rt1+uZs~=Xk)(~s#YZ_~wYfskR zt$khlxlXb!x^BK6zW!ppbA5FKvcbHevf;Y%XrpRlbmPY+;ik~0$!6$g?q>Vu@)o$o zw57b|vX!(|xizx&W1DbWXxn5vY&&neV|!%>vctTivg5Xsyz_SF%g)Iz@vi8u`EJB+ z!EX2N#vXi+eNSW0YcF-LZf|n${2RqLsc$ylV!yrq*7t4iJJxsJ@A}^ZzGr=Z|9$cM z%|64v(!TS4(tg$c*#5}@@qy@p#X;1;%YzRGTZgDau0x$ezr&}8&4=@c*GKe6ibu{z zNk>&jV@D@HNPdX@u>2AIqv*${AG^m`$Gpe-$AQPskK2xyPrwuA6SWhMla!O%lc|%7 zpHx3(f7<_i@U#5q@XsH=h<=IuviKGCtLWFqU%RJRr+lXdr@^N=ryZxOXRtH2GtD!f zvy8K*v$?bDbB1%JbJz37=QZaO=jRtx7cv+27YP>?7o!))mn4_sm)4iDmnD}2m-|=v zS3*~2SCLmQuRdPw{>J{z|J&$y=(=Y#8^{gYjpmKd&C{Efo5fq;mgQFc*6TLow&`}^_V%A~CFm#s=-*I);u!!iiUa_y z5dg@^1prnTbR2=z?E?Db9sz?R;4lONjzA(2C`^1zObiT6Vq83Id@^Ekax!94Qc4;Y zI!Y=gYEn{qZh9tGHV#e>3OXKs9(H~fb`JKxLO>)Ei9T{6!o(zEN4ref|DUhhZh!y< zJOk69AR_=F0HFln?MHy-ZwLbf`Zqx6zb+&SM4-=8VHjw(9zFmE(b_-=pakgnh`jY_Z}Qrkk7;PTnJRXx_Arj!)M@)NE^o^9GLY8W zg|yiPKV)m)pzudd=Phvh+vRkeJEtst>q>uo>UhS7>_XCcIlt_;X4ir4>Oo$3aNz;( zEzsy4n$qe_;dO$golVv>V#s$#YaG$HeB`$eDX5+aw}huy=3iA%hH`9d6zJHsT?o;- z1boIVaTplfv@fLc@J`nl^L=BwggdY=lAHW&xo${XS!bDpIZE?=_`|7fT{&X2*F3h9 zgV%Cxp34#*ERv~T-9oe(3#yR zaJiE$o|rRb6J5C1r=0&Ndv z$!Ap~9$ zo=7)aj>hipwNgfAa+NVIqcSoc$=AL(i|8*}mHaJnMESE)=%R!A;xzW_NO-Ow^(gh6 zTCd2q^c@M@C5^`~DlKjSJUoA8Cd<0w_?9K7yEyltFU>6{2?#&}{Qrj}f;>w&V2Cfx z!n1~=!bxgib9Q0rP&${0u%Fl5`YQLU^TW|8t?&ZvC&iVE5kR#GRr1EXYJ#q`wvy+n z%Zut34UxcVnunG37BVMw{_h16glXnYOCsA`aQg(7m_E3(y(tj8AZMKn5Wq7_;*AgO>4p6T)lSL>Rn}zce#D7 z?)zfTq_VjERn(&+f-_Y1Emg)PZUH{;_-2C&^DE^jJGRluDV-Db?eotY!-a&VtamDQ ze6jE5R<~AY-=peOx7j#me&!MQPW^80aqjm|r&ZYuSsA*PZj@%xmAWPCN4{Ir$3HHN z{tOql4VEyjj}80O`dh9ID=DcZ!(u0^{6s&}ZziV_MJoJ*N~{T^ALQL0pM2l0UHYPV zoS@C;ePDqO{UK`K@NQy_8jS|_t8V&V)@dKOZ-G_D4BbtkwnOcYxTtz28mbmYhv!E~ z2xc#Yao97mdMzn6qMdSFcK|{1WP%5$-@l6RYs9;^@B59-sS3^%nV=w^?^ausMyn=u zTAN#Oq)X2M(~)VaoUG!-*dOFAa3yWGv(?B!q(0;Qe4RDI5W97OB#*Ogf#bz_kE$s% zcEIQ%k4GZxY9^yeTl1Q6b7frc=1$|QV5(Q*x)(MU^vc~eg>p2=Ok$V<>|uz&3m>qARWAt_agdKyKX;gC(G8I zccwL-N2@H2E{7^YptxT37MRLt>=Icv`Igo`?C>ONxS8esR`y_WdQ~Gs$V4g&i#7okN4vSFZ7obGRDQ~KUoZD7Eb#u@LwR0{s+iQ(IC$d z=NoguT3$+aomVxGmTtve(!Kk(P-;0E0W)d6tnw(R{*XAKZr^W9oxRii;6&7ZUL<|x z;NVN}H)Aaa&chI38l&QS#p_MPQRF+niwq5c#t_X!57<=Dlz}I(bfR%im&9BdP;{lO z`#>LS>AF@uCemr4C2mmUVC3bm^@Ylg580MSbXauT;~^Q^_~YT8tWTP&?kTg}sE~OF za~C@=&f}Fdn?^jW7M#hq3zlcTIOCDbb8%ZMudth)qEqg2I64dRn67D~kDNW@6Zgt5 ziz_XE=wPI3(tN$LeioEi>*>Fhx%dR90LuON$@u4ufpmdl{~g*7N1V_3waYekczhO2 zQ<8y0(A*~Td19jIHCC(n{#CNNd4{$wPGgP6OlMKM);iDDki(MsyA>jhTVOs*b{~!L z3avIbj_s<7gxn0a5q-gretkV{1sk6MDHE$d8e7fzrFQPi9^*e9E@cWGO<5QAGv_@# zsK?icjTZ7B8eX=??M^js%-$5*R8+dL-@P-Tu8YLRUJrcdhJ&*;6CM4w*%pz0w?V=w zQP(mgi`1$ld2EsMMRb)mG)4sP)k@Ae=R{TR1O39y1hb)y`tgiGc069|P2XSnCsgq5 zwH^xpZ<#Uz=RtYyl4nzXl5lU`G(GdTk8vw1LhrH_BTdDw?!hW^9=cUC-J6&C)9|Zq z3`?wn*SP2P)#%}7&o??@>@Y@4heGa-MP}E4JvS<9$1}bV*-WyIt*D4MkFq{EB&doM zyc{r;lwU}Fc=t<`Tt-wI4|SfUh-;7eB$u^Gr$L6}w6%1ckHGa;L;tOI-_P54q25D> z?`rHQ)13q#MFfrJYJYIwYa-;oDiDwVCJR?0{Ie46q;|xJ0`wrtw^iuseIaB@k*UXreB;J$Yvn5SEB(P}!zFGX?g>hD=&FrlyCvmH6~`4N(qQSk-hQ-48s)c3y985+@s zbX6~+PdZ~2G}?0Jw97@G|74|ZC7j>vZ3rBp!^`$)GNhZt=fJBWxi9}ZObWfs^!6APkBqn^R@Ga53iHMI+C>>IS%V@T@xp>|lE^db1@ z`+n5j@{P|Yrma00N>*B4l}RH$vE206J+7T5JUElB_DE67;+2`x z04~#kEXmiG!EX*E^z9tIaH6zSDirr56s)^G*c}=Rn$}^QXe)P2>oNrTP0HjVG6&LY zvKsJWWyX!%7uzSy3$uuRDSW>96Yi2(_|kf8)A6cng_3We&~2x=IV020BdBi5uDH0S zNo0P*O=w;8xcR}yw)CBrZPT5&_IczLLtji@`Yj-tE#pGj;zney%_H(mda`SrSNobt zc7s#vB%-p%D>$ODUs$Ac`cBE)vLH)X>e|}k4?+9zb5JEb`$~D>7I^LQ$BBQRj$zm( zLg2e+BlqJU0|E@`{1;>emRGIsG)~{vDp>^4h%0>?QWKuh+3jM{Hk1W!0Y!z?l@`9> zPtR8^QXHEN2b6uE*Sw#67PuhQ{2u&J_+E}6Onf`_ZoqbZ-^NvG(Z|$y(xI|&nk)zL zk*uGF#vWJF)a&X>hEnbI_9&nR9RfKg;J02c)a6|(vf?}4UewT=iCtdOHfynaK$1aT z2udchEcjA}|475_{xuhLDdl|jTX^Rj$`qHS=@b}0tShA*@^xG49&_qQh_3#^$MV9# z43ReV3TlhYH?Za;z{bGG_PPO4;}92M^|da&0jiIr>E3(en+K$qoG`}ee0B>qa*Et z{rfl12I)byyY>X-1UE%W+?3q6bn?>X2?^4Sb8s@hnLdc^ro`ZCFsIUkt)e`H`e*w9 zQxi0V=>4VyPqC4pd;1Y*!H(f48m^F(j28v^%3XY6-=dAaNCVmju@oz!pXiY9?WEx>ZO^N$b=J3hdz)aJ>44r#%EN`FJXh^f65<5w zOG1*QgAaG;I*jwFhuwUwvYLLH67BdFWw0~&Tn=F6^KP20!G%>$j#l6K!}%Qnwzrp$&1!KMe7RA;Tt;Rb_eDbsv%wNTjMg zH+jiw3VO8=u&@xv`^ZE{Z+!VdbDeL2QC!_7QOG>Fch(G{Q&*+m5#K*gRqPHq3tDL$ zGiCV5v03Zz&M|wZ-le0B^lL*(Su^bt(z~oDU?kT|ARgjjyX0VX>d&o`bH*L~ceg1L zu~6$prS>g)8C|Tzs86JN#}~)-@5WL`F>mwPp)8@g%72q*vZMGbw-B?~>pQ)tfi2oU zR|{|OTzHNwBTMf1FcUMe=J018eYpF>H6hb*%}Be$c7Zy3kD}`i7W+ao|G%v8otd}) zVTD)!VTB2<-u|Xbo|}<4t>W$Kj0_>mAE|H1GMeJwcTat_QhU*nZy(7=(&{X_>m_0q zx*aneneyke`O=Z}y~|&i&-q8nu2SR$f4ke6y`2!~Qgo~P&@XsXzbTu8CE3wmLnru| zE6TfHV2NYGBN_Ya$Ccu?J>$A3h58I`K%`Dj@!30cfR}@X{C#cii8}UT*NnO*`Adz5 zXV60r)dS8-_tE0TAjr=h=8dw3?u}m>(zk$6xc70`Wgu;<_PdeJ$|(kE1KF&El@Y4b zIVXbfY6V96-iA)?R=eNX+N9>u@$P$be^ihuzI`#H1bbqEKWL{&E+yB4|Gbk~ZHr~$ zfyrwAWR5boqJ}DVSmvJ{)wP^kh*gWU=8}zZ6O2(Ljg@7_9w5`#LL9!^xX7jpTp8a2 z%~nCbE6$%LlwmD-K5u;Fbr3idMTK_EELwj%TDW`HM(Qf|0!xD9*H!`6?tCH6vHSlYko+R+(g?ANs~(bOo6NV9(qw_9h0>s z_{i^=m2IwLX=&@>jc8xYs_sQ@WpB;0nG#i}U@h{5=+}**ahOG@?P^8#RaV63qd(f2 zw}AM=AL4E@CNZybZFhHX0jlZmo1t>`j=$4nAAgv+#I-PemV`7Y7oooeB8va`nETxV z!-dypHZgs*7NQ1&9Xx$3kI^m-D%@orYPM|>wo!JcrtOep1Kd%4$hUO z2b-onnqu@NH=X7wgNa%mahhFNNFi1WlWfj%zioSkkL{B#JlPo2pE7RZD83TXUU&N@ zinADzb!@sh;v8jIs2Esg zig9r!)mYBffqvv-*y|aZ5ZT>F3sFP6Cq>tUQ@4Ob*&p|uGgH372i@6Cpm)219e`Nop<)4Md6>j4pS6p1C$UNY6x_sEp@k>E-C zWY;2~ijH3Jg)THum_e`^yLi`BX^1 zw`t8DPE0m<^)EkY@VBxh*w=}WAQ|;%6Y1VCnT!bm@;pwe6Sj_)J|z8a$cybapN67#w+Ao3?Erl+p=bKs#5S#XrkB zYwqqpG%azkG1#gOe~-(c^_y1WVzWy+Px@fC>B(zCRY9rl(LQUyqmGUb; z+pQ02o639pFLNXZ_$rlz(3bHPS$iz{12sadvzD6pAC{4H307JkdX#zE16$n`Zb}JGftZ39p`IA{-bQ z*El3!cL@=@z$;YNB4?dA{#iObGi2&a_Gn3v>KADqw^Tq^-ew4^!st=hK631(DHCPQ zM!5X_G3JRo|6$dD$lR~LO~01THc7_L=E-|klw=hBmMASB7flJdD2TkbFUhCNTEG5Y zN$*pds=PHZFYl9#VKEEcsMv3HCt-rQ%d(B(rk`|$UGxtnVna7FQ*ysT6HAI$eyWxp zkrigkH3)~wMpz5p0`}%zRky%gWOkI;MCe=LIz^}YBy;FuFY`9aZQ(SlDsn$C@vR4^ zj(EYgQ8_797iy(?h-=&*?KR&auIpXjb;=N>RjU0|w%Hb)Z+`RM_&T7={qn2IE7h;R zzKxv@zWbj4+XTnUoQkqF1J6h5Xug#|=Or2Y>kJA@WWHt> z%pzHdSC;dTCwVqAJW$L74%AcT*XW#Qsz%1@cVELG2IiN#py?ON8W zFshjcCxkL?G}c<4*eRvK{DB^h^mxA3>}C49&Z?cN*`Lp)cPd|~vn|&o# zqP2f_clz_H3{`bG?WK(^*W!6WwI6d~crWX#|HDU3Dq^lQ4pUO9t@Er)dP6>k{yX_U RKl=C|o|ycPtKr?w{V$gc2Au!^ diff --git a/docs/zondax_dark.png b/docs/zondax_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..a6c22dfbf40721b0408f296f61647e370c5a2a34 GIT binary patch literal 83636 zcmZ6ybySpX_XUhT@JJ{~i_+alH%K$oNH-%T(j5Z~DBayD-5{YfDBU9=-3*M>07DEg z#K*h7@AvBau@;Lp^9SqfbDwKp`|NY>$hR6w&v0MjVqjoA11QUDVPIfwV_-aT!2b8) z8(F=nKM- z4`yz3gAE_0YN_e(DsUhqbvnINGN%kxdLOAQ2|ruB7-3mzY?6b<`>VXl^;6B!=rlig zd+TGfHaoE`aAdIf-XlvoRxRHU==9<9r9T5v)mKM_5yhO@{pc1{dX8tZwsbRiA^`y~~)zrfIj!6E|Dr9TPdGgU^ zzO>KvB`5Ox;woC~2g<2N-v&{6;yXok=~z(*516(*amSzX6R2x<1M#n|cHIRA%8TzD zf^IiYJbERMu@*C2Z?!uI@=vKmR?7<4BBzt`R|0O010SBt|NXoZ_6J|Lsw~>TEfrww zLle@=SgzXF8A`5cvM*rgkjC7QFI76S1>6%o^;HpGIlC>;zR=Za0F#`g-gKq*9p*tDO`fKYA)BXrizSrsx|JB8SS&~MTiAf_C z@~_$yaN-F6p8);5HaJx zR^Hp{0Cp#YtaaXAPhedUWYGfWG%*RI#7O)$3Q2^T-lcVupWcG>w^xh%>InZYDHs^@ zq;>3f?2H z8oS16{b)UL#e)lg--SHE<@mzB-56@b)jdkl6vwN4=af!9C zT#>?Cg(<^U`=oNVt9XzsBw@m#dQlpoo@JKLG88{os1Xn?l9uc3G6LNJn_^ zyypN1Dp05T^5P=a*=#y4lM1OVZAix{f5GZl9Va&B=?-$~YPSXp@4cn|lZ7t~@8vFs zO=?YYj}SX*7Kz|Drh4O#r#U&bTRIeajuA^s*M@#Kughcf~kK?R$KMe3P@1lKDmHQ@{cL#O!qfe)~ti%6!Y}-Pf6)s}Jc@6dx5o z9*XR2_+iF$?B2xyzL=%Myz0K&Ca@-hky6ycISU8bi&yO-JFlW7({n5>Q9*Bczo9*U z;9=!ei;&;8dEKLNI{nbs!ZcHHSB(#chRO~fJkifpYA&x_Q~aD1?(bx@_O9#R9nHU@ zef9WHTF55=?m$%ADjFXBuDzCgqVpkrorrg8g5f(n4--%-v&JRc*L()!# zSSOqVcv{<%$ul@DS97Y#T#56WBQ~#oE9mSuH2pL(>-5RS=HePJFjnk%nn@&eG=`-~ z=(VvpQKKUut3yDT+ELesbrT^-G0~3>j?gw`;G9&Ik;LgKv{&YwCf$^W1e@@$v$Og= z1(I)ViMT2*;(Pl)m$?H8JJ zE_2wz?Bx2DxHe*sX`2w7{EIfvnO|ZxJCLPs)2Rx?xp*hdEjvS|sWTeBSA<5ge!R3f z!Ea!s1uR@ribroX%6laA@mhaCWvC^Uu#r`&OSeaSO&wi{khEvz^F0XV|H#T3X`=_$-aMgIfG8o zXMXpGbcY!`3Hez&rIO^sSga@LHAHr6O-+WfSr{c^ayvcaoNX``^AC0}Wdb^!W-sj4 zPXv;i z>H7GtpuQE)D2_L$dv~(6%40sB$WYF*=zXu>THy!Dc#RLrY)f8uu0dSTzm5Wx#kZjW z=dj$0AI=A!wo70cqlN6{#l&HyH?UNzmhj=Ops#_5x{*Ig_=r~)jRbUfZFolbxDI}U zp=9&9A8TWymUDk@T3F=NiaEJ`chZ1NcPa)A4=KdeSdsg^OHfCS^EDG;k?w(!Lmy@#L(-z*b$>s} zJ&Ot!8;4$rz4da5&Zo>|WtzFl*br9KI^)nis@bXgdNu&-O0?nq9*eU8KvRbULcB(c z$csmR-1kkI`ui)a5HM)Z|=C$YaGL+Mfds$ zybbfi#erEIhdB82?(tg_McTLiv(>0jx!j_)bBP;&c|8Rs_g1uF36$SU#ss*j0gv7W91Ec=l+#<;h;BC7MUWXURLxq~Q*_G|*p}ZnkiW zHceQomkS_*l|jK_qgL$I4gg|^F>d` z*UA)Cr731=jTsiw1hJ%`Uhol0gD4T6JHYE-uL~)U3CqB|3Y-U9sguJR<)o;a4$tnK zT{`F4ESh{;-Oa=;qDDp-7(@Qx{yuT+5TZHed9u>aL~hl)QdPUl%^do6pSbedeQrjB zf%8$iHP5pZS(K&Ja8@zo3DIz!?9N)NYD?qagqn#* zSOnS4!Yn#t@*zeZ)cyC%MqUVbiBFxyJ4u4H`BHgo*E~!;5yLME9-Gh-uNN99ozL}N z{2Q|qpE8m4(;qO{Nijs%sD|kROEYE!?KfQ=fBO6=eN4c^ZNd#b^R-Jp;C|McO!{c6t?x%)40)Tx+Jimw_hmK(wlytD;3xRpgzATs1Htem;fXZSil}I3E2M z_s3jUBiy_g4P8|xn{+kSh%E(%9eF$cj#D7tLcLFqGbN9FHxYaGdf{zb1ocU~{ zDv3LBp$oPX09N5xm46fc)g?UWrghd$6kg2YMLO)l($aqUs|+^WrUF#ae!;H|)9O|4 zO>&^K+~4Bs)ipR;_ZnY})DwtXev98wc}J#iFJ95xtyVa47gxP^r5D4Rug#dBN|Rpw z{awC-bl3o8q&kuBX30ki_1Dd(RHI7wHwF|)62zWKF>Sk`(P?JdXg@etKZSALX3jI; zpoxc#0(oVzZBjeD%pV_&+PZ>BeJ`#Zrvs505r*p3S~m2z-lQt_!Td&W^~};Os%Cf5 zTb&Bfs^0Va^4v(Qs|rsL%~y4xH7i#L6rcl1k0u zJ${lsqdOs7yO1QAnEF+&e6FgXgP#Y;@I1q!%+)lTdKsmAgwx4x^oZ%)Jg_V+FUnw< z66ps`$j7|eWms#1ch(gqd;p2dUadZD+Lr#*D!DjQ`29l$t+7^t_U|ne_8;)v@$@6f zZ8@>E+WgkqEb$27IBq)QdOR3zs-H%07dyyQ_~TX`AW-IJrh|($I`ncppCvvuVID}9 zVJWL1ZWDQGzDD(n@yH{<&^et%eE2oC>3YAhq;1m{^*j3K`{)O8k zRvcvO%IIE&Pmg8}a*{sa@$R)$eIIF|72W(1{1h!94kMr+G7i4Hg;tK&#V}^vS7EUv zEpmAgr>CZCb=9y!QSvbHh{_4Onxy>ku&iN)fWZO2(0H*;7kc$h$g#;)^k>rwZRS8iByk zRJ9aDhIVLp{|pw|dk9K_bhBKeNy>5vI5x=C_IG|>vT0Dw-6b_W61O?Z&Xd29)F;Su zvI&p;1OI!M$ghJF7nx)w(A!9z*Uwhuix9s}aO2uQ(1!X;BJ#xOE#Z#ux4W(6*aAlV zSOJ8MHEr|U00Of)@kW=N^hw$rUefT6Hr@6j5zH1&A9v(P*yj;C#3?}I+bH9ZYc1vP zYZLFa#IdqpF2T6Ea2^7~GhKhqQQs%4 zR9p=MgYW&-z5pl=H%>!Tl+WzRy;ytA{P)tGvvN|v=ifD{N9q+S=BJN-+=|1pX#-2M zSuCgM4&9_wrVA0D~t> zdqJZHS3ikq-%2rT=S7C*hf3~!cO&MM&@0Z}I15+OPrcUM>~G$i*2|X_$9UATWcRle zc0flN+|1Mlo`OxMu0GH)kn$T$aFP^4yyhF?goo%`tjYph`|!BVeJ%ziY-_vi1^;~o zd52eSAIfXUS`u#}U^01XI)7}4UURP(6?SiOe@Ij~5p1crwkAUx`QzxJlbTTf2a(%7 zV_72g)opS;=P3Db>L3gxNxdLAoRn7vp<$FWGqQ?>`4xF2o578)M^fu_#*+KVmO5_&Go}t1sOAPML84LAx<>8PdpgYsIWL~g zFVdrPE4rjLvP$Ioyr!3C3;9&T3copD8y~3a53vR^>)m_DuSX8s zLu*=I?+njth-5JZ<`L&Bhrd#;4E4!gEN)H8IZO$io6+aPUZ2$wjU9~bTGgwk*1Ujf zi%I?R9{0?hwTjCH|M-+Fwk+JT^^f%skmf$DftFi9Wi@o$QzP-#S^03w?TEKblff0@ zvZ_~^?Z>sl7I}R{#UYmm2tx;UlrTaD&%LJWvNpsWcsJa9hmO#`FLjQJBC4Nntt@Fg z&P4tJ?YE_aDQYuhLvSeWr(hkkeSG7MrkGiKUE;<`y;8C}iTR}=rbg#WQ$p4Y5GI)a zJF{b;uG}2-ccldU)UZ~#n}g82fJTFC-$o(NSLjwk>!U15EYvPv$70RI`?m#cMQAq; zTGWeyT<^v+{Z0h(^5QfTMJBev`J09AHD7eYromEzC?zUOm%EW2QVcN7mXl(}6LkHR zU-xd#4S`my%h!RU7r)7STI^`OFvtCo;f}-7uf=u2?(K2+8|@cg%`3C|!9m4j+5M|hpYqctS~b+ae#y=;_~tfD4g6ooA3G;W^BJ#CqNJ=w)z9)kEOc}F z9*3qqmUSBYnoqs&T}b1rUaz1GVRCHz^xUcau2a)zVNstijF##0v3C2*;3C{IodT5tWu^LMHL zin~W{hKGD_pHejKOHX;b`fH$De5$xMiw;z)xR0{FWkt1KG%DdG@-$vZmrXLA`mvD> z%9~aBjO(jKv8H=)3*?xPrl4qeNfHIaR-RNSXLQ>i{L7On!oFmcF``f5%6bc_he<(E z=523!6r_Xy27T)~QmaPnFxnT)%`%wmYDj*dof16Q5K(mnI8|p};cgq%GR#ML@39o0 za<)x<{dO(u@a;Bx*VKbNr{TCNcH!_ye!<51Yj6j&+KZX4ll=?bW^`8iX=c5+>vW#A zL|ks`PWx#mQ}~Ndw7T3)KFR)eI}H;G!9FpmYQ@$ri5wgbe6y6D`j_!&3K~HLTaNCdZ>z{BPojyc{5)X@YueN2brG{L@zUR zPZv&E_#N{EH`TRi#~qFF8J>wCBPs?h|B|Jqll85@y$kLR)O~)&6I7D{!+tp92n{{uWtaYmV?>g>X-CE;oNktR*c5aD zVyPij$*)h*n2*<;oALT}0Xz})R?43F+Q-YL)|4hzbfyCAf~))(Sbe4V<#_XDLCcU< zo_{yx7Bf2o4Xf_db=3-L?jS*$CA=eEN*UEz&!?lTmGU-MCwqECg?aFUi{|Nco-XlNTT=8`nKogay4X$| zueEdQLR@2O?sV&ty?83GS7?KQBqBUb*2Iix0_N`TRA=^r+yM~HepL}^OMIPcNWPNd~}x@ljL$Nr-*Oe-4SKQ;tfX`w;KjQH_6^( z;KQrC)6v> zc};IM^p+0rf#TN}pH)m2_jl8q^IZ_^Zkohx6C95$lJ zXOL~S#DS)#JC(r#DvBr(wj~Lhg-p&r2cHyup-TPg$r?onS#p8z zcp;%yDqFPlqwCB&q~~9v!%rLAEk$8h%%Fc|`*Wm-A$m)Y9P-cJ?{wrt3cVYTSNlaKOxR)iRlKU*lt(0sd`nxQ)I$>7M<*)uCj_ zTY?wl=L^>WmywLPct`EBtQi&^ETk_!5!`-LY_68qHBYg*_B^=l$em=gM_nT73^C;N z_~?j|U2c`hfWBM)L(OvywXPxa*P3iTlhykiXZ8 zWXkyoB*fuQUYp3uuxogNitOT0eLfkVQ%wpi2#M)BSWc$Qb?Hk6cj{B3m zewGD|(_hnOT@O-~*_{(8fzc7c02`6`r^;~p;mB++2AvCC6^y&((6t|5?d7PWz5_Sn zgtNKzW#*JP$7&&!uF?RHQbxpV3k|W)T3b=>G$vRhIW$SW@tTOx%!zFgZkQ9_eEpse z`w%?sZup#mgVl7fLb_z{M&W~01g*3@U&PV>%*X@?|)19+S##L1ntBHLYXmAHr zh7X-CwX@b7-+j+hKlkHJEoH}HfvDOpe@^$ySt6{w79Je|se03siU5+idyBwZ*ago} z+0e^6jdOBHT)09(e41{*TX$*N*=WEvb%DS7Pn8XIIeRh&?>&gUl2gzPaP<ebM66%W7|gyzs}tMzS4|~^Zt~O?7`DtNDVLFYvC*$@$8v@ z9%E|?D}m*GBdzINe%q~Q@#S#zYMDwkfgoI>j1XrvQh-dbvOGIfAGBW8f8JvY(sM96 zSgJ*HpCNsKHEtir?hO<2uZKg9>65f4JP3RnD}kmxHQXnmvPoUuWXHbQ@XoVB6w(XJj*ncT6^tKKoJ9&#z((}Bnw^8r9OhCUjHeusEmea*P&jnU=Rd{jiq`%=# zc`1`8dGZZV7BTQeT=llPLJskdVb!{s;>gv*P9mA!Xb8Ob+Gb=TP$ge@f@jhE&QS3) ziKdXocY2SI ze0e0T(zOTHoltmbM!8gLNMVsR0;XhYP{d=Q9^O`n{V;dJAv1D2+#0b7VpRk8=$}A# zHuZ+H8pAfARc9E0n_S0_bT-%td*= z@b4I#ZRqXo-Mqu~drHrZ^pf9k;8z;p6~u&oxV;~g5+2~-2H>t(5Xcb@kIj3ypaSj$ zO+6@zw(=I62mr)&X+E@bR*ncmLu#IyDnWc2r}e|M&^PP~1RyA8k6FsP`AXMKN{AA` z(SkYvf|3)LR2EN{83=zi8L4^4wlW8LvLQkF>PNY>-? zqoFjqhsycy(fy7Pt>DjYFmU>2PrkR}sdAf3w8p!R|IRpDHnoiLn)q3*f7&!XUYNoZ zIJJ4|BD(M+u7%-@iL|aK%rCKkW*W17TQL{|zQ2w0p|i$nX20RI8z*!pEnZf(cox33 zErU~U`D`%3O>FpZHLy_V^JZI{S7c2s{Vo5J&F6llVx5EsCzGe!6aCe>TS=TnX%@CQ zaC6h9-R|UHioc3mX=4}FOY zc>5uh4i=)3oc8$Kuu*y$7G^K1>++%7DdA^xT^wn82NA;x5CR$v+*8J(ZqJALm;V-h z6?Zyg+rOK<8x^aB#AN&BPuU=Bef_#Mh~1`GE?^b-5liiFfgn2TR8%^={T2@?9hhys z$3i}7s+GQ~BUivE{65MVnUoBuN|q`%_5NDlw!+G@n2|GP*#KjmLp z3E#B*>Uq3*DNG~LDmI*+rxqJv9YmSl5na;ZT=Z1!i{Rw4!uK;XFP-$5eMTg{tRJPN z* z`}+GDgrexkANyEOQsDp9E)_k}ykl~e#6jK*;2@Koyge;YP%rZ@ksED46)w#EG%Os2 z4oh!*c!`_wzJZq*A1^h$bD4#^zjGftdJs6t1OZn<(^o?6lhWLhQslC;q3&j+KO57e zF3dX$-@1UgxLFu?V2RyJfnomSFfgaT!RWRKtp~&y#6Wy9J0lvPe3f`w`RhRHRgi+}wCu!K8l)FmjU|MtU zx2{XZ+N28v`seL?88f$ky+FHi*S|%AZX#i6jHH4|v>a7!{-hwTIf%(u`)=K8DlD++ z5DbfyyNGTUxSkPoGn3YQ;TwlFrABwycAiLk`Z3;RsQqIgf_Ojflx^Os&XOrw8%u#a z(H33*EHMRFUyLwXz~XPdSHdd1Ay;!B%AYVzaIQ1`{7iS1zf`i8Q4;pqJ{cRlft~i; z(e$kifLFLff}g?+;At7{uMB0Dxyz>-q|4uF`*Mn;XF|~N#TQ?h!blY* z{*@g3rM#*_qkjCAMKrsg9a zX0_%1*rAyt*U4W3OGlGsHS*uWHSh@ydz+=M<+KPHBqxM}=Wjnx%B)Ir1o?sL)q2E% zBunlkXNTqB1ui}07P#c-+LVnYN{0M4@}?iyb;lDR|KC_K*1vpbyT@{M4C?TZ>6$KS zT`(U98bi zhob4r%p+oLTujtm(-tFU_U#22vbHp~m~vjw!2+%B(mNkfGeC(`x&&8nLu$~MI2yJ^=b zk@U@DCjCbqZSb-!clVDH~5Cvj@ZH;`-TqmglSfPvaBQHxmW!fiL*O`Dvfdhk3%x`ZlC)AkZ_+1 zNC@1I^BUnC%Fkaxz8>Bik*_Ah=##4FU0@A`)AaWFtF)e4e)R8Tnr6kBwGHSLde^Bh z^Z^YyOP-?}`scp|`w^q?2CoMbY?mk~pvImV+Qo>m6KQxTC_Ohk3g}Gr85;MMP5+u<27P@|_L5(Y9(k+v=<=XYS0*F5B##3+*MMpo8ydzNtOv}~c|U0}6e1e~AV z41<=PzOD~lXki&Kd3$);E2q9U!oJKbv-*Uv8V5O(&&@Xu`6Tp69R7Y^f0d|Q7J5-aRoN1+#w}eA0X0ATDBK+ zBu9}8_KMGU9FMo!d*SM-%wMZg%XsovP#O23`<-P>a4Vk-w9h9U-BM~SkMLBm_Jmv6OHqqeJ@a6|0ZPVo5KugnO*B8&j^20Pmva+|cdd~|X`fBy` z#**NmvKyy|?iLz!J3LE=1Sm35>7zWF(L*nZVN8p|gX}T?kcWwsdo&KK9PQdo9q|kw zF`r1D$JYL^cET_tvn~b}S2t&;Z9O;qQ=b@8|1uwEX7IyoiC|C6o{bO6&%<2YEWoplSIeEUSe~TyKh*>GEu)(ZBE~> z43Q=&xK$C9-bH@Ssy;2f)`)IMU@}~3fv)&&hd#< z_-8i!qDP55W!PK4=DhwB3}9y2-Su9&rD>AOT2j-dBgeC-HN%acw2k_&ojeTaBaJKQ z_wIUtX^GOTj?Eb-?nO?PVKRu&fl1O_y z5p=UA1$HNb1@5J{MD7ifLJc{A6n6_}2=9@r9KF(xod!(X%}(4?&XhepBI2_>MEb;4 zKl&PjN`=TGJh$-pauiyXSOYe3h-U=Xygs>bM?UQaH-s+eQ74B*ilT0bZI zHpx-19QJ`F_x=}pUc(|Fm**qtHRHI;-xLOXnuE*_VjuEuTM~`-*LpgeBIqtenr^+^ z3`qDU$>R4#ol>hHAsB}m4}7)eb`qq44+>1L4uBwy{6O<+<-5Qb z$YjUag$tr96#u^Y&<-KJ;B;V1wsneA(mQx6oXmDg zSUDIK=2YE4Q#WLGu5K6v-2UXZp-DaSsu)QuB%~|%u9Qgi1oE^wPPqU@Jceb`V_1q% z^H(Wg(Q~p^n3;*8_Ia{gmsN733d(cEL#1@zMyhz4aVYR`>1a~JHN4}eeSfA@z^iBG zNIm=wBI2f@^)f9SZCx`rFaJfF1u4I##0L|6=i}Vf%YkQ2-O#h&EYAM$u)iqylH^Uw zJtj$b2je4Wm!ah0P>0NUTjWnhD6?i4_7xtlNT*kUe)+&=xl88C@>Na-P${a~7XNC_ z!O$)bZjszCg(pV(ro_WDR-vvoO9UW*tUecXt0^&UDhOGw`}OPUKa`D`$} zg1pMjxb$2h0_trmCvy;>sq~vIV!1L17+!*`ie7~EM47z}0+{|$+}~|5PXuXt=^GUL z=SpZF2K4{c~Vk`uw&C99cD^^{9Rrk2Bk- z_+E9&=a=+lH5C*OWv&Xd7{3-NRW(UOBpp>?eh5m;Xj!g(dU*OEV*~9ekjN}$tyLyC zUZUzAIFXc>ui+wS_(+;2HQ|VKpKM>H)MGH|S=pEH>pVwqX8GAa8T<%+Dt`t4NpBzE zjvs!LH6k8W*N8|b5>i{Xr|%MPX5$;E`uRc@BBe)u;U}Pe8P>nD%vj{t0^IX`*m88X zg~NujE*3XG>@+#!uXq=$4OO1V$^kFZQaidr8nf&+LRb|@Lha4ORkc8kAUvC^7A z_=}?i=|Ga?Hs2+1?;QRYtz;ayUip+JyKU|}>bA{b?G|~peicuvkfXutFtcuvHA!1Tzj0r(`5-u@D&c_^#a+uN-$p4)t6r3jKHl-anW?$`Xy*;eottp2UQ zP*)f&STlSl)bc4(@^L6R$GE6`pmgfMY8Eal+H2_a>OcR1@6+DM$otPc?hGCs!|B<- zhf=Ocr?2yd6{UT+zB7c7kz*@_sV{$Y)YAXE!C60jTy}%2o^W3lc!Nv^DBUY^3Wi^U z11P5fjN*1H{S$ICfQ8KfnY_w(4zlzmg&##D$Z?B@%<1io!fuM~yP10#3oO^<`BkHS z11&f_A9c-0cF@f4bL61(71fLXF>+DKGSG=~l%ji3LopZmbb)%|9ptZ@1~i{UW>|Jw z329~u7%rc4+uDCK{^8uR*nDdXQa!s%dC_3e`(jgmq^L_Q|9@l{`QseqKWo{TSJTq| zySt1towkW&;FrIqjZB_BLzopth!=Qz`zL=Awe3x;lCh#UA8s!=Is8dAj*h8c#-2+Knl_c!q%C;CD$*oxjEL17-8GT1`s185*+OXYeg4UM>V zj_yv2_@V z-owZ~@VVVh#=D|hRdCnGoKTJGpc_p}q#-3rD0VY-_n@{Jj;^c|i1~N&@Yk(|C@Rop zo<}jG99KH(*vuf(NR{T0{_$Tn7=};5>ra`?57LJQ2-N6vUgY!EOjpJug|gv*MRVj2 zj}TVCe=ilx!fS`At7Q73so6H`6+v?mu?*Hj(1&T^0!+vEy@SxJ*0*yiM|Cx8c|K1G zpT%n_N>?8Wrwv`l{vr=h_Q#O9Q-!l=qq_%0IT7%hwy(6Hj%#8R=wwII+{C zfe$tU=tpv^4<5#MH0XdRWfP=N8(C&3k@9&PW-tA1{mPb|2+0MXN`Efs)g6N$#HG)t z!VVeRkxb7l2vwfM#X>RvR*?R5uc>k#cGU>f6VinTBMlmZb3eE=kmqVj$;dH3aUmqF z5II~RNTTX(LKLU(z*YjA!W3q)Pml6--cpUvl0v*|z157*1D<*d5Qx7haws%Qy3W^A zWG?;x%!b1?Iw1RyHoKCm-D&+5zZoB1>IJKjC&CZw z*J5K9XK`g1BCYuCuaT%M@93 z+)m$f&TfyXerycyl!Q63sA)Wi%`YrI~-naQW$R`^a=*1Dvnly8K#wRjpgIBWxrY7Cdn zrr249|0AFY|9;3=uJe~!c@LBPt1#RUPP!>(_pfj*;tGRTt}n$tG1^Qf2paX4m;ex~ z)cc9SLIUj8Oson$*Ht}R5A9clZlHAZ@+reFrB@5z#ZD?ctmkJbc0Q2Cm+oo`C#@A~ zzB}swxHmMB+#ki!U36Fdh!cuWKctO~G^GOJB2DtD1nT;ED6%1+IC(yHwC9NERx)cf z*8@H(jGRw1dxp{y{5j!WAMn{mp!ipTms8prK^@_0`~*9wu9l3lWXr{XV$pSobfJBu zSVJTK{O_K3 zyMD$hyeI8-9U1e#^ec;qk;+fHr^CiY##LS3|Id}1-m@Wpbp*D01}WkpjHTA66Sf}m zu7^aV@Gc3u|Bg?op6AeT(&TCx{b9cG>`BK}V>^SNXzPbS)N2Z4@=tV3`SuN{wXk-= zJC9*eNzFHY1fU_oJDI~|$3temRp{7*%V}m}{t~IfxN1zvl0Ws}-@}nt><#^L4&F05RE{~T`sC;y_Q18i&u!2AW+k`~F%oZsroTsdh?r`|yFQl* zu#2o4J7sMOwe1^R;9Hu0mZZvJRl<7L!c(y59E}4KtQ%%P@TNzO5BH`YvdDIMes1&2^2u0sM(`V!D|gmKC4dmQ^sL=u{3(3yRx`CtZbd?-Kvpzn!sDo&Bs46V)#T- zGIy0eSj2BcY=-Q0o^dJs;H?ZBY!>wP_n2Uj>7t?SEQ@F3mkS#r@zZ4&$sU{ zgYVBz4ie&TcDGgB4X$2*3N`i(lp;xdN?{+$55jKr>Xx z!>_HiN5or}A#%AU=iubMiG7#L-CoaJZ%R=PwPDNgs}_edj>)OUg5MA3E=aQI`B>@` z;4`tj&0U9j_yQFi(gkFpg>wI@+@T~#ZdegJU6vE7ZZSBT>Y^<1FWFmsIbH-qjGa(~%_ z>!kJeW&Z9%K;IQlzdZR17k&5gt%9K{(M9)-PcoD)&Q(sq?W+{J)W_Nf27hePSD!^N8kGkTFlw)p1HTEi96#>pt4>qfM zLbEx|VQ%U-D#hS=iT3>>Z3{^wuJ1!5V!rVuTj#nZi12CfK>rzHYp&Z}{jX!wVd2F# za$m1FTdvHpBAt!-iyp}YaVGpx@WAE1bTd2W4auwNEGGsl-M*I{_ab3ZxtLeZD?caL zf^O)qLri~58rJlz?QPe|9Ou?RXg@p z!8RqFw6uxls_%UbjgihsM53-+eI==Z2kJB!`cs@n-GI1+@nHsnEt!0e+7hPyzn1@7 z?^*MxcyZBy@OPfftF(vkAB+h#@gkd{Q_uAEid)sWfBJ1SkH%{E65H0*UDEfGF77q% zMRV0C-!F04hzs+CynD8{&Pky!(-oC6==Pt*Ts08gFKv4?fVUmp05fu~@f<02Fjfwp z$P-w5xMsHf0OY-rF@#)grsA2668<*>&0ai1%{`HQ&qMotZ>1XjK0$OoHGc(08KcWI zF0x?Y6(_Pe&*BjSdULi=&b8$zQ7~xwezgPh)vad*o~V2d!ZD=SJx$KQ#8P$!4)OOr~Qeq4U=nM+Z0q8uPOm!(5`xXaP@>W zh}EJFJ9-zzE?9U7t zWBz43;r2bF`rgY45ALA6$WH2Lu4qhRUHb(O1$^@i2s9eNPCl_hU1lDw_T8Iet?IEq zt4x=|Y}2r;sfX|r@n0e|JDleOZd#Ih2Q^b*-M3I;)P-1t#!qp5jUg6x>$$+`1RTH4 zr_E&#bKg8Vo{BdOFS_0!44cUg5MI9q&jT&d<41;^(q-AMt3b9vpL+Xx$XalM=vHf9 zniwn)dENX!P1Sfkp5|SAGVNMP*Ma<8=w8=0Nvin-2%K!1}*&ZQPFNx?eHJv+@utsDn9ulbeig2k; znfe#)Y3RF9Zr8z1r#{TTJCk`%a-NZgVuVXo*r&Qrb7U{`yYUa@{$!@j8e(BWujC?E z92||qgBMrYxCQJH{t+l9NAc|?iMIdmj+MJp<9gUwoz=ZHZ9t4ij}hs=x73t>>}n?M zY=@2kNH0Y5osKg03**eGKH@&O5Qc*F=D|d(5IiJAOTTS|_stkxfRcs3vs`?(>!4U@ zfz+((TtJ}BMjmK)khMGkK8C(!P1*VP3)&z(ch~gqX8YZ!NfYZ)qF@2tHSviOI~}s| zx6`9n!7o~lPb+~^%pT(d*8-Z=T?khixF}I*(mOW5yS&rwZ3&!?wYGv>%b*9^uDW|z z9y3NPtbwaoKU>YGyi=h{tzNcS`H2aBMM@YIxR}l{iq6Oii+C@msrz#^ee2{2&8(6c0XIc!%q{kbfgzX1u>L_~2+|{Y7;1ugN+7 zBWWoO`CF>B#fCqZs}lX}-N?4o=_%nt^m%?Vb>ohGtC^+Vr(d#)Ia+y7%^??%$Jz8^ zLfmX9BZ_ghv|i&Z`nHcXw1ZqrTo9Vv9agod7d;GdwD+@?viJVzPGv|4g|;JjvS(74 z>DJzL=MBd3%dFsX2<`G}c25?*QRpg&mjnFDxXL6onktGsX)T|!=k;uoThlfX{{MR! zL@mmiUE;89u^y{sG4*|w!uK8C@R}B}?AdB3M{cN!gc4}p`-elaaTt0rWTb&b_r{z1 z_$BucQ1+Ojarz3H={s z*h0dsk#e8heFqAhr$X*Hr_uW>QGaU*$Y#bpBrs`OdF1+}77!8rf`pgY*&BiDKI<_K z0+rmJe!>LP=g<6l$s7N^{1XeTM~o+mPPY$5_pAh)7=M4>(aT7iM0NAs-onmJj)G;} zwHKNk_E70*ip9z5PLxM)jV4OUw^3Td?pjv!y(67)HbFj;VMg+W;v0i>jk$3&eC;+o z{IAyvzK6PK7T$DUtq1zqOzj5z%*$47PB57s2C2Howb$jFwBc!uMYc7=?~R|TOgpmS zM6qw?DVqSv;^o=eC1W1^p3C7GcKzV<)|WF(;q&sm3bGF8-oyFf$ce1?Q{J5t@eUUg z;=2Ke)p$NsWlC_p!Y*YWowO3(Gc0^SyzBi;iC1h{^K^3SlOp;w6qN2<$)v-vQc1a2 z^IA|Qsg`_L7;&~KdDR){|9>yJUOVS^0RB|(JAIQF*89O^+CZXKI*k(w2i)rp`8n7m zg>y7p*&=8EGPgiphQYu#p*Arc_2K2Npyq5~zollJPz8q|T#%&(Eub$bLas^Q-Vxo> z_?AP?at}?H!@{fg;H`!9JwH99V zS^eN;x*S|9+W_-`i?g+b317kqzCadCo*wL9_B9yZqU^>vhwc&5U0>~G?)1BT!ePyU z8vhf22Mb0idZTV(R8Rp0 zDUt3j=?00B5=rTh5)kQ*0VSlQQ&JiP>F$&gkQ{mh28J49h#_ab<9pwGe}3mLI8W_o z@3q%j&q0gL0Li2!QWN@MkXB4lQ3re(k<|LR#HiuGy&{cmDZ~eP{nLSb>;1tjSyV3Yb>&bVC1<~?7tC$S za~f9plrPD{!)Ob_{D3d~i4@*N{*v2*(u!W4xEIe6rL;nhFkTpU%)1#&u3aP9B33oZ zcG;RQ-l~#~yQ;CTI6x$-X)i9Tk`1U0v!*X65degzC}|^J#`PHTyvUy`b9!TOPV8%K zl-?Wdo&h6o&BGJd^kw|RKJxXCi?b>XD7=XPOqchnzx5c<0e1dJBDSBX9*wM{=X0B0 zX^MVwJv@pR6+4f>zHsu%(BRBBOny1ET5p_fibO2CUUdTt2Y@S9j1vpyQ6 zkYtr4m-=jBBR{9Ky{GxfK7#S}(TtNv0aorztGFJT>myZ&`+ z`QPuY#s@uMayzBHZ+SU<4G-NNmmS-ad5#BSxLAI&-Yg8T{0gaFV)Z$@NQ!9W|J0eW zg92uEfPs(bdfK3Q!}G3Y+&6}dy6YdT0{Cq$gjX-i2YG_qdr%eL6P=;?etm9els`Fa zVg~0jy*gc+X@pU2HN!T3#z8WT-q-(0Fb~O8H6ZMAkmVQp zhjnCHtD+@?k2FNwVb;u!7tlaJCXobI_e~*I4J7WPp~t4-Eta@o926Kuz_Y*+B&s4 z9A?1w9gT-aZ2eORwOP662N1!Qf}|Xo6x-Yt+tPd){a<<#d+MKcX&n{ppEf8Qm4>%` z6yF!7K>oEFX$pEF35c=eLo%C`P}ZhiKbN>ImD5M5>@8P&KJh5%|9p7gwWMMDLv2Ib z1J|y0X&%{WegT*Yj<0uVrljd%S_Dphr{eCzkVHt=XLZQ8q@Ci(cozJV*0%XNZb`^_ zdhK4xAS#x>tlVY@viJ1=E<6_2ew=zF(lCA^>-8*tw)xXLfCmZ4ND3tdo0+? z-Fv?px63s`s|LQbB--hzF3Dy)lsVz|wh* zlkP?chjZPv9lZ(KFcz)XsRZc14FFwYXGTvyS<#Irqrdb?lnjaIcwHMTsiT9w?}W4W zy2eez;12x=7VqZtNYkV&*@D~FcCMH-4_C9EeN z60XoV9xPSf8IkXgV$PTk%yWO7KxxWmf@hsTV-6Yv0MfsP9pixNRY>;*se=t|I6ZUj zDPu^Gf#6|l+uC#+C%rq;lQ2T1Ta9C301Z}}dlh_BhdJKgIXzXU70k}xUo&_f1Dcy} zOFW?9aBw$DJkTBvOLN&$Yi0L?8fSIQxVwH@r8zy!4nhG=3VQNUWp3igZ~ym)v9P+w z=l>_v0-PBV)4n<5xw>IOP;O>{k%=CR;kGc^)b!B|*sVX;qwu9u^OG#o4pVDxMwhf8 zsB|b$ruo^*b=nLi2}|mD73=spk@#u9S2Id|6~Khs)&M`tJTdxwk=zN_`a!ysqCVYb zpn%UO+7?^!^=b#0p=q|;mtBE8e>ia475L`Ag-Y#yv@bIM8o<+q+BcnxZ8VBxaMeip zbLl3K_|oWtyxSj;NMdY8;!7lI5Y+cPSWEw*Dqh1mNy;YBJW*?D0C5N9} zQSbRNhwH+@4}*ooPRsRI9k6P800;q~-pFoqsFA~{wp@7`rDnZXQaaM>r%m?OnhC_4 z+DhA=Y3MR(dYDGPWK;FsZ2j7@W^bd|f7yQc=<;u0U^zdmGr=g#iW!$@DKtMwO084B zJ@I3Xez8lvTK(CwvkE3onL27TZzb9t;`EYpc1%L}gu6{K)I8B@hrrR6(=QLK! znw7C*N>t(@GnAZbtSr-^rKQJNeOjSu2WE8$JP>PWXA(`9z2w*I#aH&)`e#ViH0LS` zYNlEMyu!>2z%Hpc$85P$hX7NWx59}q8wfz`>{Hw zRpOxlVaY=dJ?8Z|Enx3_L7zxiqG#?$@CNPp4Yd<1NtE!$y11mu2Gd!zWqn z)p;32NW7;ngPbRVZ@R9bp4yP*PSUYnduxq=e{s`}V^zgV+1J4VOvb;t)}6L}gO$mj zBrS6(4lrb&TO{(vO@Rf>-L*dr*ub@JvIkb~;UQ1oB`&b6hb2hyDBPjKt3atliE9I z2A7Z78iAInx$1KAnORrT$>k3qYWXVx9wjmtqu%2aslif2vzLx10J$m$_rD{$ADzZK zlJ>|K!%yz<@UuH!xQ#fegBS61S?eo7Lx=!_p_uM+#9Tx~a;mQ*fdhGfsgw*2n*v&N zg~2)JLI*ND7W!JTA;JRDFf=e%;_h@|G|Bv()ijR#wKGQn!}tB1O7gj!81F001aQEb zR7~xk!cH2DV4kJJAiGADbzk%;T{_>E}8Hy40K0G#)9u{88rTj({%@Xy2xgzeE?{j@gKn;g0- zPYQQG+d-FC*qrtld&Vh?#Dz{==)PIJGX?S&bX!gJ6XyuI35orcReh-jYwKdqh7VC3 zJtq!-`P^x+s_AQ%4CQjZoi~8f6vFE;-Wlq9EZjIJIyvq)xIp!Pe;EtwZFswoRwphJ z5aRcG-c=?dx2K~0#1Btr78ae5{8}&1n@_hOVS1b7^34lzEY-H=C>zGjxwZML2{5uc z$?%HBMFNwORQrPpH832pG$kIx^V`w#$Gpl25?)WZ^5Rwe1SF&o!E)>DGFXx%A^U$y z^b%l}3VgL8oz_ogKt4V>eU|N6HtSW%YY+P>E#o8c4;|08?a#xT%eGd_u4nuw^NnY4 zJN^GwWhK`;pW6pGl-_|Jvyiclf<-ap$N!5Y{T-A4Mo|Q^P65p=Dve{6ddJ3;lx@Ut zgL_tXw~E>MspZo&6_#)%usKaDNWRgrZrFg(9}qreawjXZbr%6J{BNeHb%ZVt0Z+z`}QfuI; z?Dh_ISfVZ@f+bQ!oDAbn9#r=~NT>xs-k3d19N38Eou{r*ElQghchmZlm|lh-93tKaJ8VQZ)%Ab8D6w`*$a0_9qN_AFo1Xc3j9h ziUAscEVO|hBPxqIA)XdKCE>#lBcA2R_dm)1e`CPv=Dm;yUCL(T__lK7my0j)j59x) z1%1)JlgduWtG5`K23Um zrwk?cmHZQ8Y`G0Z0TD0@I7O>SOrWhSsXBVwmlfDSqi z&LG;HC)UOEb-hbxlan)|^U0@Si3_y)t&zBr9Go7YQJFcPJFMLQdK%qAo|3<|%N~|q z0bysNTF!DLk!D_4y&96R)<8&CdL?3^6V-vyMpo&31SxRUVgl3i!E%nL6w#>w|mdSZIsuWPz2pszNcOAN7) zx7R=EQ|X?#ek=*To^ZwXZA+_{D-0agGJN?;hS=`nYS)qX|2GJLbRnF}J2a{u#KQmS z{ZGr}B!xw~*;yG0<&Z2_o;PP_%9N@}ooM4z)_L!t-UImo(OCEn>T7URGk#D-{|= z%Sliv@DicPb;iQEc-*a_d664!rHrgS%3T2 z6dG4?6!{j4<-0h;H+FD^0^7aA1AwSM5$Fg`Fx^LSH0TKpyX0QX*6MmN6oIwAhC)^+ znhZ{rz(4d{YULl5Ea_-mIZ0sdJp}H!pTDORs~-IvY-!STm0MxQ7qm3p4A6`1 zpd*bog&gT=qx+!MPg)mwS8ZugY9#G#6sp!?z>l4cHN9!Jmk-&S|h6+P1{PBG-``#n|sqfzkXeoA1L*MW)BiY{$9+nZtE(B{1L&L)bT-jtsBz+*0Rls&APm|S<}VzY-O)S7(x_FaSOvq4{j zunO1Z0W};Xoq-fiZCmR(o(~tg{=NVHp#yQ8bz*gGG?O-4Mn$$ z!xn7XcHcK`e>Q}WOd854#HS?xc(s4bR_PM9x;iJ_^hON7xRINJNL9n@^8Sz)y41mvc;KT8A2QQgajEbmH|j(kSJ+P}h;0=RZ*x{(3m! zLxem&IKa6yR}Yq&ZfJgJ=CPvf!Z|?fZKjk--kzTr#nLV_!a$Oy#yMa>^hJj#Y}$-~ zen>R@MsOlN&3|d)yPgcXM0x`)(ZH^CHU6mZzfFhr@%E@i@iOST2Xlx}5xycSH()c= zWf5G+d1Hl|&v02MZuyoj%pn38NJIu5B=e=$En)YrAI)wEyjgh#oM)gEGKtqf?2lPZ zh%26P_YPivSS)zoO&x3hE>4r*R7Qz3CN3WmsqRDp`O=IC?DVSbYZHe-FXn_1=?C$L z!2#p5`d?QdC)Xq9dv*x{@E8U4k(aFJ?;OCCW!;`h+~@wszeM*YIm^1e9?Avg%m@o( z6KZ_;7JnMRK2D;at49{lc5l5)QFr~*KNn`;#jpIET%gJwW)u6eO~Lf5#ROX>6MJgo z^)~IwFb*$nxEFbh`+5j|NVzhZkms6zK*dnT-gBW7cg0R2TrLnp;a>B4Tw^7Ey~NR{ zq<6-Qq1wq>8_AVP`{{?aqFlFcf@OjMI{!huH@RQyvNWZgnP&D(!db43AJTF3#A07% zhw1g;FbNyf|HH}`4OjXt;5L3dY%Xus7SZ$YB%XFoH977kURTH>N?b^E3!L zZ+@#aI5BA{BS2B{14z%r)uPF(Lk2QTVxjVRS|hm|6FDw=!C_VSa3j#?Ug?`a%OKC?^&Yrm($f7<^vi=nmmE0GTe;+ zK!y8J8Z0B3^v-x9h17}hJ0V|sC%kJvk}8|y;ZZA^n?&n@NkSJjEdppr9% zl{2Acu@8@|w|}^lr6?2ckmHcJo0Ct*OI_-9t+c#nZldI(w@T{nxw^>tYT>&HOKeI8@qUfya(6Z!Ubp+JbSBuGna zI4O8MQ?=vKJGtBfLT0M^m1kL@mtvaUI=9ljFuHOZd$`RzV1K4y$&b~ zPJ>JJ8f}Tu^^OkGm47Dd#I+6ih_JdVD`bC~(UZ%q({ z=|7oaJ1hNf=e&Ioz^H|WvdZPWkun_$;7oM5Ii+W@r@qg(0)a0W?(VuCciXyhk_5Y8 zG@fahu8=rttN!qij*(>S=^*q_64bYVATE)5skdeW~Fm^qm%H2KE!)h zW4M5I{S>z3ei-t#=7m7>a?*3B%H?w(r`Nu-6Xf3mr-&5Z3bECYnWgXAg^AstmX4&B zA9NW~vmT0WsOccEs!w;KRc9$a{JAJ3m9{o1SuQXx{GOlVB(%~m+Bo53xo?{*+uzDN z=o+SeHKnAXm!Glgt#$eOJK}?y6zjIhVS&(8KhAYP7swR!FYX@=j{;NzCE}eHFU49U z97Se-7ri<{MCHI8N=NhuEE!4M;Ewyka3$5s8B4_D@SDh$258Q8&V-xjEnJKO$$I*J z`isPeNdlGc^qI5^E0D?6t-|7ZDC2Hyu(fuoAf+iR^^ZX02ND=crfd&-vmP#BI|N}2 z+xU9hp=X0bJV`{z@EgfK2q9p}v=%zgoI^OIH)oAoJzW=eiy9)W z3^@&?5he=hAcR)C0+%qUkD!u7(`1VA^eP>P7@@LcSo^a7x_O2#bB!2(ZV%-gh>m2u zwR!Be-9ygWTDJtP8x_TV3wG8_mVVjCr1xq{;ITmeCHjvWgl4+V6hHhkz@U%24KVTG ztdX^sW{i8Tf`9eBmOAWD0e$^P;={U%$Z=Maam%XWF@J3B%o$I3@J;UR?y%%^AK`iw zWUu8^!_WI!grz%wI`6L?b=o(6iNu1sv6@*>lc={@F$;;Pci|~rlA-jNO(YvL0V(+a_u5MCBF=5k?`$pO6|V&2~8))~p7O~+Ec z#tSKF@Yfo3{*)n^gyMXo4!L$G4sGbLp#YI)Hpf@V63YwFS!hGVYqv(}q#4A!=FA-Y zLj`kox8s+QB?Fp7dGWg~8h+UaEm2Uuio0E_8p=ukoF^`TbO9Yt5QZS13^{B*-jQ!17v8ezSkaJ5etr5? zeA~Y087Mk?Ps9(({aN|B^}mIrwjzKEpR|DHzPz)eSU!BJ0#HH)TuYl_#_R75I&xcM z?O4O3k1q{u4BgUehch|t3`0i}{*SeH$Jq54{S-B4;r^ z5gEMQxUzxXoe}?6DkXd^pD6}>Lwma_D>d)Fg#k7p;Kh@Rp*iVXiXh^$1FfhI7}Nx+ zGU?op5oy~u{bs&wr5+C1YVxI<8k3S8J4CV78x;|W>wOL=z+1BfDLL!MUWZO!U{9j! zc7 z@dvl!7R+1DQc|ROQ-MvxB78J4Z;qf{3II%JjwiQ@7rOIqeffcJVQ{4cDc3?*fg6#H zlh+8;lbS>)j^OeXyabi}w-z9;``aTIJ2SqTBGKmW7@P{#BTcHDi&^t@#;-Q5=HAnzBSgOdP!G@@AFA*Ot?rzI2A!2UxUq{TaVSLJn_X)*u2Eu-t4xP z3*zh{dnii`6T&YKK5dkxWLyWD+c$~F%<>tn!C1-pABmU15wb;^ma!k!>R&Ddp8fp( zz1pai1COS1{AI;i~lKET9+(9cjUwN=}L9 z*Bb5WJS~R5TF)qVIC1njG+F*Hdi;?W7naKb$}#OIGcF?XR~$<#D|3ly;qjSSNFmj5 z2Hp&xqG4gK%guGwIt06M_jPDwYZmMAN@(KCO{-QUhdO=5Mjm@$6E;B(2E342PIQUKabGaB=IF zF_R1N0j)I*WrStwBpUG6x(uq}iD=1<^0e@)lt&Ki%U4H6e7_>J6+Be)1_Q-SS(uYz zVMJ(cYvV}!fm;)r;jqr-vNn3l(44eZ#gt=UR@qP^w|w;(#bRRi>dEWzR;TES%j{dF zxrZx?71|0jrvM)Mj3$4*3Zns4k1;t=$;1c`7JRX6=WMZjhj5!vt=Ir1Z}UmdF;F8< z{&GVJ@0esl59p$JOeS3G7oGZK^JuvL>Zc&2!utgq}^1Sf*PYKqI7HhH6 zFT~s99EpmKCOxcF%zjotD;8Nt-COJyE)4F}2nIP=eX+IIhQxmk4 zPiFL0v9`2rhr?ZKP5ca}oXS8OrAotFb1uXa-tac*sdgCEdgp)mPYG-2TWk&xH zVQjE+SwephN8H;|ha%4C`Ydk?Rn=KO-##PUx z+n7lnrp$71cYH}z6dpUi7pN?u;hg0+cW;b1r7cqZr__95CF_s_6)>ee?&Vu5K4Hwm zQ6~~Bax}!bn|dX~rl4$uA+A*Rd(Zwxb;<8I+0@VZCRX7c8oO6=aTSsL4|iJi6NE)` zH&c?xGk#%JO$szxCBQafCBN}SC9rLEo*P3@Sx;7Ec?J!(Ss#$V#K}0Xt~a%`-J>No zrZ-XVvUrG6|x6N>W1B(Rp-9F!&`!H7TF8r>%jW0D@iGhEbf`BwO=0KcMxe1I)!Y+9O8dskb8Tq!Pp zn50v6mqZmBwhtD~g|<`Q5&3U{{5MGNFUL>&2gnnzyUU0CbW3+}Ah>?MoAIp5cy2$F z^lM_jMdn*qpwgc!th7#Q-4fw)V97Jh^?a-`a`mIT_x&%^#_#r>QvHN6u}}|!tnB_* zYw2{TKtPoRWI+n>vfP8O-+W$zT!Xk)v{L(X52?Q2rnQRrW$1{3C&Luh<65xVHFXAs z3kwi`P4R|jxrYSH=nu)OU9MJ>*nQ$fE9a$)SW>d~bUWLpAXZ;Ozfp^lS)yHnCFFaZ zBy%I02+Iv_MgHNNrA^p>{jrRD8LRO2kgGDipvWn;o-Zf|w8G50m5)Uxy3^jf0;CK( zb~3-m;qk zR+nw&gZ8?Sm0w@RZYvmtdwvPF;LtdyX|Zf=>X;*-t}*(!GBI6O7jT;UZ=W(soQgpb z3WrRe=sff1QD91>qV{YK|CUqFrIKpSNuZrpB{t^{_k^h}({L)}T>P94er13P2AP^a zU=xarQ~#0;fwVAzYgJ#rHl^A8%_MLYXbozYj(cz6cIk%4%lF+{cE}&#-jFLvq&OHR zN|`V3HRk;Ib&%$5-0oe`MN5s0jfvIFGh3&0nO!iwR9&_Lswx1D*;bWgCcLfjAGl(9 zuQq8Ph?&pAT~E3*v-_Dyjiqzy`&1Q?Hdy!_Z*P}43|>UUaCRiyfvyUA`QL_ns~;fF z5k*Q#+_s$#HSJS`y6kz$*+1=NrY`FYB+i&E8WC@m6JBex0#x}_4t9~vxu9v3$U5`w zPdwJFJ;fH@5kJ{+%BoNWgNk%w@L2IN8=S9vB~!_&3gIC$1h{AR7giEKR<>7;=qsz3 zG55C#eHBb@6#agkbCK;OTLO#F{bcfWfF?0-yR>LO(bQ{5SLNIz-Gh7V5fc-+#VtDxXCU}yoX z#fMu@O}&I~rGA5|b~fl<%Q_Q`$~^Ywnvk8z?V28xG#0s)tXT?j?+N^Rkju4;id<1L zpKPl1__`u_c{#K)a&mrwnmLR^?Yp*WcwLKPUwkNZsFrSY*ypNmM_1<5;a{6M0p)!c zWKgpA?135am1HD1*KEhq|7PUK@5T(girQC3)AXAy9kMC9A}03!EI#-%d$Q>&C$jtQ zwg#_-SK{$fSk#22QJ!YT0};gvUd@_u+wC$cw!|*U^}_iDe6izOrTwk`7F z>Fh^skx_zui-)*uf86W8ZZUAz?r4tjNSJB@i2qBd1m?816=KEuXFG3yo`LR!Zh7r{ zW3%L~%>8bm>WBG#e?w6<$Q^Lv%D0Hh=gCB4fKvoaty>}%MrnEi#g6`X%bkBc=;}Ff z^5zsuPeOlKim{NA4S!2$Cd?Ti^Nlw!FiajBOk}ch5`d7ZRmP}+32IKUwo$0etCPpO zkPR|$piG%hZdF&?4jjA-S=G7wha@qOu;%dhIru%~ocs*%&hYxB5o&hrJyV52aRkb? zFkyA8t&PG0jkH`OZ+2wc^Ug(co4L`}qpW~ShfvXOkRH3^~CKA;_EZ?R0B*cbR⪻5COyX7 z{93;Wh?Q^2$cQqJR^KCenSuPkJ(geiEo^`mmJ=tCPOi;oy#E&lX{sc@m!* z`;{0{8YyiomhIdo8>n)N_Q6X)BUKm!_TW-(J8x<)V&|ZCiG`zilb7te3{3G8(bP{1sPTM^{y~5?kh($l*a0Qr}>th^_Jsl$mp)zk6ONy@< z{IBa?k_3t%$%o7utSHYE+8-vEQyNhV`dq{wG4n999sQzVYg#o`$;=mZD{MQIv^?WA z!>Cu8uSw(B4XTKV^r<`V{4jUsC1SDaHG8(f{-okyX2UQR9?wRzriDi(a5~W(zq@zU zz}g2c*xTL{kZXMGOfg47;e-r~mwCt{etx+CC=2h%(Rvg+6x_PqDBM+A8=Ur@o_NUp z+rLM#_2$8mSxW&g_HE)7U5_`mj3Ct|FZkm7l@<;&iL4{(Fw2R@m2aAhvk9pmjhPN# zafbT^v9BuM#Z~5F@$KW2kBvRRD_^w4>63fscg~>V6(2o7gGIMFSKf$Yb|#hj_*(+U zxO1A*i0(mwGmE{h2larzIk-RQ3ZlV+|K@2(Px%syD?fg8rO%JZvjXjSLq^hX-U+ede|?=A9al;nCJue7Kqe!GO%PwX9WoE>iEf@vS{ zD_$bvU#@oyJuB*PQ#z)(N%s2XVS1C?c-gjX?C*R%F*@T7neMY%q#gTmcF+IVhWs;6 zuHP5fv)W$@&mLX#8h=zz;0>!iqBefe3T;!sMNTm}a8tjdj)`AtBUjE>DJUu+e1-jv zY)gF5t>UT5T$ymHzakuMjR|fC#8^uK-27*uV9JAt{S0rH1V_(<+Z*m_5dlvZT1q6DLCW4*IxHp0B;CDM&M8ehHIwjU zl3L6Jmcp)xNHp&*x~s|kfQ zN_;a&G`Pe4_)(FzTX*dU?&CBo|2p=vF&Yrpp-rlsfaLwMqZk!-zJrxpl zYYQ*V^}?iYoZIzIkqv;44KPn0@O{-I)rO$VwY&%Eb|l(!0vElJ=4<}GOWU4T1v@~Z zHF`e1K30hvd;?#LTBo&x_CfrwX!Rzq864xd7K`x%xJvcvITjmE=bDdZ&KT$Z;JEVZ z2h{e%wzF|Xo%PZey_mS1X8M8Dl5LtU>x3?Q@h9S|sxK!sJnm&7W!kL4^9)FU>kSNoUr7)bU&T*!Zah zv+E)35TqhXzJP)+d;3Y&!5rjKKy<@$5zC0K1x=Se3o4M+$ClwCENv^KS9Hqd^6M$B z_E0m`ZDn|<`t$7cME~mcuGw9cFHQNs6YQOguFX1Gt8o*bI1h~K3AHjFfm}eQ?18l< zP<0RNZu8&gc3Y`*PuRB)vGjq+^&@6m^6UYBTzhnAR;?X#q<+HK2LdNih;*$SR<{qBkPVAlsYS6vc{t}t^_)~KW4=()l;VH(j6W=ZyL(0Y zRmucBTvq&}Lg4$j@9-;TOX0qs*99?zbp5-&%Whlg3QIDoBE`sAB|S_?D`m9GVJShEIPcOgZ9YX%n@B!~gJ`GfDr2uuB7`>llVk>_G$v89X|X?es?c zKiT9G+iSoJ>1>CfB#W644Wydxx$Pm{0D}fVy>jpFz9i42=FpDQe*FVcumW`vs~ z!8VSZW_M5KGqKr@W$;Y31UW3bXa%=?s@3wS$${+b&+~b@pVQMKT6!cfx+fR;&8!h8 z#;_gPiqKT*Au;xEgXek&#<+u z5F;ot9O&#ljEok>*vesf(j5<{j(uWbKwYIfn~93i>(lp#d<^LCqe2Mwbzn0NT?*aPbo(JXN5k%klq|ry_>549CCNRe%eE1=T^%>>` zzAm%?-)7?yd68YE#AZ5q?z87hg3Q@f(?}(>FdN^3i#%xJ_%guEnauXRBB}L#K;HqN zB4P6^f>rb2iLv2(4&caF?&ca5o9g}|@GUbc=$as9qIxZC&^N1SCK+>yH~~PZfX1j4 zZjifR>BNKsPM@F9L{s&)dfu$J{5O`4l<~Fh)c7mIF{D7r$Y4$_KF}ivjD)LbUc@__ zSL?ZCV7Myl{MY2$?`v~hwUalB@erAPNW{U&K<*NfW$af>43N>hS(Cl>`D@TP_yQDu zJ}7s6@L3Hp>v}JIi}hj#h1GvSK2GLofwmm@rXOh**TwqF{K(fHLWfuUXUIg$+td8R zr}urANLewr&i246nQw?=atCqbR~>B{4n^xJC4xbYvI}cVDQK4t>p7Y3yY{3ITqL69 zLirPegCc-`3(|;rysSxo#$I_cy zd-CL0gGNq^+-J~>X(YC5U~yMZn#A~WeweG~`sC@x9PC!&r>F4vZS&t5Xj57_hRlTZ zpNHS+&(xnF1BDKfebVo7$n`L2c^Oha$?{~wTuP)LLvuIxSxnY%=s*vCFJ3X>!;e-| zc)A+A4VtaT0he47&#t~Y+xaiArZMG;A2XJR=yu~V$h6g}Ki}uztgU{4zgeaNZ^8s7 zqPv0~$)SfOnO7L-2n;!6m)}@(z-*eFpJHDJ`y9230@7s`(X)N zIiNuXot((p?u3zWy^N7}qEzfoUVpE;L3q?GO};7ZNM7(Pe`_`ynUD64R>(_Ps;iQ@ zh7&UUHRsu#9qm(2Fkm(7|CW3$^A_Ct%vDp50&bw}j&&M?@JT*cIn5TM)rCR-THfu` z#C*5!9kUAdsRLD(VeSN||9Nv{qGg6}bf_73|5N65^ydBEo52E{d{im9K@ZSfz3Td! z{*8z_g{yU6e&^lE=FW>!dQ52JAPu;eh^$YsinX7_H8GKe=P*t_p=TvB;y!`<^XYJp zMBuH)a|Fr`?h!5pJodG=45lscZ;gUa<_In2o%H9Z#8Fct>*sA32t6SUU9^qTz0B=F z=jFLw(x!Q`BZzk=jPs+enNl@-HyQPWAL@HfKF2&7x6ciit0KzOor^L((P7|xlPxys zvI&s(A5tKvW#4K1s2n^5I}zrsqb`j;+-FTB2nLKbMp zyXB?+4W>y@`Xf+?KP`3kIXJ-eB=CcnIeIMQHpg3GN$8%msFIBP?rR;lE~maw6XLkn zxcYnv8rF8L44H4=EuCctDAUoX#5)uC;uauIJdE(Xe@LfhxrU7{+V2(8g*UI_GbVCz z@mg-Z0_squDjMe6Ek}uIM}M=dWBjCmmtiIpKZEMw@VZKY?JmVP;s@^h%>|NBC6hs= zeyYO5qKueL$jRl+(K%4Bne z%P@+T@ozG>lC=IF9YH^2PAsypNcJghV7B?iA)R7KyMz-97^K_DiM8#bod?H>H4pr{+s^V z0Am~LEyV8S`KjcS_4mBVT)RP71?fmP_Pe%jgG`jLS!99Qm=K!L&RyfTh`a9{tZR4_ zuTFYbp5xZ2`Mz~)F81vQx=aWfuX)yCokTDi$-0%1PsUgs*<|<|k=~tRdUo}a92U18 zkNV&S(i7^rL$Q=tW^DucvTq$=9+6Be@3e}ESK?*VoidDCXcC8c^8z+Y?!e1wI7wL; z1tPii`|x^#r5_3H$o6+`hYmWiqC{gNO?y3{t7vHYzq}C=%I?-zgJIpG$-A za<=QT>*>YUAZ7KzEUsHTk|#Ri@bsc-(5}WyJ3SMdz^5O*_3L@?ciiw&dP2ElWJ^B! z!O;?Sr(NY@(4SZ+HKJ|5CZIRc2Nh+OhHyqX+{OB+uXf!5n+og-P+t0#7W7I|5i=Gj zzqAo6(>D~UlMXI7Z7#`i@$n9uDhy|RO|UwB4;LAP?BOeseGB_Jw%fYw`6d=ZW60jJ zR#@D_f{23d)|5NS&`C3jw}yzak_z8RXQ$bFnA8fGa5B~wH*{a-cp(-Y9-b+@RX-lc z^^ol_<-XznrAB4^2Hj!UE zI4U~6-re<6Wq;=w)2IF=O$EY&+_-~fyq2w&k#1I?N;`G#Q#~Cywq)Cyk2t>7AThT3 z_1YJbqHB-5@u^Xf1DUIey)m7CL$mkxe|*jF-&Vfv{;q+jDT&i0_LWTyJI@(Ff%sXn zA0)i?qo}nex|Z|~PoGJ-6nRNEuN(^Nbixd0r(9LX@|J#my&nRyZt!6wUKwk|3qQ&| z6sNd)Zcbfy3SpUT{9U4s~@r-jwmcb+q>!YJZ zK|1a4uV3vpUF>MZ~Z%?&p; zbbWd4?yV4B?aipaNyFgk>Jl)4%1|8Q?AIZ~DT->%@f<6#6R!$*BxiQfsHgN{O7A;P zG{_^qv(Bad!6bP|P);w%)b!YucK>cyp#n(BChhhzAP4*MaQXM^;iOhoP8Y@FiD-j{ zSe6jG+*GyJ!&ZaWn+;}Iq>nrI``9&Wy_g7ZRjeR@M`>3l1MoOJe}?Fz<9A)l-Tas^ zS5Uf```*oE!j^$@@D14=tZotC0F{<)s_`@^=vAf}J^(ykER>8TOl0X^sy42mPBhxO#%Kg3=%+AHjcEdQD8f<4cj|KS(QFHR~{!0u*1{_Z_mHkfc+4g5EX zgcB~O1U&d^Go%w6GyEO(Vs6}!i=kY6>AGe6*S4e{ltarkCYDj({L+BHcYR3jIi7 z@X#iHtajTVSipO5AuKR+|EjQoEH|?!PDy&2HmUV47Qx4#8QpSVYA2M?48=!{o{$ie z>p0wk94xG~o_oTdO|UaK(BMT{LSA2?LNt#XXlY~3b{JUFjAjqZq#tw3MF)&2yT_Y^ zJAemjhGksU{he;B*Zmu!6@>{aM}h@D=??VPMoi%fVhB-ZW<%>jPEtCp_!1$*a?iQ4 zS8m2iA7_a0XF(mbTtX254#qRN4(`yzuqbUGRSVW06AC_X9jXc_^J7rRK0Hw)?-7q% zGUR%(xt-zL9qa`kZWY$y!_Cj@7m0gQb8WKQ-nm%ye=^e`+)f4;p+LVvc0w#-+2y|H znCst%r-y*2vI&7~bK#-QSQ>`kF^}@ z=G!;Rl#VRK9ND(W=B~5>lVJhJh*Khec_GerUq$SajWDYq_911`ds2<1G5Nroah-vW z!lmF}xT8vhmvZwLOlkCO+u!|m=TXw4_(bn1s`pIoETc5$EO$O#YB6wTZ%OTca*G0f zR#EI&=b}HEJyzLW<@LIj~^Nq@dOOgil%v-Ing8V4(Q>bUo?wA z4fKAla%G{xhuGa~o7#m&Wgk?6aDbl(KHxUi^ezfnbI#w>0h&`((cC<~X5A_>`OFaH z=)9DkXdR?))p<4=@GACf<3?MhSo*KanNPy<r~C((MY8 z3M&bJGtIQ&O!8-4$oR&ud_gLhpVF+eaU%URXPsb%tXH2XlXUNcCK;J!l7Uu^p$=R- zJET`ws}JYRuoiy>!Rmgzhyl3SX?~8J$TMd^#o>ng*&@SrALD(So;v`Bb9;l>S! zN?MGB8^GJSg0Ph$-ZiIGm>tABy4Y(&}(bY-2s zMmo-GR=^{!K1;RGLJwHm-ePWPqt!dP%6nUyS~nBf^rZ}!DxH$sC(90>{xVI%UJD?0 zt??P?X5Ah0m&u*D9*@VIB|)}DF{gDq(`J|QL)G~O)PdXTxD!>mfku01NM8~DJ*j-DUGo|ARrRudv`?_I4;!Q=c8qQ*KB>W- zuIz(GZ?k2Za<^dDF1s84G++r!%bS*|T<7gQ=`n@hoey%SWb70$RdzwkleXbfvI1|T2}B1m^5-SE&25{k5h0@B^x-5n#{-Hmj^ z(A_X}3_0X`e1E`v*k^XExYvD6J2Q?5(`)qDw+7uRF{bEg%XL#vvJU`bt#FvP((+d3 zL7P_tq*J^>u;mC6{_L5u{+tfRFRV0`ve)pA*Q1A>-$YukPmN!^hgbah{R!aG_~(By zH*|9?HEmU;vCCXn%JCQssPp=aHLhfib108^`-%uQ|4(Vl2L?}Wk%BRQqaDTbp-FOS zv3lHv9p$u+rj?y9xpOn*h%|~1n1)u+wNfbDe0Q2--?=@G0gOBO#Gl8YcszT~E~e&| zHCi^qw+q8h(AQ6sbBvT4-6#`!GT|cz9hbZwFTtMZC{tB`TP0&(EgjG!&~IsU2p{Qtvu7Vd@krP>kJqCV+pC4Z)~^$%8aMKPaGwex1Ng2^_t*+!eM3< z!%Y3*X%e&*q@B-W&Srp(qqQ69rTsUjSCuFS{=SW29(A~O14W;*^GKCS$8-KNz#GGd6bKA;5sn~3$u74 z8ZaRS1Q6jPlGa9;%kt!sRD1{YXj(CEHi_`^n8i;TBq zvgD_+E6SEHR{~G-4vT{Mdf!_-XQPzx4oJT=9o!-U9^FP1?l|o0$`c|h-OeYpqN@WM zGnL!cle3-9JQu@;^$cbEwn}lMRVi7 zMB0B|Yd`Q@T8fdoN7tRr7S4Dpn?|3tALdMk|G0mD;takqnzw!M%-0?8&WlbK3-@!C z!dS@cC@n2Asgp3)&>Uhh zKq>~3COxaU?x|LqtA!s%V`mRYD9UG6F}SyWzAOk_-dKirf;nEC1(B_z$}}x`hFK0V z4F|rEdACnx5#!HuDG8o1M*4+7u!u6_b=K-?&RikQiia)k!H?6$LLF?ZF$^W2`ug-v zqrcOxMl1AR~8kpAz7s>b=DkDAxK#nfu-ux#gFjk?R7;K}aE|>R(L6=ZuQTX7VeO6p6UqBwUb*8ozgnx$9E+g#k-1+N1vJvW_yy>6R4O^<{cMOpGH5}}))J!HKH5Y;I8YZhP?xBzM%gm-0pV`IbjPK|o zhd=I~7XMcfldzQWn8?%3kb`>>DE9PKd$z~Q-(jJtvqmT7Ort`xia^Y%=5g2ThpJm; z{+7J`CpXZzr(FG!MZ)lv&miIXFhpOW%VZm=u3g{dlm0%dBRDt`9q*~GPJ|(Cy70;1 zskZ!`nHy^(*t})*U3Bc2-Tf2zisjRa0t>KT$-19fd4HFx10 zjjkCQkvy+<%g|)l!)d5p#SIhfa8D0#=BQjuOj-g0=yVTHPK+y7sn??VL`iXEE1Jsq z-aaql9s7Mg+7vVr&Rk~tMIsR+;w&nR$MtBCkJCaoKBq02Kf8%m*OGXBAV?&Z^zh;A zO>`aBk-57@8_BjwaVt>3UN@aDlUWg5!n$ljS!2Jx%~w~0ARcSiuHm$Oqswk$J>9$ZP9@ygy^e-8R9_o?xji@~p1Wvni zn!La}riq?~-U>Ha37fsI5>)~9idj^)80VOkl z1o*JMhOap4DCzZw*%hET-Lee6Osl1t*vxMs(i*j)96qJZ4MnOY4l#T*_#G{L;Ex?( zd_Cx2Wc^b8W?n97;Pnt4T3V|bxCtKp#nDvgJ-tNAiLq~IdU6-iA_MoA zf8K7%Y(t1D>UrNqf|E_AH+I?=sV9;JipqAB*e(02dfB&U+bWDor|>1E zEf2=-H7pm+y0f?&_he6RVe0c#$Qks;eVEuX+IliDr*DvS`o^V9g`E|FnaUbMbY;|j z(`lpheC!eN-W3P%l7g2_HggNVD>X@c9}ghbf7}|%^On0-lgd_(jeSBII!fJk4%n_1 zdWsR|@5-x)Clm1|H?5P&a+%l4{OWQ7p@cY<62Ne1g;nS?_ixxgNTp2q1aMCME#=7Q zSJ)xPy0$-ugZw;3Vt9hv*vH+?Q2|lEWsS{WXbOR*#CWac-{NQuDdCwMjR>XcqkvR^ z;PP*)WgTPzDg}C$PTb@^=ti6lOu4v~!TN@3hsySu`4D`8ZR%Ym1Qfw-q;yUv zL0H4E30HmUw{bHgc`q$(d)D9=x(oc9j*JPUkTQ5-AzLwHAnKaFTCtN^;Ue+IZQPd* zWkX>fzysD8r`{=a9ffAIMtQl=fMF{zWyadc4oC)?T+~CFvQIAde>O7-qb^x#)OjlO zF4oHwR}43rwnlBnI=^c(O*22mKxd*8%CqdJdc@L2)b6CU+*x2Ij@U`Fp1&i0Wn-{^ zroUcjX`8QfBwtW}uop(G*6OvHQ%6`*VX8g)q6CrOamX7?GuewN{EOL6;}dT46}L2f ziE3TY)jZlKdj5FINH8hm61NnBFf2N{qf!E9i7`P6E#s^HHWGm7Is2jc&653a-%^ac zTj&Xm47ypvDD3;<>VoE}iN@nREzZZ@`-2RU)sBnRPfPT(rCn~@h)#3j{a&vd}I>QI3o&j1c)wL;6 znF@G$G@{GN&qs(8=4nxQVrz7XD+$BBg)Q$3o@E9qT}>KU=W?f!2=cwP=7U!!C5Yuc z^GE9wf%`O;k5A6l;g?EJ=iw3bGk2q(mPn%Y8eZ)?WDF8!aqJl742gmYcl?|NTJu68 z>Ou=lnkH$7ex3}I&bvhXF4$|y>$eLS2P3?^;oae?2^v06Tw^cP`Lkj3E&RO-jryA) z6e8u7&+9O#r|O!AViktzc^&T5fbDJ4Y)(cYYw{}UKidrc9U(#*uj3CRi?Ct@`ogL6 zAHm6e>`FhGLOZIjjXo^42r?LWeJ;+WAbI*Hg3;kjbLD+(twugIUBS( z-#Od=u}|8epMQd8PVzUP5)3YMuyB4H1bQY2#ihxq)ei)VZn4*!5Cm6BN#7MLQ1Sqp z<}Y$MbK}*qgGXOrP3;ohCA5JtPxGcCX}QO~91v~D3b57EsHSq&gp z9L={w7~Z3QSjo`TMR;cFRSTOW%lV5{2HR)}D%;Bb9`rbl00)4x%HZqUWHy>mmVP-B zj~_XF;pg{K)t0>Vn)TXIjU`wjx}>@rczY#pp@!j8M6id67;8U|hui>pl`v`|Sh0-C zy#!U5Rx{>QR+c==W6C`1l6?jMphGbf<6Qgm{6{jAvtx6H9k3CY2dX?xrkug&?sY;9 z!qugbpBD_53C@&7LL|wTU^~B4S+_76+U=W$SVX8V%c{|CnIC@*MTKt5mFmS5|(kt%ERU?Ck`)zq^wpH4d_wdTVee=viDux7C9^r$8 zAQmth6jLwk&PH)L{E_Xn0DShBkI2Hou731Q)2;}fv%@6tHR#=5MDi^!(3Z#u-<9CW;*r(jW3yZ!3Rx_)eT)V+OUj2=~LkQ9V3PJT-vSHM28ftI~pr)uRk3^qnn!H8smULRq=^ty|T{Aas(DSOOTz^v5fB0wBufzFioV<vl;1@SS5o* z0%vG1eb6S>t($eXzErUS`AkHmA)K0ivaq9? zhHeBk;9Jh>oSsdZK!Y0Kx671neaCVM03}Pd>ry|>BS%^<>~eNh?{?OH*q%`FosZ#P zVxnd`%?J$N4w53&2*O434ty=%BT14|-57jsQDMG6*PaCGH@NKLA9Uk&XHeTv%P4ZT zahRg|p|9}3G4s_&y~Av7Zeon{gPH*Sx0R>Pr~(+^hVutuzb%dbI3XGRo#>OP{&h-v zQ#?wXa|Pr-L)H_onFnc&TKKD}FG0pxw9I&I58#fQN)l|)4~#l}M4)^k*hY3?P|8NB z%!ai=oAcz}&}RxhBk$hZ_LYGTE&f=$*{e7^$Z9RHd`@=>cA){G|NSP#d2)D*@pN06 z>e-OO`cf=St*~5&)nYw;vk;(S$dl71uw#NRj(s9`EQ#OqHHTW8^5;Oj5F4birLeWj z+iu%xZp%`)0D`HE3ylku^6m^v#{gUgZkSJSadtu#Vobmw&g-x2CDPumzLNSHS*+(# z*0RImjZmy1u@B1Px71jQ=4&e*)!w36Y2s@&rc;iD$)4ETCqhxkn%fmNwSr^Qdj$fy z3PEKLg9F<&I^pazUFLJ%qi-;wvuB*mPs#wWunN_|@DFo;kDzMfWPa7`ep9xZ*lVxoB<%iQ<0l~^y-*xR>#GQnCY*s(RgWbSdRl`VK2nTr=saG-`G z%Y6TyKfQ(X-v1h>Z^zJd-+hXz5FPznnEPaFFTK1C6hQGu=A_WArS2Bb-&QuJaJ=&A zIZtT#I}05WSZ5&AZtC-Z4}gvPa0ObpxUX-Q`@&(0`%mSg#O+PUCdI6hS_=UQ$G_W4 zk9K~$I(0xFEiRhH`B1&v-+k_6bnK7|mqV7V84le$6*?*=>LXt-{XJS-ZBMF#XDb8? z7XOnt6C%8ORECuv&VTbo2i7OZdRoz77#@D-B*YZ<_R{SiStL1`J$BtB2XI3>jM1pp zh3)$_&(3D+N#S#<)-t2Ak~c!N`?8=an6eRPLMu_pXR^$%-{JYUS+fGp?EnpY0pU~D z$NealiPiSL&35N$3`28a1pYGD@cFg$>8F-P9gXwfzI5Iq7^dlh6re8hFXDY4D6emN z(JUuIF8-7L>`kN{LEN4j`6S>70j!$bz>0~L#$-EmWgRDte{b?_l9jw7w4z}$`LLBLFG zF8d`6(*oUk8M+d@SE0;U@GjBpdU<*Nr4KMa!_vh0d~NWqxr-}4Oey2rO<_k4-*zy? z_t_~)iQ!quS!A8op|X;0;*mfLH-$N90bjAIJ;##GM5u( zv#(b$x>2u;nS3o4H#_m$TqKVPM1?M6N!Emj>n@*0+5a$uQ*OO81CT}X6z1lMNku`N zeYsF~GdwON4pT4;U3qsdTd&FFH|I(?GbmI{4I(k1Z5aovU?Qm)3ZnCkD8}+{*HS-=m>BOb1XFl5fd$e!-TRu1Jx3$kSB{Ki= zvgRUv!UiH4@@~Yo&*~8iahTP}5R)DVSM)oO4d+^+W!3V~9#0l)rvlT#i_}w0!$2-` zf2nRBorv_@m-Lx>#|EV#oUf!d+Q2oHkJ|MBt!IYW)rl5&e;MvDrl;WpSD}*= zyd_Jd1$vonqH^KT?kxJO092WjE5mLSRdwcRx}|kOO@?IT*rJc^C`dhj2*3u@vf0%r z1B+Vrh4yG}G^vg7b|lw4AN!pv%mz3C*wdqa^WzIIuf=e&aU$7fr$owjD@~X z7!Y)Xx@rg-e`A7`Q?4!{=*yNa)f`7b-Dwf?soo7dFFH!oYc9pDTnv$Bjcbqqk`{m~ ztHcJ3Ic8~iB2RaRDAflKzs9~+3|=@Ick1ag(35zx%MjjN6#OQS>sm&&FzzH7vD5vb z-?`FkAVpl*QN&Y~J-#*bu=Kdy;|l@k7og$ZaAtkMCVU zIe4h`1q;Bl93wh@e++3Dm@a=7yG3^SZ+RQbcOs%C#QC9>3Ix_+tR1eI|%krM$To-s|O+Z%#cGjQ&0J$32xLOb|TeUv)H?hK@oBEQySA+^igLXk0 zF<44?p$mz$MeG~dyKB!1)R`kOz|->6OEjQiI)06}1D?ETO7|kcc2TJl**bmaq1V7G zd-{Px;_oiZxsJGjV%VB_?!@X|V2l10C~A<{H`yj`#Hqz0J^DT~B?w`U67ptNsUutBFv$(ZYS6Y9Cx=gH$fFKpo6q zjBTbEYp1K^FK1fDXh(S!3>C}mGYEFy%v-HKM^Fp_xbKK)uZS_F;!AsP^dPvGuIXQ@ zXuXT;zC-=v+aq;fQGjIgu+3&UVE}PC>JHxPR9xP|%0U+vVF<81iLR~01U>BB9^g#} zU@Wb5#wr7&uU+_2{ldaIClEu6hBV5T1nyDE5EzMOZl}-pQ5oA66f_q2^JB(`Ly5|^ zUt@Yro_!MHPA1L@404ixj&mxC?-;%|w&-?Sbm4*b}MJbT};$^Ns zs?25LAliNS+pcO}wt7JJ$G-nmh_>r|Pq?JMk3I#xcLg~Gp}Tqj+g6pBs?%aNZF7&#cZF&T4wgx`6=C3+=+35sbd*sIgqE4{7*?i?j-=L9X`z0& zv_Ij%3U%(!2@N}Hh!Wo0d8>s$$JTs$*X330MUY5r)7jgFfK7NN)(A?u!{p z^DqxP2Mda%zU?k0KNM3a(pC+GGu@}Y+t0C$DkFEEDugzSXj&y-yem=sQ2gba-e+({ zG^QrU%d5Runy0^%M#p@q{S_m#UE_tE^!vXDU}A~HeeRt!kJ3r;=Sk+`MaIDJ->H!J z^Sy>Q9AL4gU$36Nu}-pSvnLFil7wB1Qw(!d54THSekwax-`Ue3|Sp9_0}$~z_a`l%WR4NRDGY9 z_=)2n{-c5g&Ksep|F2lsCy>W7Q@!~8!Oy-ZB4BTvkt>#^K^iXrNzv1BM#gSnS?9H0 zo+ck#_D3YPb+Db+%L`24IlHCZ*_D-=JD-Ijdd*$-i6nAm%xqM~Icp3!!ggb-vrNoR6hJR^2P4mxE4OqCK zZK0&`)h(r_IGw{v#r0ef0n7M4QRxU{@f+V8=o3yQUvnrGwp~lVtVos`2M&8~ioJX!HEtx%w~9{@ z_~G`_zW#h_P5QVGklKmZBw#+kXa+OkURc9G4{>ud>10C_<$2DcR`zzHatLx4dUKAY zZSX!|mh9qa+Dj9b`*)QZ&;fDN4&T0qvkYFQXvX7k$Vf_Po>HRv@~H`G)>A{L+`Z~a zC4!!8!;EZ)zSm4^6uq0^q;HS@Cq7?Qa#N#m9E-R6l{4nR>3b?hn+$L3m?7Jbq$+{5;boPps}*LEhIy4%nsOFRA8TM_;caXkdM`RfhPes2Yk zshOgO7uLPu<{vszd(E0wSjYT%3e^XH;?2^BGr+jVM`KLfZ!_Ok8lQLARV}9t8AiLs zsBxVVh{)DKF`;kRU@E8N%vQ@%dWWB57l#`xBwrQdY&F$rDAQq^fbDw_cwMtSthe6=HZT9 zV!FCrp8&$NNJDfu+nWVW>#5O;P);8!tRJ3ndHWx8ej+)6jVNR}8xrf;>el_jyNlg8 z>Lce~%h*|HXRUDioxaw}rR(n%=hz-0m0nPn(@kk16Ib*F`I zW5Z?}k=d(Aso=*-(o?AzQjVA8l1Pw6#OCD=dAa?M`BHoP?;eQe;ruSXf^Y!?ORHHV zLPZ2nlh9g$qwPPs-)Uk3Yo~Ko*0yuRYzR!ah!GMP+7O?_m}5rGfLTD~BKPc|w8a|? zxSO`gv)mmgC>!olOm}4;cN-H0TbUh>>Gu}8NbXTns>7spQue58QQxc%h|eY)1~;!_&YB*LOIjbQym(5|dRpX!GHvCVGLI8@27?x4%0a_sAuR7w; zA|2R->Mni2uVe8N-I#;0l7Bo#^|7pNAfcQ8cNMNd=&H*-gI$TGM4!XPW4?yKXa+~< zuCO)m>xF2;eE%C!XER_6`oRozJ+OSH*)a2c(&(_6YTg7t;%ai>DbY1= z_l=OUoTEnv@1z%KItM2_SdHYxkJI<$)mM(o)nkrV95r~1abU0O=-`|{{WbI-pwe{) zE97TFqD6R_Q!XuPN%RN|9CqDqUu#N;$t+s)Lr)mC zE5O94B5}%K^%jKcjax&6H~^@!kjVMRz-|%@4nsqRThUERD?u}{B&a@V(}FLTE;R!P!lGU~tC9UBI+HCvA@2O1e4cxIuoc6@V>xGUNuuc?JNka2fmK|doPecw zWGeQc?6`Z}>MYCl%e=LNo83ZmliU$vHZuwB9VJ!fs}g z(WaFR?fKmruNe3secPP>94rA8q*j2c*3pjvc%UcI=j9)@im_)3>@F#5455orsY`kqHQu*!UegD zD{1WrzxL|BKjd#)4KJH>`{3Fips5t~8-M(bk|*{Dbv>X|Pq6OWd{2;mb&LfV)jES`km8UB6(VD@N(0v&=jD{9+T=m`U_ zWZDgi6p0YvFOHZy-gT709xL)&LLM>n7!89qmC^cIEM}fMVEg0&Wurh_q`JQ@f4FS( z9IG4rFhS5!gz|98S5*dA)TI$q`{A6(xI7dQ{8=>v0E1Pm&3*C>}QsfR(`7H2b+&nJoUnS zRS4UdiE}Uu`1DT9I^cHMY-32f@IVtG895u#ht`!WmMJNce{GvLH)cOVHf}6JWTyKl z@EWx8A*AxvMijxbo+q!MM{*h_*vJ&b%h>M$-*kJ%SvtKF9@rGBsJ^{6zwDQU3l=dp zKR7K$3K*s(2AVL1`Y!gL`t9T)gdd$-YF&Q2#C2h@U^y-zEASz#$k`zxL26#{Fdj=F zX9Z5J+4=I0%Nc?zj)$e@*Xj8FBBc#Ar&snhI@+gAP1{ST3^!Uo4V1nnK{hF5l#g%>)=z#KdA{ma+5*__N6Ddyd6?V|{vThCmwt&+~r7+YKhLYUU2lauOJU2=rJ z>b>`SELa{gjpfP}*AuaC^MN=H#Im&^UU2>3h`<7_a$yonPU*Gp%gM4Kyv`#_&uCB5 z|Gt6wk*nW?{lBU17j)48q~&fy3l>xD49_T!y~w4{fXlgYfpvfstz=AP$V4TajV7lN zE=h*&m{p7Uu~e4FqRi^2dOwYdf?MhNu}hF^vUYUYg{W?*4wF7Vy=7SGj_S659D$zl zN{R@{yIo&>?Hv?&%QPX)!tyv%t)L}UdU>I!L2+m=(jIVED4N7a`w6Orm$4~)C*4jg zFtL)4b}~~gVhjjH*=c`P>d0czIL)48GF$cxjG$lTXPK6+-gUU&*sgqbllFT|At!}~ zU$^YB2%37Jg9R5}16d?@d2~7Yahm3G@<=C*jY-+Lo0kH}XL-wSu18)X*4O@5L;=Bz zFtL{xR~wOIvL|T7Y2BcCaKh zRgxgFD%i8yHEVC}bT3$BF$5Y~CZRO%xF!YvyY0Oq2xEviw!5vm%xap8`-Cpm4!V*~ zt{%qCDxu(3rwADgrK3bWyw%ywxT|oDbfEDU%LVXQdW%b-C0Js7$?O_CSJKTR_?9d# zL$_m(T6BgUnX6XQ9b?~#VV%{TqPo&~9{mgS)fmO9=c~ zcirx{L}o(&)xFucY5H>wN*3gm@4tu)0<$UE9uGOn9<@}0njC}91m=5sTI+}_8g78a zhQPRsN<%#NhZNG8a}0;4Q&2TVa&iaCj5tQ7y+}(g95;XUFhXL zR8JA>&Dh_OO%HU@S%jW~KAvD}Y=`SvvF*D{o55PGz`h20*^Qqlp}c4mX?(J@It{N} zoPn4g1!i|}-_Y1DsV;<&vDl4jSL78Tpoy2%8fC-(8>J#A9nK50jJ?R?ETI{^DXc@9}dHa zA_A{0wQ$%S%d09%_1=zxOQ_5;!)Jw+W;)<=BW;B<#ogxUlXh0qN#kLyddX^nxt{OU zA`9p#`=C7anzv)}M}n&k#$$AYFGrw3r*T) zP>Rc`=Pvbdl57pPY>Yid=O*SOKfD)?0Xnn5!`&(JYtUINS@PvOC`Mw__}gF#P2?M5 z`zyvD__t=+P`NtBgKxD0olVfzK|-^ygq8zsLc(6x4lWKr%quw6U;Q4=u992xc#j8r zC>@KM;0BFj;bHc(ikRc$Nfc$P(39*hbcYDDwLMqHoSTsE%l_1x_V z@z*~(Bj7M;erpm-HvSVONk9b@9NiPn)X%CGxRF5)#fPkp()dPPLE2gc<`@Q1$%BoJ;tK-N%SP@o!4pZe}?IT zJ2yt{ucpVAvQVHWb)M1au3lHrR?MA3613=YF;lR)Ck9rj)*aukv|9<#M%x{Exmt{S zjXx25G{)ph(@Fj4fY zwqO{T@nT+#d@X3iS?^iq6D$Q?&aL9an=q!4Gse+ZCfM}m{^p@?4j7}pHyDWlOT+h@ z8%J*sI%L|3$|n4}8_HT&+kbG+`#d2=yoxPN*G})2d@f2~c(%+e)(9B9V5D6O6@P|` zyGIHU<}f#{V5^GwOUO*Es&hQP;w8P3pCoKW6q(iO6S5WkVeKIS@+r3!J=&51l_jw8 zWNE1nP-lOB?_=K&)PJ=}P>+=)fIk+43V&#;<71>speToQIP~vBN-WEYv!S(h%P;%v zH5;1*#J*$LVLnk$UF1kPDhy^_2vrD1@`{R=N%xK~X_+e}E3Md!hq71|sH^|RlTe7M z3&C3_`Wf3yj4^Q4@ot(M=6n3(%Y2W)U5_ETcK`IivTJn5dp*xI>q>OQ<%uJunlsvn z^DS&Un&!iD@3#Zx?qtGV9{k7McnXtiQac?v=8SRVAH`^-?{Sirh%iyiDyLPM0vkVqjx3G9H^lawL8W-#qv(d-F={ zvYC_*OY;UJ*vbmZk|G;;1!9!8-vLAJd8ZJO5CB?T)h8C9dqGL4!SRg7j}m1w@aFtLF#D3eLU_sT zYQH=TmOJ?%M``Y1xbPdF4nol3QCOnpsJ+ZS^i!XbT=h`)#s&&Tz;|BkMW-5-wfdISR{t1i~~q2U!{SggRZJ`JbOvOHR0E?9el7g$FA3$w@n5 zze)dD&W!xjmmq>vM?az0h(?{{%`Js^NJW!^=KAh_hRpF*9o?Pv(ENX)z&xbDJbQ8s-NTx}r}u`|zkq`UHhRoVfXP+1vv#Y&!DXqn3mavu5t}MJ|+u{)?bx19$U~8C*PT(-C=oK?8193K{w{)4`X?)NRok* z%W>d0H}DHs}RBabg+e#sq-{gCyRALbCA6`EsUo99&cX? z`F8MPw<4fTMV7u+m@4?o?MH*%c%-XxZ8F_kftbt5}P z;lA$TtJ*6nL|Q`qb?ITI;)T8Ql31aQ8-^~=i{jv659{_dd@m>Nu%R3+EvrHtzn%pB z-5J)JL8++FHulT&K%%mMSxX^YyX7{H{H5VW>d%*s`13Tos&eBk|JDLMq^KQ~ck=|u z_?NoPmf9>AbR9Y&gMy?4E|=)=vlkfjY{<-EaQ=XzmV{gdbLig1ONei=9mCI|{X1{T z_qnJv*@??mz##ONjd;q-0o5pPjB4 zrWxg;y{Az1rrpfqW5uaBK2S-MNJM&i@2fie`&1~A$!E4_sIqCX{x+7J73TB6l&$`^ zD9)`eG1GYnPR}8jZsb~l_g$4!j!@pVRj^ou27G6`!03qhFuN>gk4sHB)fW zt|8nyc)Hi_D_kIWY6>M57U^m#44QrEiq|WPzKq62QjD z*WEbt_$lh=i6mK+rd5^WJOmC2pk7r!L36{yNKT$&zzP97K(##E2;fdSU)pzWB8A+; z|JszDP4>gPbN-$7>p!GIpN#~Fo8~V}S>}Q|c@Q1A{yK?H&fX!7H13Um%~b#U*~=W! zxk)kKO||x&Cn3kq%Qm%Tg4y}1XiOo5+1YNQ<6I@a#C6rN5sbiw)A$ue)Lxi3&Tp}_y!A$WL-RS)>##0O=Ftd+#*Cmt4ej zDS6MWvRcU2J0T|?FYl2=Ffc@kN$(56nS8Zz@#$$@(;xM>7v|Jo&BQ*Vn{=2WM*&uk zR}k9DyW5+M7*bTaT=6x#t!;m6;d6)dv@q)8WSI`u;=a`?XO)k?vVvYf-zj?>AH}tx z_!RGtQMy|G8$|#uzrN*c;&C9#1wie0IT7e^RDRNaif-jbpxVFm4_9^I_C9_aqzDoqnn4^F7{_L&Md5XAcL*ow63Zh}On$^Z5)w8=4tr?OHdz(Fc43R%kzs3S zXa*&DfZbaqEL!TPqO|oLy~yYorSqjGG7*XwCpYel&c<}kbX*a9^+kPm^~hU8nG$mh z6D+nD1^4o5j;UEtnP~j}v6oxc2|$@m2aa@<`O|hzYpfQzQCc=m9182&&>tMn>$JiN zHie?l!TXgnNtD=5B8+)xmL#jgql>hkhdFC0p_HwkJ%WTtdYNurD@TAQ9s0$M>`Jo3YE-8VZWBI}bwhHaHMyD`=$ ziN7fg5on@~hZXZAiyWQ`X^Jnj#AYIsMX!oiqd`qbSJBPjse4{@k?40!wp75Mx^eTL zE#3;!#C{tE59m9ZNeZPmPWou_i%!lX)!+-NkO&c{xL(P}k4q|GW|l>dqn1)*`p?LR zlzY6_3&+YhK4T0D>|n-BaWDRi6QI)%-<<%X(QdQRir!9Y{%Nle{n`N5YqWi}GCSUz z`I|LC>I1cQ9h1R)2CJ_kd}T(WL624kbK8Z*2Y-L+;uKMZUYB|4Zeil_SvH); z%JlFz2{aHv*e$l7bb-PntclNIS<_58f4@WXwG}ku+E_UrDukcGR3a_zpk>4U_<_we z&OMddW1e9Nnlna1VJ;==b20=;FyOK_@vn1diaAt+S`<`e*{~QHSF;|w*9%eU68)N zt4a4hjesPHP*ur|^8yE)3%wlDFh-G@?f>v+SC0if#Ao|5q0K^fql*#jcV`b zgW@`rgoP)(qsF6lX7?W~M^daIIts5go+m~2{uOu8z$VFWg(K@jVe4cz^Ih~9z1spd^_-UW&bvKXFXMAuc{1A0;Ce5h=M3K@c_6U#`6TH|3Ru9LSa@Wuj8lzF zdAtXev@|(TRH-{#f2eiv8vp9l>Y?SlM8g{LHQw;dUi~Rky|%Q}`bi{fGANb8Jb=W6 zFFD@D9Gk!O!@|l%!cz4+*t8fe1FSvt(o5^>!buv%Ar%96ZP@9G_kEoV-$P76M8d)HKmD-4X+)X{5^o=(DZ!S?Cq8sCr ztUt_K^j|_jpmd|~Hz&Sd?PQO3)0WnAwkM*=2L17B68}963LTF*bT31l=N$a!-XFmn z`KA$zadB@;Fh4-~4VolYi$`e4j#}D^I***DDT7$F2RTSz&(!dk@V*|C>|&$M{2FtQ1KCVOz+-@V_gY^vcz#Rf=oQOp zD-NEqlN^cwQB#A!WZ+&H=3UR^*Tsh2PmiRPWy>0dKr&h z0wM2!fkv{O@Yi#e3LSyYxe74-y{uN+32w03TG9n}=xKZ$Sw^ziGT+WN|7kb5vRaTw z52{)(ytfxl$toy`5!aw#+hN~JZl?VkvHj%s72yGwe)EWYIbheG70i zE2$)hV(`<;G@=@%@sV&FgGQH%GL5qP(9uzOb_}X5P`Xxg-?Vxq|GPIk+9=NX%Z8Y} zMK@TQ|2X=tF@Y>_aKHc6y^NU~c<5RGgF)8s&sDn#Y=w`PyYqLM*Y;{uU=`rMois{q z&U5QZ-LbxWPgzI(oXQ zXpOp!_U6&$V0YmonfT|W8&T<1U8mu_2}-8e0OwL7&Weu*G5wEwhW1s>(0m$KVO%6f zipQQ^fMVi%>G3G#E5r7p=2aU&qkUg8wMXL&hp$(H@5Xl*8%imrkBU~ z8kb>mE-KhogN2EO^g{BrJbP2UOykI|)iQg$asyk8y?6`e+T7ta+Co?4>g#xLE) zWGz$@=G(Nxe@lZ5RYYor9+es}7aQj(W^F!>q$yGSQ42}H;-6)nQ0f_ zyN&*zJpA|6xm(1j-IUx2j{EpI_ZTrrE)^#xJ2Bw8>^JM>71m-J8bAZnC2m%Xr#w`=m)0*M;1{%=ZHX?LIyrLaNXg= zeyg8?RTY?m-_T0i7CSB#v3GYXxa^e*Q<9A3oxhdLUcQV z>Xwv2B*UQU&BbT+o|u`X%~eoHISEHXf|GdU8b|Nq>u~&plV7whX$?#CqW3$3jI!+I z<0bT~?C z1r>Hh)N&O2Xnqmg~Op+g0qg-!+-t>s+>aLJhDG@uuRSG9$tNE;h(7+Eau0ZNwFwTBCw0^nG)$HvLSkR*YQ5^i&!#cO2}d8U5a7~3pFN7S zX*=o3-W0VC!x0V~C?!KyRvD?>${y$QSS(m~B4Z z%x}DN24?h*4}pk-|01gNkE%b@!m54>JscXQ`kr1nr87^*WDs8z(Xpb$=+}JH-iBi? z`IUbA04iqn4)-9^GY9xf!lkj7Ypsy_198Z~Mac@+tCI(QoFCyCpI`GThc`Ks50fCb z&wNK(7VmKvi2RjWFCI(s8Kx~b)!Izs1luQ$538pF_{wIE_x!KtF|chYMP>gL{t+Kg z_~V==#$mY1Qh%ezXG^ivQ|%e$g-5^m;cxWu`5hRxffowb1e#?%fucJIOG>(_ku!^L zvt6kFBB4|o`!%q-8a;3osW3q0%+=8`-BCZ^CTM4BpDto_>^Soaaw~`M8+aSZ%+-In zRE&(*&IF?43_pYpkN>VX+O%F8K%FUM4w3S{^-Nub;y5lnc|h)LxdIVk1vC1)B<)Sx#c3b)0f~jt+4L<3$(1O2`^rt3;7neOT^sSd`(MNoX z2{TpIHc{NHTGkDMAKwpaQ*WiM55zC3{jgL7yxo;S)RFCo;KmizegeH7fb#BbIme46 z7WCB@9_yVewZWW^pY5sTq_rec#)j!0g1b@(zTrK#kXI zPc_{t2#A{a^^#a1c?sx9%ly~}PvB2TG#}tF`HlIL!tc8 z$u&C)&s92;11@J@8byR=uR?aQgIx;6Sc1(3q`_VC>HOL2$yAW~Nm4h8l$p)#)~jq< z=ptmuvFgB=yN!fh;99uGLt99YV&0Hwc(ZcbHshwrdP}%otixCKa{n+BQh)b*Uf*J@ zOzF^@emjt0(&{az3V&3^qnkc;8{v)VWn#F>d#f?=6=-7r8D%jr{S}d>L-7DXTp zGqIKSe$rgo-ORYMaq{+S%bY%!aQmPs|HTX9%ZBIYw)(FbG;6hfEsN_(55gioS{nso zOaUpxA6ymV77EGR-aJZV^>ixfJSUwQ@Jnzs-@Uy9g8inMCx#5^3{^#bFa z(5P3t`A%4X6(&t!ep!r3M85ZE>fo@Fu$QMr6y)A0^LvEOEmV;U`*Iezq0Hl6eo9~9 z7|1qzKS%IruEKCfb#OxdP=1s-E%6X3Z4BLF_@lJQw6w|)ak&VSHTIK1T1H-6agG5W z>-0206xSQ|mi7>yub0X0ca8$*&}6_!4#eBTK^3l&Hxqo`wt>8+F+y;8eIQ`lDuGKP z0-n|DhJTW{YCy3dTb%!2yH3ETDVoI3c1xV$2Z;+`GcL>L*Dkj&kste?@AeOyx|$k8 zJNf$Gf>rgPI~MBU=Ly)ADBk=+YA)YorcM{F^+d;GvOLl$IvXRcQI*DNd4B5+FS;!U zNdtoeaPyGSZ$8>DCYmBv#!G)e;+EQybNU?oRsx?v(|E;+7h_hNRp>pN+3dFPgi~|8 zZ3tp)Z7qamP5y0+7^zH%b6mWUP1Cge?MCmR{W##eMd;G_3 zuFfmwRMc*cy3Lc=feowakQ*Nh``jxNiB!%)t3NEUMu0Rdk8~cm9LxcTgtPP8{v!S) zw~Gl$do&W5;r$gZ$fd&CI}+39K1@zM9CpBG#pXJ!Q(-;j=u#F!4z$A=cA8mwd+3{= zUsZUts*_P)tr7pc7nVu1EgyzRbIQ;Yf+G%)+WtH}q2t)|J<}z@WvYm{mIFj6XIyX7s{fj{dm^GuQcsvmV zZ$9K~CauODJT*KtIEr-nZ0?d{yr4$(H9g&OBRh=%LEBltH1_m?{x#UM$H{nL;-MjX z2`Hba)2Y_maG;ACTNLl0mZIv4A8| z_lNO#8pijH;T@s`S`{?<(mB{Bvi7ul6N+o;iBvq~B!Mq4S7~xeML(OObLCzcgPU)v zZ97Vs#Fo|*E!EJC+f(2|8I7M+{I1Rf%XY63?GEDg^nE*NPn!I;TaI>8j=W)dz!@_7 zW!{F>)kukXF)F?M%VgXij7j!H1zR-vU%Qi;<~c@3KOh+|-T%$>w&Qh}+h(P0<4_J( zP81d6fEm44j$%3hNAq* zWk|kP>cRa}`fT5D*`|rH;jb3imhiKhN`l|bNg2gIJZJ{v68MUp&xUX>K3XxxE%zu9 zoJ&o!mu`M7iRdU9ToJ-Uvl~CAh~q6o3O8mw_O3>HNM)vag|Sk3;T>6i_h}^l zCXM+xCSKDbdFFwBh3>rf1U)a^8-&uC$WdI#=02GE+g&S9=~v|MitGHP@Ev3S+9XLM zqxgxv;?KFi2-+DUS^dqEjcM>ujN}c9T=Li6Jn0p6ZC+HYE*woGUL>BQ=!uh{-pNZW zo>@^fOVq+sptyk>O7m(C}*HrXjQyF0M&) z{PMJh-NDq=3~y||xH)JWEKoaxt190&)`>-bEw~xv!})sPXG-}?I}PIZF(|#NR4eU0 zM-MwErnM!bF83dSNe6QaMXu7Gof@5k&SA9`4{x>WntPr~d6gDbi+ox0Rx14~qeO$8 zMDpAMd=x%cC)YtoqkqCvo0FGAdYk#o7Q$9cQ-?yFVj8`vaXw|9?M=re-qbfyB8@^T zL5(Q`2kP~D&Bp*iRgo>UU8=2Y*KL%#9%P;Q8TzT#yX{04L(~4H!HO)yc->{@_Pc)h zNtraOz9!P)>XjJ(LW zITe~0eqTZg(MuH|uDbbI{ln07H?^jBUF3*O51&9mrjOEfnBXbygn;tmjAI-R%x}cz4;>PeG=3d z+P<2&RiTbYb>Blv$nP#PMQzchv(Q+o)c#$XYMF5H%PAl`j-7dl_QElgZ+G~abQ8N% z(A%*~8n#Icyco7Q4~SnFQZt%1ys29P7m3Y$M+mMXFgD|R$43^(37ylrp^-hZzpNY= zFIdcK?o5l+6q0Y_4QTy1>(7jPu1R}6_fYV; zjv=#rNY?+bvByUCdN8BvWPn!9We0k5t5jvgx@RKcsoOfi?PHl6v4|z5ZSl*xpk3(v zs$9h-q3$RM-f=kMd)DI+qC+rP46z&_|Dhb!`K zGa6h@_pqZePh{pCb<;j$0~^8oahQ;^rsvU#u+32#b0U|FY`8y`=HQtf^Gr4PIoru+ z7H!UZQP7pf}R8)?vs%?(3EHsC1MG_`MKhEHy&a4#Nr`iBRl-~ zb!0CA8Qv({=f{TmRvx|yk+i^UHps!00Fc=GYS`l$hCcNvj+g!ANN?`n`(`GjZljw1 zt^;a(q$MO(a5ev28ok6JQJnZhAghVLz2Vdlh2xjfK^vH+oVQ(#xgx-ccosiyeWP98dkES0z zicjQppl+l5bnsf?)p@6f4XR@fp9j6)cVv?;9Bga9Aa<$*X6)|l+WrSnOrNBafBA3L zxKj&LzJDJ;L-dz>&y6+!x#k#4{3LXW7sa6)3+~{zzpT4K!EgO7hUu`M@6R$otG+V& z{<&|L5^io0^Ver}tGl<;_k>kGnW3o?{pMI^qW)e}_rN-%%^|&w3Ol*ak}?b0ptQlx z1LNV^sYVHF_l5g>j{|tR^IyG3EtN-HtBGUEv_~%;0a=x+kxR1=r6OXfzq-u{=Nic9@h*J{^C`ZU)!w%NdPwSZyKq&2hdD9(10F%oGr3Y-UO zeJ+*-UV{O!C9lnV2c=D%&S?z+JWkZctGUJr>_b#DTr?}CQQ51-DAtx2x;aEe5O8cQZ^3Sr>?*bx(Ba1_d(NxsgF)qX@ z;OxapUsM@Uoz9OAY*JnqW4$_J7M9Ob7oO-z>iJFR5qZ7;+0cabrK^3IrX|rl83%t& z(A&FbGE%tWCDB2oBAq|3&t=@U*$<8keO?Jr<>7A0IGw}ctKTa%dVK8iv)fy>H53+$ zjiL*2G+a7c7lU4V9vd$ALqXMvmkyri(1SX~k+{xsV#~B)E4sp!RZe6g@ZK+}u@#j^qR_Kj%eIUV6MR zZSoE4wy#~J03TOeh5U8@cVLkC`+vF_luQ(? z9#}&Zuq_I1#K&Fi>pi~>7dJWL-%yxoi8! zsN>nMP>nIh#JU)q*!~?52lgaomm-5&`qbE`ye3cUe~ydQtukLPd@e@0Vha;YVYsb7 zx%65Nqml6cSo5a--Su#34p)SR4#)+pA1vJDF-y7?l3cjx&4j}PF1o7!$bi?d8L|CG zQE*#;YY=ja2sHLXOz+00(v{e1&0HLZ;K0&9Ze)y~*l;h1qSwrVRQf7j~q-QUdBILYgNy=*}K%P*BVjdh7 z9sO~b+r#~H-Qz$91+`he+NaH}#Qu>= zc-!!NFJ!DfPFpF~zDPBG&+j!HalRklMPgF78*893q%xYnF=iDX8r;c5 zx`icleKO}KYT6?GUU)QmX+S&BA7AA?UuT;1{j6Mfm{f@RCvFF9crQR(k#i$EPGVis zKi_91IcJ48*<`o>l?+Bk0svJkX6+nuiO$Gbi@1MPfJkQhyxW>DWk}&fnE$Dl+`6_d zI2K{#8|NbhJ8F1163?HbQ!j(n5bt}oG?N(SxD@p&VGe|S4y zVrb`*&cI1Xj7Yi-t2(2$O6k#DGQj<}5s=l`5)1l6Bkzj|ko+lJLVas#B)(>gVKlk# zHs{JdN--8|Hd{k^JXa*#{CzAsF7d9t}aN6E~aj&tZF7yAl_d zuOOd4>SM<@#-klSSP>RBvvhT(UBJ<}@*7&Fi2HsKArs6Qgg4MmUplwYcX`7AUHEUK zd=r`zK8(|soo-Jw&E)kMhkO;O)GMh5-(t#}iKCHIMUfm+0Gt`;OPsrsJH~SVR$}Ys z?*J-~d@FY4EL`Ed_7ZkMCN~0?Cfq4Bc{)=xq2VDyZ9qqin z^1w_mf3x+;Q~Xg^$G(qncFvJ>{9cs5F{c9e06ujxlw!71G<6{Kui=lTReHP=yPDlp zf9@`iWoMO*?WWE7O4Pe1anePlvXqt^q^qX1nH+R(Hz|FYDVuAvDDm(Hu08%AdgOh6 z2f2QUZ+I%KM$gX<%i^AVdvd|1e9T|&<`|5 zz8tN5*O)TtJ}PFie9l*E`FT6{?XjCI`8T|6Y^K4efuwq^q3oRT&nq(;-y#CU3dyZ! zh<+Hx*B&c&ss&oFX@0;xr2jQV2Z&M!0Q~(nuzg+vfro}qJPpcIthfHk&Esvabd$G( z&Dc2DZxp`I`o_F7*-X3ihvK2eWDZs!LI;>^i&*s~5N%Pr=%8wkM85LnQ%-y4JSOPq z;<8ymyzTgk)J*Iz2}2F?So=s;?o***aWnSH?b-K6e3NY)nGf9%x0z2nhaRHnIa(d3 zfiNy0y$vIqyp$8XtxK`5SWI+temC-ANFbs$${7b31L!TLGLg?uS`n!TT!~iClRZul zjbRx_J=qj3;RL}NnXhyrbq!y>+hI6?&9H8)zD(QM?iCliD+2`hz;OSTj_toclVrVm zh?Clz=~HEoPfh5Z-y#>4L9ShDf*D-=GJ4gi7NgJw6&CTcSe|XQ-S}L0-1FiJfe6xh z6<^PR_Qw3TP5TjMzrCVYnJQA;^GT5ZES3`3vk-DuD5MAsU9t&o|IYlFO$dsvZ?=4U z|2Yc zxS<=&WYaO)H#D~)h^%~QWh&*AdrPZj zF=pcD`U(rY8|5qhg_^71s&N&o-dC^fqmS0_Vbxm9eSI@^UysOvA>J>fIomth>qDDj zr#9+3Hi5oWzNs?*g^T-}WvlwX!Djqxf=H=*!YLGDgv=?rOhg@?Zi>;F*}ZM^z`A?i zUff%Ka(*^s(Dh1^YMGDCLz|)$a}{Mg=$uUWRqDmQ?t&~s;PqRQkj$`p|4JMUKxOe$ z>~p0}hp4vI@yVpI8erdun*c^g>l3e)_t%WJ))?Z@m-#_s3D2vUh$YpVhW^u7;>%EP zKT6SjZ#qDyu^)5t@mO|k;Z2gVJH<@xG4|nMV0%u?HssV1lgBe4#63eTCN=0wMw&*8|va3!Y`XSBoORA#^F1ImVr3* z<5pqZn;S!e@uA9xCmO%^dJ(TFHt2h3u~(5wA1=tis0k;&>Kc27FAuVM4=Y-ClSKR} zOb-o%GmC-#Rc+26J9aH8_m~gMB3gpPU+(6n(%Z)my%HEJ%^P5MFxJa+dV4M-vrQyG zw#2kU{Q!`6=eOPFxLIfFGTd}7QTRGAPbvh|tb#?jwxwYSJ7TB}1(exQQ7QKb+fS-T zcG2T6&VP08x~4Y{eZa>yf(m>!cC9J2{}2BMBgGQY&}LA~aFW&9eNgV-fA(tTFhn@U zY0+-u*N8&TE?&Zi_B~+@gxaD5!5CwyNT5T=@>+7<2(tfS>+ZvAz(YSI?CA<@@CbT(8v%bn7^^oDdAB{1R z@$#XfUgiKX_!JNwU^J2B>O2w`{mdU-d1rzt5od#9-E?*nTHKX?L3Vrk=0*hRW`r~v zlLwxrFL@Q{A$4y^ji$0a08yP`ar)(cwwhD9pv;3F4WZ8W900iK)p6(zg@m`F$XKd` zMZjcl4?9b%^p8a8%tR_X)!8J+t>(;^%tnyg~_Xu%JwsoUj=&pvlvQ^HzwqTYs zzt|IbcO{;Hle83A<2=*~@vw{o0hZFH=Nka#?#2`2Z&zFlxh?9toF?6}lhth&$V=ro zb||&4?~j>|!2Xny(EB6L*DJQi`MBaexdRro{{MeTTKlQ(00Fd0eNxA_w-iV&$lKKJ z%#9G`b$+7g62u-rINi47GxeKH-JJsm5NMr3yo)O|ch7*e$e(P>N`w!v26Yo}5Z7bb zDQB*PPZ@C^&;}S-0SA!UKGozYecNcN#0S4bqKn}&0lqc`8=}4U=n2Kg81T4Pk~yj_ zLLKkhTG6*PMoryM7x8ASE-s{WyZTbS`rV~{i?AeE`P~ZR+x$lQN3kd{4pJDB2Pt2} z0Zi}OeJC{%68(Xs8}WxTiJ@;op(**-H?6895)82SS0VVq$}!rH85r%G_i&&SSdO4^ zB!&OF3A{GLA?#mCtK3`b|CRo4=tta0Ro)D0sE+a{WCN_fey?-kK0`%i*kNYu-lI#oU`( zItbL~zFHun9MrdNn7GDxVUi5e$1V`L4y#9*^5RcL^+Xue&QaWbx%8Mb_X3#3z?1hT zPo|MB<6Vu-8942KWQY0U+r>T<9uC$!han)(Z4$r+<{i8EiIe1J-c>WmFHZ?2!V%W2 zwy_1JN_Hks{&W^)#c<-xR5Urofgg(_ea5R{G-}ghT0T^1N49~@O@-`^BNN6$@6x|w zN+)8@Coih)wIbL~F6U}V2#Y=OvpoT82X+dr1OoZJNXPVE5<}+0Ww-HhNuLbCJyDoZ3z!soj@}xOyn7B==|@F(z+gdnV{#SjDtztrlMFayLk%Jv$S~ z^}khcXI~{h6eho5fqXzjn|MHEk171)$^Bw znXz9x^82$Ib!~a^6Qcrb!`@)kZs&9kv~4&Q0=nn;V%jMAPOmO46Nz6|gm);=o7D#h z-)ZxFIplDd;fNCK(jX}y)#uI~Cp3|~pk;9VA!ct#F__tNP%X;mJh&nyf5JTj{o;v4 zswgVO$7zrn5EI^!CvRHhSAW>auFjerL*L{$yCTx^hS=D%t zE(WE9+lFJCcM$ilKAxWG$dVmwKp|GT>n(0(1{@3PzOBeM7MD)8b+351;kIH|&mC=h*N( z$|@W3{6Er`i9a5{Nzj{)6e6(v+Fh~?yygU z08s&FSgu6g)g$HO>g}D|QqV@{H??MBmk7gn=A>FtsXk~%FY7`W4de^jvUcImr0jgR zlPM5qMhCmNy;;6utI`E4p?o>1etNLNeE;33evEKV8x?zQ>uMvq4 z3w^r(RrM^XYC;*gJO%~js)(!w$^T0-bp*?<()Ur!mzvViDo8wztlg<)PFV5-a^*df zRKv2wPI;_@yC^!vOYnQiPX1WGoR)GmnYw^vR=L6O7rz|DFwRKEGVXSt}>Q> z;`K6{h3|{LNe|r^K(5sJ$~G2_gwQbs@H3UzuDgl=GNNgcL+MehtN(dn*zN zsZ1(lbW-n@Dw{g4G~xorcSDMl0jH%m`6|;YV?mpkL^?74_Nh z;Y3Rz_OJV{9zx^Y_XZ)U+Tl-`{JSGnW6750Du@&NCy`khut4sAf+f6VA5&1diA6mb z2Ezo&ZDFi3ZunP=Jcs+)#!T+>x@pPBQ+Q^MKC8Q-CtQynUPY*TvWqn*Kul+FnJ_!c z9nF8!?KAv()p3mZ#4;()FwKnjIg9Uh)s5I<(AGyh(5mO2rhBHl5OdT%vYQ<|o8WVrXS{~?)%cx(GjT$SUbp+{GPdz(+KSP%{NDvR*?ln81! zxhWzM-2Z1BW@dH|H18wyFObR;Cyxbv{o^29hJV3ubx00lz*C>S2%gC+!fCnG55czr zBZLiI(sN#&)YGI_XMaKSm1|+BCqWGvW!ip^vAK^uR}aZ^#B1J?$7wl#Ik+R>4ya?U z><_&K?V$<`r&*|LmWmP=ZjMcrjF4K;rHq#A$jFqG2G?W} z%fgcpQ!DdaJY~PrOb`vEA?z(U0=uoK#T6F#Q>%Fd$~7sq``;YZOWHv$!Y}%1iUz%o zS=L2vrM-)qwL^N%AjkY3KorwQg?d-h@#_tI^`T%!d~wX2r#)anq~)VsH5=?EmouuB$lEb2mvJ{wuQDLdh3B^!I4LMX?wp&F^}-ZP1J};Xq;Q>CM@l@C$w4FE zJ@(PCA`vm3*>KXO%KyTRKB%YSC4U%L+5p)N#v#Tzq0P zCf?Z0uWSSr&XtHZ4#H^d`0zJa>U$4&=L9yo`b+=rnD}1AMtuwhj{r4Yy!F68$pR$602u*(s6M4#<`M3vh31JWt!E{ao4RcXDF z-+mr%iyg=9ZPm_i(vF^BoPCB}YSgthxp%u{kM@s6^Rk3Y$E+#N-I6}8+V6~X5vr*~ zzt!#g=A@x_o9X314?b*-yGPUE;J#TyOrFCJK8ak<{d;wfxiafwcAsdOJd ze?Ei*%Qf4-U@r^JI>UZL_w$>|tQgM~V%HHB9< zZi{m$2~fu3B=~d2Mker%zsyk9l!*BtUWO>3Bm0K{ufe~4muiwUPs}Rk@BR2*#mAcRz5|dJNn;`=%vNc;Y^+eaiN-~`6NzIHny3?{SUD~e3o=T#Gx*hV#!1S z+;XfFmaQIXNjo~=0W6LV^4Smzq`^KRJ?8P2+}rq!;yKV3UV*&s`%#0?F1)7u^2V)G z^e0J@sT}n;4E{cS*X;?oqwp~rzdw~74*-f@q=DKA=)OGtB>7bZAVzZwOzgn+T%0eS z(id#O#hzrL4R7E^6k~?jd$rb+Z-h2Q*@Kqp#3?2aG$#FIfUg)(Vp1DV$(6=}&>!v; zOq4c1n1W7ItSad$?hl1pPW;Zy(Q$>MI!0Ic+aCI5AdTjVFlrB$!KHc^Ec<-pX>FR) z;wzbrk~m}5;txh6+;eRV9Bc#z9ON+%StE?UB+Nrafs5P{5HLbMB9#Xz*{)Ro76%I> z9&UMGAY~C|xIW;&SdX664ZlGLvMvB7^fXr*P_OQHfuKOx3%31JVP_jPJc?CXyh9ah zD{r&YFHAIh-!_H6;Li$e-&k;x0E2j*)4aB%xPAOIY#d|~efLYs&p5EaDUlNKxlzhI z96_Szsz~04X1p8apA)ghnOsH#6M8nbF11o^MLBk2mUjVDlpFPUCab%HL%MDwn=8#;_ps>Wz3*7R0p2Bv|ZWzpXv=8W)S z*}IaP=^ehMfuoByuhwa06F8~Fnwz&XQsS%6fkDGQzI`nF%QmNlmXM)*4OIXeR{RUm zn?hZ!dQ0u%E2-zg!DNf?an-)VbVcnQW4At3HLhG0J4c8xD|R+9p>G`dA*J{8v**Q0sk1Um-C%7#o*Kby8gbR}7bBu|aO}Js0b>cxp-b zrA=Rr?)xW-?MqxBj2p?6G+d-@U4h(L3mJ(lgBJMV1RZm5Hq*L4={d(Deh@YAhxD@< zPv77ECLT(aU|0P?X)*W=zheM+BcTsVgL%8Zio;@cWjqoc-Vguvi5O0bj}-c5%DeJQ z?h_%`bdjKa)zGkS%blbVHnjxx_)-Y5N;1wsaVif!Or=_&sUcfQVy|Kn8v~{D&~mVi zH(oY}A<91^hksuWel&OD47Y&*JD5V^s4x}{HcXq+g!YGOS7DU+oM59htKjL*;j@Me zqSTMg=RFQwou400oh*PXb)pYvD=bn+MnSO*tV45FF56QO`S!2x zwrLa1bN8oe_vl0@C+AYYMF!)ogp5L(tz!3Emo2(aWJPt{_bLssIJg^Ac?Vbc?5fme zFd{mRS3Mjzt8dwhrUgr2O;4tE0vQ)o^*`dWxuHBi zc_x~ExO;WP6u)W{$kc_1cGCiWxZJ3X3*RFttN}#h?RUWKU2Wr*6`qTu%eLj|T|ZI$ zoyw?y~brn#U#t+;vGDjrOPi2u?2|EOo!uhjmHQjM>@2dqv=VL zA{^c>JNdX%bvLlvaoS$&A5O`tJH&!gW0xqfCKJ>yFKuC1;4y|Kn^~qR>|+bythn2$< z$*OsR8b5fA4_Zj12laaRVTW30)zuxm;P zK)P}AYy&I8c-}PUyiEF!QGf01g*=Ze3}(%oPN>DuSGF%qRmM{~;G!k}5@x|o&h}kD z6I%d!LIHml3%hbq`sGYq#QTn&zqxE%fv&Cw`cRu~*3>WWYI~`^TyW4i^O`m?!OJ~m zMQ8fM|GrO*{1<=lrTSq)7f*j<2jgFv%9p&y)^Mea&h3cP+`YhfksI;!7y!C`x$I;XbgarU|3 zD1+vRvkJUFLyxMgXoYhA@%?tn>3k1PgH4BtIx?dXCkKq}6y8%*K312BB#zbY((g%E zHJ#lmn*_n-Z|a(9)IQTkAo7I_pZa1c;O4s!apKje?g6!*IQ`hm5vMXacdDh2h#%ut zpPU7F?3r_YIK{~78Mi-I5iX4r=mi0x(nz;FCFb@=pRi~*+DSrwdR|4nMKZPeIAe%b zPx#44lAm4P>nUR=M{Ws>LqR*KVUhUl*PNkN;O9h2nTyrpy$T*KgaX_L8;T){i7NITe2Ek$C8qju2ziQiVj#eg&*q&f~u@%J6$|2{m zxwpwz2CRKiw_l0PU6U+seEmnAm{HUcSY?cg(eX1orll_}6+-a+eD71ApRfg<<)zjN ze%q3_nEU}&u_w&%{^AfoKRT8;*DK8y$~I5$7qEnJd_8PCJZs?agDAHQUg7=wZk7I^s}p!kL_c1aEiOr zW7@_d`LzqODBP_E`1HhZs>EN(#?yESl>|N$$3#jcZVBevw#An?g^bJ&&f6)>z4Zis z>>fLf#~2aS(YR4@NVkI>HRE{^Ws7B3{Hs9zGH=R002%M7T< zNFL$W9`{CpB#0ss44MM#>!8B<_t~LzLm;HDPcb|h@9$SB(>pFNbzNf-4n9l!T~?sc zRLIBN1TIMP{qCt_jhR(ESrH__s2T2_+v51CcK}9Z}7S1Rh%M zsX~qy%Jth0j_mEngBgH0xoOhb&#SE^w`b+##1iznQVx6$msOWV;4J##-?cOU&QZym zAPyE-5EbvMDiCZOk&ItMP@^T$Kn8NA}1Ou%WA zor_}LiHL!Y1@M28nXC37T<32FF<;`A=IFlvRuxrMgC_d2{xXYbj98=7g2~{@v<4XZVc2K3 zU`|uS~_oquW=xn|3HjM-&|Y#hNRN()v2A@o(*& z;ZuHoxD`ry{@x8Lc>+ybKwiV!Yel>Zg%r>Jkxj?dNTL74s0Omu6Di>}IbzWXd^*6)Wb94H zM*Q9@A`D&-T@*ggx6X;o$#3lDqFLv;v&OqFr(2(`nczyCsA+@c5*(V}Tn0_1`bp8i z{9*0C*k&tj$Pvxi%(J~M1i5crJC-h;7NH^oeF#l<#bfplT%qX-jzJwjAB_xLMLFd2X6!mhXL*}@P`WSsrb6SKI=7Z_-Swn4R;+19d2{HA4` z^X>{ZFTskq0v~pVqE@meXUuLAO@#bc>QR7(6qut1`%6;Q?dGbJzb4A<^PC{$!+ov6 zhx8rFB%AQaPaAm@<)UID%JVjN$t2P3kqW(?6FO75B5zV1wvx~|l;OH9;m8%b@-sA< z@9CidcxYCQ&ToUcIj*JR^XrwfF;p+;%IKRSyqNYQmT|sk8_xuowlsrXMO(%kHVcM2 zY>X0W)3PicfXv!Jgwr^6JfW1K>2cqx+}r(6d5ix!J(MORo(|`8_`hW6FM~PsDc1|_ z?<9wIO#ESSTsB+Vl12uhqIY-cK!!v7ih+J}qTVaiNT~1&5UVzB!stWc2Z6_VlYGo_ zw!(N5pQ^Lo4Ix2tYY%CNV%|l)dtYU^z`yi(+9O2hZb}{3#r_Q%epMv0^t*}{$80+9+JkQ0{)BGZR;ZmK~gCZ$6slD zoCh()s4Z62j28s0RtWSAAkRE8ld>WJ59+4rSP8A!^SpB$}x>uR)%w3=*O zjgx+QFZjGv)8tw)I>v~p z10W?*_b`b#)WllgNq(l2<(V<LN5n`L=1$G0tRkJ^B^k7QomP6}Q?ooIZY?K`;NJ zssC2sRqvhJPKLwjBBjt&=)W7B{)Iq31V3)ephDclA3q;BWF)e4u%%YF;~mGnPUyIQ zDM@h`+YkDxoDvqLKj@nUSR8mL>RBifTVT%4ttb*Ei73_yZL2+lUj?-q#|0v87xCqq zg{y?dU3;P^v$FnL{J{RSg`}RDU0};nc0woq*U=zZ@j%0fq9R&tpwhwQx>U!|dA_s8@v3mI%2tNYvhmew{Tw?KZBhb@+8zkV zLNYBZ8FZB$>*Mh+y+v=}BEj(y&pfAy5$f9_-d_tL!AA1JXK?l(&4Nfdxy31)7cb}k zw2_)h=&pF-+!^l!U0G}>qp+bb7nOfv^_KPLFCY!q&f;?98aMtI_?NMoCOlD00!rsF zF#FUzbk2DYN+^)xZ25-c;d|nL^4=Dq>b;BXvSrQhO`1A$--7*@X1uOG`%DDyZ{Xy& z&Z%7fU}zDGq*%p}qGMwmJ>gepQ#)t&0LXOKZ+$w%ViP>m4KB6hlB=)WRlKnAKy0eA zadXqZ*#498Noo5Hjcb!Mx@0eWP1N*D!NekAKC~3hA^mjozhC}dBVkV%T}-VsflWVZ)1lN090{AZqOYfR*wEw1ke6Ciz&ycHV*P~1rf9ZmTSPf`o*1E|AhA+&Q~|dJ zlrGSFW0|MFxKIV^sIkNG+-tb3SFN^WWwhk|e*dt3KAcYNCYjbTsFfdKs2Js&;cxRU zNqocCA^nIa*BHzfJp9~G`bW`7e(|i@L)63COhYcb92x05uWT2^lLDlCX9=cd6JzWQ>M~5=670+1RBSC` zj14{BIlGP5x4e~JB$Bt~4sg6b4X4k(v+5oOF#N}Lcd*oP2H@W227uu2H}EYMS2a)w#vJJ{rdgt8Xrjgg(Ztyn zgRZCX#9SW1g1HmqlbYLFRH7~Qu8}UbQJ?G$jdFc)ELn54CZFsjR|rtSPS@LZLe&Pw zJoyTi`yJdKSEGRwxAzK5IIsbJ>gPu?*;|n9AMDB?12dJ}ihYNtd+XqCs14;h@4f5K zn`P-oQi(dQ{r2h!3;YjpmoHleK>kpuXRCue_uSLCAam@@Q|K*PLl=Fl8@AoXz0tWR z4}$y>O>bchFQkrO=S#fKhLa+Lh5N+2{1=sBMav)OHtYWGn{nuzPo_@fGtPdqGBXF? zUsiQCoWBKo4(fP$>>McSkMCg%co;W=M!bg$%gM*>Su;Ipy9m(S7Hnoqvo4+>ci9q) zzOqw5jAoYM_KQ#S;|(P^R67-hNBbx8+VXx-OAmj89{t2rJ>e zFuMh3E)wsbUuhJ_nCQ>l4%{SU%wHsk8%vjSsa=XieW8`s5$y`N`4 zv)5Ypy6>A3x_71Moslw&W%~&#AgX0@OV`$=JC_fQqS#uJXu2F)aa%`axzT;1Rx3#> zQg9Eha#*K(?<;y}!NcIJN`PT#a)mCg4O???cRfU>PKB*WMlfn#BtH|kYq<0tF(T?I zPEzRB5BsSjZ{BJ+vcwxILpwf9h3R6EH##}UOY z>STWH+0oJ^owq7p6Cwx4 z%}RrB#wK_ce2lsWTYUh6=+bS6>ypkMXXT>qawPfB5FPFGA~#Rtn4^-LC|=zskDJ$0 zvSSk`5Uy1)#z}2Vn)uh4h#z1%UiV$SPZ zJPTz=8sZ8%C#q_j#TeI<0UImGnIG>hcas;uT+Oq!XY>@lI`O;jLor((Jn()JpKWr< zS!z5kab=t{=CID+?TX5N&D5NA?#kLP6Evf)F4g?7h|yNinO<*-Gx%s}^rHUhF6qI? z5Ktte5w*1%s{+nW-qbz)_UNLLOf*{juC~BM>n9B74O+8_ShZfBi;5#LnD8x(O%N(g zet*$H%-j^xsCaoe<#%vX=QK0=Evv(M1*Wu17w%uCJafCkMySdS=9_v2C=H6gMYVdr zFJ*rLdI$4WuDp-yGosAWeliG*6lEzH?zP=%$natspS*lvITO$yFM7Xy?<!Q+)yZ`{Wo#ir{IY5KO^d9u>pENP-& zN}^Ph{g7^B!ERTsQ5o3ypYsL#q{?Q_z_?J8cVo`<@&NC>Wi0iyLp|R*p)O0i=8qJW zPN>27a}+gD`1M(mUgp(lEBT|AWOt7B)n zeTvjDsh?BR6-wa=C4c`Wo|3(=@7CG6I$*#4Oo;tu1ImlD@Y}so$H?e`uK+R)uM?oU zAnhkS|DdYN@I02P5?ew&I#}eyhxxlo@-ju6c(2h)lEI6Sx|byo7RcU4#vuG)OnLK` z)0IWGPf|1HzC-Ny7xPcR21=w*1ZmNUQdj_^TWpX{s-&20P6o59EF`_|oM?%AI~d)r zA0~i_Z@uiy#&03W(ou0@5iHAaH&APL|I=jg%__xXWc+hf^{U+SA~%{UyY<_-f6A*< z{yyFMvD-NVYZIBacb6z6gO?Zq#9D#9#nk93KKW6I4s+bYFa`!eKiQ2T)_P~T{E@wk z)P`vVEdvgGu1C~0PySgVO8!)^G_sP37-6c*95Rq*u4SmkTWMyFchUU(lr^L1!x};M z2phWe61UC6YMG{TwgMUpqe4=rs7>%l~XxY>gd#Ye3{t=;=VJN|3 zioVn+TpX#I%%odoeFuLXXB&LLRAWvWn0yHrke(cqi72Y3)>y*$2@RbS98}sR@}lv~ zatB3fTOiKOR8f6NHaum_-#@qi#E?Olk`)x?HWtY3DBKddjo{1C;LBZ8NB*T7>%7&?_ zYRt%;&Eyu}R!+)i&>Vm4OO3r!NwRz!Iafj*6Mt`!`&bUH4vH(wgo2TV*txCd1Lu&P z+d1jgQ^=v0`U~Im5{E7x@`?~t)xR_QLJ<(iTkhz&&_Bq$<7t- zu9&8pMc?$@`k`=$ViVuj!p+TPbi^V#Na_ROfFh{z8G+PBAxh}C^wq|`9*yX+0vH^I z_+D8k+maZ{##!opNGj$^43@ZKxc+;LxC;Un3^{-OS=$bK#tcw{yR{MWAv&>1nqNTd z*QBaUo86g+6-mVGrv_c3#@%6*+vTHwo+e6l`$rvh8j1pj;+3G$(fNw(n0DoG9|S$C zmbIrd^o|&aV&f$F{I)VXphKx*zXl{d2bvsBUlF=#ZoZnmZ?MdE!-2}KP!%I@*TV|1 z)^3RtFViaCQY#dLll13QHIWGz+TLhxtLn@Jc??|~Mz_g!C{@71r#$7DKhj3)pKrPN zny=qLn)+zBGEFNaek5Ioo6eGmlO2DWw|KGl{NH6hXy~(&M8;9E%YN9RMPPeqx%7w9 zpSwP6f9B2qs7rIxw2c9R?^X7GrEn}=E8^k1;1dGnIuyJhTx0&Vz0Hw!P#=mvSS?94 zhOza|UA9ABP<8r!tAUfr&Yr$uSRy*=MQ=*cr8zsJB$1Om;?#zVG(Ig$xkRwZjljhH zY@hBv4S&fOaSTu%AO9>1VuF9n4d{>1Z>rS77pR^mrp~gZ1`_7RYODJs`4}+t zm_jYhKB^(|67dpghUmUIdKYG(BM|e?@%5FPx?+vgyLI&>=M4MF3O{?@vST29@>Gc0 z6jiou`YI8v6}9YQzRvxPs7$7;_6~6}y;#8y$t7!Bt7goDkQsOI**V%qc4U{zLt3TO z7GC^ar~b1v9*ikrlo0`g=b1Ow7Qp;ampV;4R|eK^;JVuTB=m|gA$_){=;a|>OHYp? z*M(jDff+?CHwGq>&tT<^W6Fj?K{4JdeqDMn>{aXd`-1)8cSp%m0{62#z8Urg?ak*G z`!RNArAjPwLyM4T$EA3J92v;>j%batG44dBCZ<)+_Rn=wr;F)=70C{-;35=g9)I@^ z{$1Tro4^)ImhKrse&P*|xbbW!gLI{Ui-nTAA8`)#i2ichc_s0pI*%(l!uXN4Tq7YH zjyq}p?rFTw?}ulYj=NI7Sf$zWS6YF()et1!vZeu3K1zdWXyM6e#|QZfI?bIC$QuV8 ztCOPx&did@G>Gdkew=&j^9g-^v%_j>R*1zkWf8tAd zm$P!9L?*zz-6hO4@*u|UZV!Z;6)~ehR!lq&$0BD4oUqbGUZZ6aP zPFw06P=45RC>Tts^KFrJ-Pen~&-H~oPF8|?)SDMZ-PV8NBV;K;yUSFbCRA$?(3XbR?UA1 z6^f!U?J}ODbK1JLHV`R!fSO-8GF6$I+5|~$DE6w-IvlsM$K_Q&7*=Gb?>ah=eZO7h{tdw|yDyFXZ+@NT zxJ?Qe2kSG9o^O{$zKQxa@KdoeQQ1S8hw^jeSyk5?_6C*L$m%^_ZuhX3l7=`sa>!Erm<7pz^dvBp$!C9e(nW;SNM7w_oi` zqtF~t@}ttHJZu#kjvKANCZyj(_jcCJ0X>4v=cSA1loMb3jPI<_;M!k9ZyGFO5NdJ@TBxJ{vb1UMa3`l~)=BHx z7>^e`{}RrG(UyT}C%yi(i>a~~v|t0VIYFtFb)ZygIZh3{*z^zIRJ$`04k~^=0=Rc5 zA2d#<=bSoL0o^XDVlD|dXT5$dE}-~iw*z#4vXTc?Tq%bsC>FzWgb+G{>1_crE!i0G znINQ^^;9jq!O{UiXO*uP)w9&K+%UZ>tR!H1A`*`g542bFJl-q4Z~a>`5;f7S0t1`% zN8>&9Qj}tv;NdSRumHJ@yCN80hrisekyRLlOM$o5oW}HgwgaNwVyHwp&Fpv!N^ zvlFRwV{BSYcfwex18=rS&_~v1h-w7mEx3>ubfT#@jOch1q1OS#$Mp#78ZGbR5P+iG zBkph7*4HONV*gz$ zae-it)NI`g57&GbG5w2_7jmPz7<4*(KUDk%rcbH)&Ldiih5>uMNwEEdkwy!4sP%o# zBe6SYOI2ay!LLZ|exV%Gv=Xa!d^!4{B)zjjfyUGntLPvO<4~ITg3w#wi0v1(#zE!2 z+l|c($yo*eRuK8MkIA;%VTE;ZP=rIL&h3;I%Z2H&z3~WW`6GR;82^)+&pc&Q_DOK=oG%;#%=wb)^^ z=y7{{k36|hsx&k>hw-{l@8rl6gcDDRPlo-dMeAo<=;{P4PTgEpJ+_21aRltf}dcXPr5 zI_uWt#-h$%2X{JsYIo}^WTPG49_jhC91%TL!p7!9|0~UX)exnLjk*{>HD{4hU)xw? z3W7}9iVo<{rEj})?F*>GT8_FIKcb}8E>OIiBJ(acn5K<@6n5UJ+OEdMo})#_Q+Q@w zN$9Zc05~-3f{WXvh2g(>@q?I;&2$Pe6y2>6mR$o>%STm~LF*L_TU~6+G;f`Hom9yO zSP|PdE{#>gHGE5F*6B*BY`L}f9YCX)dn8KjA8<|n*tI>5Mj)*yqMSqeoXFHS-a4(Q zc}-ZnpXVJ%rDO^1oLlr+I}sYv;N@NkF~UbV@VzL(432Kw-}t_%1wusoo!#uCVX+HN9wYTA!+7)M8ZX z#dB#MLSkW>a(4gB1FW0$l9jZsgK2%qjTMzjy(xnze<8SX48@vFxUw+OLF=MP3z;)` z=lKSt?n>L4bi!Xt`}-%CSy&Xd%{9QkjSS6-^a~#* zc~I$~^SpBK%~y)(F?C_tTCb+_t8o^?IBE)E49~)rge`=^)Ru{pMz~EoRy`WH2iw7- zw?h);N&Y8zPlBY7C?+K*ltS{(*+o#kK>#<={ROkufwBbf7igpRcj$W`NQacwp6!&=>*O&E6G+Aian7cK^# zYLu10`zF?dHnh=?m^k}3LS@Prp8wA;g7=dwGj*dpeyFI2NZH*FUWb4gfp3k%)wvt(Vd%k&IY6i0Gaf8q~w>756#b)X;DeE-f{;dx(o&3lA|Ga$i}nqmBNqQbze;( zMPgrWEH zzV5d$0`X3i#RFcF{F_du;R3qZzMG_g3bVhK{cKy-&yF|6V(y39&=CSfrG(5HkE0j0 zo3jYQX=Fij#+vA-ck{Nj#Rig_mNoNPPkq=Ruo_>D|EXsl`~rKFU#7{%+|Oyx1>jsz zIO0Xh?U+s;6+iRONS}*`x}aFUJfs2DJUZjK7N!Zy!fJG24<;$cw_Cnx?kd^5g=K+F z{LiAK`7_!ZkuN;L#SG|#>0gRycv6hl1})-!%|!gD;83uQV8>=pyL74%llF<%98ZJ} zD@ST{4oK++-;}mV&VEb1XYNP!@KSe|ARo&l>6l9Zgmk4%gx$4Q^~Zd|7cO+bK=t&k ztpe(A7{4dN|D5M9b6-S{{10OYJp}_#u$&Cs74>YNxUOTlhZVh2UPtCFIJSQaq}7j8 z%d_pv;Z=B`q;!n3#9gQx7ZiYcU_qrE4?;y|oHn$Oc!CL|YR{zxR2fIGjksW4V0cip zzn#Q zJHGZ690uHfsLWCH+e+u3sO*D|Y{`a&0f(Rt9HdL)Fk>(XK% zNy*{VJdRG2PT}g+ySO0%dAdIp1`-_B^{sbeJF z&~}|-9eAE>Zu>h7Pg`kwX^i@K<*`TeG%f?YET1R5B$)80_haob3Y_gj+l`8MJT2Vj za6qlDwoQ3y!2dKO*Dy{}f1BULFE|8BA69limkgTdDMz_}sq)m!&McfFECpVQ>vs0{0Ibn& zFU(Iy&3~~KBI7nxG=dVCA4tFaNEpklxK=->idjv_-y3*M6o+$SB8+`SP&wRaA%#0a z3e&*)WnD0r&J>CNV-h8v7f-orm{0v&y?q5Jr)_FEZ%J`PcZ7*^Rvjm6)N`{Xu4B`J z`wP;GlKc7RJ)_VNf+kfIcAF+P@1=rREe*l1A?z( z7UU~Ls^Pt{@KyC*-eT#SvV7{_$`57A@I3dI4gVEZclnJw2P6(^tSys=5mBZ|%{r5u z>}R({jmWr+70#z^Y8xKsimql*+R5Pj%vZ>wcZ2i?RR<7MEYTeWF)xcV>o0t%j61iK zs&dUL5KkF90p1?qPh8ji(3?6^4!-Y&*(L4*_ZUQO<99uVeb|z;n5IOI=j>iaXL*Y! zVD=?@?U$ckv3V+rT&Jw+&Yxah*$e1{cJRr{;wNp2;3&G`(*o_ctX?-0cA{YVKl`sD zCXhn1_A6r?>vxk$ElQ|wl~QJ*8R1_DDbZE7?X;iIusSW#2$wXm@+Z;>EoZoop$bDk z5%ku=AxA(xR@_si401-x_S&Rqp52UN`G}TS2&DJ%daIUhro{VmV9)o;zGx#js-nVE z5m;|K<0R(VvQ`~jq`BbiZzDDqPoI43#^f*L1YgF1#OP>5$_Qk#UhQ)tzw=x17gJgk zTwz`0zI*?6KO3dW?P;TRdh#%K`QDNQ6m7jOzIDgd%MR4J)Q{-=X#HycST%VJ7V21u zyZW9#X*w)B`b*r_tF@*0ue*EqF2{w+=zlhC6P&6%^%yCJsU{|}v?DTVaeW;6IvXW9 z7q~U#67ciI`!Szz4L^~l=x*%B<%aYw>ZM;mX!7>SB z^;Pe_UbtD9{v~&TQ)c%NUB0SDX1xKg#RX#xPsoieN}S!l)u>c~2M3_&-)iuK8mVi@ zmyg365qM&-(et=)cS&&wUR=&fDmdeT%#7|zKfIrf^S$qLOvHli^T2-)RtPRfNiv0; zycv`9pnbgREMn^;y_~TwSU-mEgJC%RD^ozy%r9?9`e!x-yz*F}q$Y2SdX(DBPvrX1 z7z{l6pFC6V6a8QdWmdPI>^+^ZwswD%RWTCL7Vwr>cSy?=kijjykl;$-=7pNuajy{U zD@AFglMq5X?nV7pNav7v&d~>nktJH5=HO7#N^)01?D%Qs3EMbH4eSynGkmi0<%16! zS8hKn zVFO_SsHg~;>t;;WB8yJr6p-$G(XKI1#6lYh#cXsnCKxq-gPq^%-m!%^ABiPrb4OTg zA2bB8;NuB{u%hV7E&94Aa66Btv~1oy_0=&#aGRaXV|aNW&sBfyI(-#rA{RAlyXl73 z3yUgVxtC`S$Ubjr9cDVD77W&GYqSr+J-eDYM?MHwRlT2&6 zXeS#oXg5O@h_H+Kk4AJdB3E1ur5??-5hao>M_hS|&D_(Q7s8Vl^aD@i_&Uyrz<9u$ zq?r%oK4Tz3qoN1Exe&qyN3kkAI>b+2WIK61u+XoxbE6G=9)rLo+jGUMUO3`zgPX0A z`n`i#M3{V|vj~AM zYEIhMWNdg@G4)wX=uNE9cKz2}xX^ngkz{z@7zz9k`)RMO)y1Gh@-#kLvAcp4m(Lim z#Q7+7P&Q^d{XahdHUV8bG0CzqW7Mk2RBYtZ;&C|y=DK?GdR+o(QWa226m`?g1-Cek zq#y5!autWaRVq`0d7fZ>tyGLrj~^(WSAckj#{b zrsur}WYj|2GH(U8nv!224`LcmD2qQ(yB5pi$4jV3WugJAaq&%>0^e0YW^fe2A{yF9 z5eyne><2A%4Fr8PO~Y@KVey=7IxiZ5-&D1oyLbWxs35ahkL|*^;#TDkBR^%ag5~lz z+7g7W8VvD!oU)lC1I9%v7r!(BvF7e5x%K1~PkcqLxg@3u`4vway~;9K1V@ql|A9tf zV`55(d9*p>i(yY&oX=ij(E@Je&8ianC7qz9HEM3vNFQR{dpgUYja*Xy0-60lO>SRR-by&tR_(lh2!YXCv;HHFnqYyS z2K6ST25TmgI?6aznUVuIIjNS2@P%qk47JKCx^kb3UQiu|0kDj}?ulK{*D zD79Q35JBPuUIaG}$+N%I>&T$Q0BbL|5TI||YE`#VOwUA#DoG?$WUa`Dp5R%?T{y_J zso10vo$>*xpCLHsj{ltaA5ZwEX{|WKSdw z_NSv{!!O-XqiE>_o>@1DqZKNF+t8BDc?}6|Gn)3mP(l6~-#9tZsjHmFQ;S_0Enq$x zj|FHnj2R)%@B~{CrJE z<-X5Wz@^`B-lpaJWj?etZZw+>J2D|EfC;TvhQVH*c_onznX9s>?ctY6lLfVnb@s{F zNF!j*V&Uwe)uEDH46?llu2}2KK)}7`M-|(vrUdQR+oRD+Do=sEHMa-_k88{ChWOBR zl(pVJF;8!&3M1f#rz_yf<*1^67&vCKz04oLg<}jTIN3ZB3wGtBfy>8nt?=%3K$~1b zZW#Mt9UWVFXO2QnYlJ1eNS%ER#UUKJR-T`*=feu_xOKQk)=g)&>gMR1YKnXH0THd_ zjba9f8}|I0+Z@%U5{TbF}|?nm{B)ru)TDgD*9S%Sb4tSqwKPErPyJ(!l@)8fJh zbDPoPIm6G%b{RKcMMSS|;$$NH%`3I#SrenI9Go18tlbYK`h_oT9P`eAsQv>T zKWK3qqP;oiD?BS%()-VT?avkd8j)`>kflz{6WSY(jC;HV=B085Q>HeKS+;l8!ttNl zc+^mYct^IV#L3uAi00d@7ruc-^&tU;nVOm+~gPU>!6?%(K7($pN&^> zW17DonMBFctL1fa(i=EL>KuO#!OAc31$AH8PO;JF;0`LG2vQNC3eQhT8nA=6E?K*W zMwtROS8JI072P*-C25rj+Dn1!(>*QW> zyld2Ks6;6q(vR;F)@>oDzld-Y!C!JhDoAxmo zx3Ew+KX?aA_$^=h(5PdqX6T4vi0lDVvRm)Vq& z=i1(^;XCLrh#5#c_wD5akJ7lAxFBRQy?ow6i=vlOjHnloQ1=EoiR3 znQM>=uDitEel%hn7>7=xN^8(kzqyh@S^2yyrDha^*@`*UbOEy6K$&CwJ(+pWX(eu4 zq3Uq<8N9JxZ}Qg^oH>C3BNnI zpw1#GKcVD0q~cfr<67?WTq(0qTJiO@yEB~n$uS`QGheVYLD|Df(CyBN$p*Uh-{y!- zvP30A8jG9xiUKYJ%!@35`cf#Pzzp>ZFOAa9r^flx4_a>Qk@yx!m2_0y& zui$6YI4WkE>DFt0HbYL;4K#G^i-%^iOrJ?orRjlzqH!AM(5r@-jaaYa)T!&xo!5Zt zMv938=L{AwUTlRFn@Aq~yf2pL^_*kt+@nISemtoVjsEn=+?b@wp>7=nH6`radIVch zP}J5dS~GO4)B6>B$3`N*@=mD*Ml@kO4I`Z345F_3SK#Rjmi~$y|PpetcGn%VJO)C5;373^O^0Bs-?y$ZE z5eSG~u5*l-^@#Ne`QC(6+#+pB5gbLOmfay}5kl8T-ae&o$hST1W_DLT+A++0399*_ zXeo$;mZYW-#zEF!JK?HE&NQ$0?R1$ zN)zIZqY94&XVw!Civx7erM?{$Wpb zJiAq?EV?*Ky!G%kYByqr6&vbtYZdM{h~>wl_u(4yQ7g@H7LIVZv?)%mZ0f=e4HTam zjE+$+KB9a62$+^(Xf1auGcyo37d<8wm#)P1XNP=Fn0NpifTvd!^cS(L&0vLcI5JLK z)66m{QcRJVr8DnP-gPbJUi8k7xu0bra^H4qmt%2lP3hwvX%E$WFNm4NF;#-z)Kj(F zQ`Vm8MOD~X1xa*eyu$_Egx)G7K;rHiCB|4f1gZp7WCB79jrn(|s?+uSsr|CK2Z43T&0ExS6S3Y#cE%h>JAw!7< zjJw5KW9Vzk%$dX9B`1U@3LK$h%g)tyN9C_J0B4>DnHe1O+Q~Z#gd-eM(!#cH9~}6o z%xU*{J{>+9KDJ~#ltI4nTdaZUcwU2c%1gyY~4O#GbrkbT8o<+xyuCgC_2105G z0r>$7J8SybR)~4&Uv;6R*n*k5{XcF`9+=oJ7+l}Ok zr}No}=wcA1sF1##c6Zf7srD#f*aBr)9&Cln98u=1tiq1i6Dc4*|9;|=1%G&atx0x9 z-vY~t^nf_of^S8j);}=i_xPSjI!a6^!7RIRo*^5;OgO(;h}1l^jS6)PYJ z8Pyy606W+Z;805VAr2+OzLQ>@dVr}JnEheX2SG*B$H?pql;y}h3gnXl$VX#xOtg{A zC)CU@V$5=(@ys*|#I~=594wp(RIbPkfXPbQZD-U>tf)1wWkYf=90?XIz;LjdNuNW% zovhitOi380lH-zvk+;x$g-D~8X&OWJ&%)2UF`mG0(MO*C1TOpnox?mXz$6coJycI+ z(&Z@}%)ES6tM4Mmfd3{{+c z7$GAWXdeZOIk*`Ss5w$G7K~@MAtCqcFumIICH;F)r-06ARcTZ`o0c^>O_O~id>I4h zLVO&S$naIzqCVd6ttBP8D816P2@_q?ugcnp?%8b(Pcwz|LcU(L)*%XFP}IU(V5IgW za0jCFX!0t*uj133H6$zIC?L1!2S`LLWkCNRp%Om*7A(^rI}2@@>ik&Qt_}!Q(GCn_ zm}Hx?qB0~(#|b|$taHj|8+2Im$%_X1rQF2*c@{qk_yV&v%%c_tuxx~ckX!3 z053;`b3h0|a&C=}8@J>^tn4N$$CqNfK7ot)4TdBhYs-9x(B$Zc4_EC| zJmMLy82+Si57KjJ31F<7Z??k2qG`>@`!Jr(!5IgFNLoikij0%$x7Y7cnnw3;o+Gk^ zC|2NhTf3SJZ-?q2Q4wEAj6V{*h*%V4PYHGR0)GKhGUKX`ZYM2mem!$Xseq$YbnZ{P zI#Q{F-#!*9ThZjebmJb8+9f5SE%@ekvR`xV|JgEI=uN3$Hys!rucvqPPRX&Jye%Qa zRP{sig&Cw2(^gFkWPHDSUN~>1K6QK7C}y(Y6}p3+U zrFnW0YuFb}J}&TBcM(UN)N*-T65+rkB2O9qF6O@S)eZ~FDiz_9>0z1P&zMc$%TF?J zOp3{nT%EAn{FC z39wM_sU3s62p;K69yBq~)A8E2LWL|c7{ILY`sx8|Z9Q z83?f4uOpEZ|50IF)l!r@A|V7z;8S}2h=ywZ`U=$T;A9PJm_CCu!b&Rm=LfnS&Viwc z-%@A|;tl%-u(i*93$0~s`JSZmL%97541e9a!awYR>*Z%Q>-nB5kao5=2H1`3AM9?9 zsF~45=?p6S0oZEj>9Yn~ok7jYErd>geYx=vylXXdBkz4ysP6aj&-d_!3%16r=}>IW z@L5P^u#KlWOmn%!7~c$^o!{VMEoQF&wPh^#x^E#gsllmduhUFdMQO_N#-{dw7NHaU zBzEJ;xtyHV2mWql+|SAkZBLq>Ay5VF{jwm6Dq`H+z+hUga<*OZ&bYwMC@aM_MlC;n zK(j{k6>>xK2Y?c$=bUDiWV2flZ^+kZsY)8IDC1yW`awu9s>!L^D=131r1v=<;Brbq z`y%I2;nY$GkZDN!>cPDZk5ImV2J`!Taw^X|h+6SNC}G-2po^Ti7f1uMT9lB2&-3SS z-`AZb1U0tKRNG(31IV9C?*WJ^1Z1JW%NVBki_Q(Y4ch-e4^{$Kl-6u3{VmXbdS+b0 zvrtbs%;rfOwykqw5;qpJ=|m+Nnv^3I_hvvxJ&Cc--K&Ae8yR*WgYwtfD0v;PS7IPB zV(hj`EkbF%BvZ^6#|t4Z{gwU=vY0K22#)YdyG<4VgK=YP@t1fyv8&XM6^mNRw$^keGzMfel0B~taK^d=y=4JFwx|!@!4cu~no2{GE%rF`2K|~S{q;}s ziy`urU3HH->UUi^$^9-HUxhUK@`Dm-&ivh-w31J_Gdq|T`<$n6r9dyh&U(gSIpaSy z7LAO3Ay3A-ebU)&aDG|33n@ecW7PpYmnFGZN`-jRT&+p*kWQvo?}mILLl-J%nie$z zwbu3H%vR2Q`$<%@L6?#k+~0~nXD6N5ufoKG`yGD#+i9nv7(4N}sL3@|W53?K{)GIW2O z_5IFyeV?^vJ!_u7cHh^&_P(RlRpqfU$uLn+P_PvhWHeDw(6&)fo;aaDfBX`S`9$aO zh2g4T;DLgIMfjiJ6O^o+SC1c`cxcK?q0~%~?>+uOwUJbjL_w)fz`8X@LwO=+swg9= z?epZI8=A}j0`9afK2cyfz%tMK6p7DI6UI5?_mucmp&-&Ysw+j&pgfQC+bODv80Wja zsSSz!e!@hLZS;h77QcYq*eB!#p9On<%n~ZAElDRm6;Aiqg}|XxRnKS25mPBwcO&~A zs(H8G=ToBP*Nd&alMlBK*Rah=fePf+<;hO}mfq&ca&p)Bw9PmoVY-tJ(l-ZgwAzXl zfGWETUx-h;^rF-!^=7zN?PVMT!79GDxqElhhm)&4W{6juV5-qpY6A&JJrzJ2*@0$m*@W0+FZ=!UStgk4ZBE>Hj0~$g!;zfZ2MdUUxA(efZo*gp=JzPa5xu`z}uA2X{R(k_}FHVN`t3EQ~1 z7(uF`!7VnhBQe(DM8DgvAV@^}d5`xw^4{Sg!Jj_TVM;_g-$M8?lj}Sr?2w`O{seXYAUbEvmbJg#i(BQ|57m&dmm*Sb=!=MJ% zPj^rA3P7(TK}xb&iiuFy;IBbswr#J$SNf)%BZ$LWQAzRhA?=rT(@5`3#7F9XY*5D@ z!?!52&Xl3|qOo!N=w&`uC3F|hK%<;*pVj~Q(H_O7a|+3 zI4|;Ur;}Uf?>gaPF=rb3e8DcjS|z9HI!$6iAxeS#c-S_l&D5?}lcB4RVLPvlI-fvz0 zOwB3!7zH=4j>I?-DoVw@!`ON(ftD}dGfl+S!?FUMwz(sb<#T! z3yCUj?x#T(apHPGvNq^tYJASa2iA#XZpA&&Tb>&pvJ`Iy9 z+Pxf+z-6EVFtajS2Mb40CnaEt2>P*pnmsgE>*mK9teL`cKl-59X^7yii6d`E{!Uq| z3464^41-oIg_!b|kYi?QSUeW9vEb9Jmtpo#Q~zwta37kxrIi<}D{^_>J;=-J!y}2( zI35h7l)y(Lat7nT@NZ=T$nMwBdEHniLoBoV;LdX+e1*+zXD7}*bn$+fWNNd{hC`P` zi+xBqwVKvO7*ia5p^w_$okGxqR@)2sB&UfO-5IT9!i)b|V~H*DRRWh-8(mhRK1e>s zQc*8?1VYQ7^=GApui&elqT8IZqfwd2i_%vWlQLNTQH7Shu6gxa70y({GZY&*;X;NTtlrG0UlyZvBSQZ#Y^~npW)6nHwFYgRtBrB1FpS4 zR6E493dEF^->(X7G*VBhq~N~s9Nri`t2Q{c_HC9{B6!dV8n-C#v@E$npQFl-ne}-) z?7x?7 zEs4^oWhEvXKdh59q1sEBCbG;E=&8E9MsVz zkbu@O`La}j!oapD;NH7Dw7{%rtGBuq6ovp_>m_i#Wb1w<;nc<%dF%6xa?AE>+B`2; zXKiWtS^nGEwYf9Cb(Vb3?+1*(AK&3{ec^e;mE}8X2%)WpVM) zU%dgPu23(hm}op(!D6@d{ngM7r2a?gI(D4dJBsA@S0{Lc>7!#8J0^0Q zIgr=KOuw6$^9?%MGCZp?-;cT_|6=(_ z$jQ6PusRfN&ET-H5#0*Ln~F3PNdjhd5t$3C9By%xD&hlGvYPru}eMk#a-3V zE%q$Bk|-PEr^`W>lkWl}x|RY>cDHO#6t-m273B*2h4j})Y-OrdiMF%oOrVE-MSJF!yoU(A z$KXT#i!q9wPN3d!LX|1sxEGi&Tx7YafCTR)n`2~-xf?fAbFBhCg6~Q~ZkOnXPa}eA zQ}ZPSNjtij_L59Rp+cM#TqHKIsU+$Dsg1IJo7sS0C}^m0oI5Eb#_q%t5Ch2UU(V!h z3CngZ=Xs5!X>&U?BSl@Kn>t@GM0-&k4JVxdD& zVZVJiFr84#-f!R3x*2os?fgc9zoZ4&+`vBvAxC$-kJkk7!;TUah z6>U-07bT;{B5~cEJ4^jODBY%!V(7@}(ot`%##6IbtG%asz&}dyNl1Y+nlydh|ZBs03vIL1D|d#q5dhqA%VW#;9@Bbcvs zhS&+iHu`GhiLJ8FKFp8a`F^)x7eH1q8$&Y(2#srhNXA{1EvY;AUtWIU?>=$@OS}kr zS+86jK`3j`t?L+<>D8ky#|)wl8>7R zpCLRa<9QJ5#RT{QnZ0_tbM7wu0Eckqs+dr-v zFI5?GBoabyFF5VChzc%VyTwV(!X=1uFsq{ocbwJ{lnq02JRiZ8hE;YY$r*5}F!N4M zlA2Iel9obU!QouXk?~m)d*4`VGcL?s_V zqrMR(Cu{}a&d6F8+nf?~aGf%`K;}Wf_@MoH5ug(ok2z#Lj~J@<3P2Wq&LzAOCZE!h zFeO^6%oap1*tEF!EbYUnvZWvPqJPieLp$%)68)S#PK z+3@7v%x}%(Xbte;eA%Y^3Oq~i6+3zyG;^{1OQ}<{i;XrAasLA3@~|PjBA7;F76wtr zGyI)Cy1Dyy=n$m4Z1tb=o=U6R~W1Ort7o zi!hp01Tl`TGntO)hC0>92p;RQaKhp@E-Z-_9hUd5MC)6Ta4!`Izu{mxND?k_IR93- zZ*{3-(vyieK%}7I`#q@BbtFN`1s{exALjW%AU|EDMiZKF(3Bp%fk2%N`<1A;hP^DpzuZE8nZO&j*pk+EdBVD=k55 zM_+_K{N-;4^1|m|xnV=Hru?}zXx8OEWjH3I??1Yq@oNZR1}Cw}RiNx-Zl$gEH%9p)?#s>LT;%ZPfF^%NtbNio}oCOs{>siqUCh5hY?M_b163}_qq(QlHg(!t{8 zS!*{@u_9R!RctgGI*!!?l1=%{Lj`zv#$9go{X}~6q#ByTyCy3qpD#8Nslp-C!78m< z{J!f~!j)gEt&jQVxrw7bc7i9t`)aftzva9Gf>*->uEnK$5FeMkEGL)L23#b1UxN=n zhb4&;^qidDCopub!0JEk4Jqz}O}$4pfcMYqTD55Y0^mPLgo>kHdMu^|XDbO0^3(T$ zxkp|QerPB40@K&Ae5jZiJkLw*FLJI0>VUQY_djnG^_=g5KNN_}_;V{iBbRepDx4I7<=^crANr(=Gu3Vl zc9vFB={q79U3;U}j@sXn#L_fh68DgQ?2C7R4oc~1ZV$^2@Cy8WbjNWGffRO&fdWkv z6xrX2O1}U>uRMye7{+Zp4b%!n!bh@Y&48RCS{d)Ok;mFFO#i4^<{TOLZ#h+qoboX{ zsj_lOA=X{Mphr%)jnx&SfhuTe6d1_flI(g4NV62WR>$)wTZDpMMBx(;veCp& z*=IMQ3T!>ermb@^`c0o8Z?^y=9) zgov~xoaN37DfMlwrCyM6Ba3;L7yU2T62}#dJ!qT zJ#CE0clLX_mqRTIry!G3c+O0$p%L`P|t7O9%M(YuAfmJB2Rqh44Zp%s1_a{(yLO+wf z=F{YGr~PKO#*696PEhQ+D;$KSdrzX@~n2Hercdg}}CRx;20amld zD>R#yE#k)^S`agpO@6?aY!3O_A+&Xe-m?dm4iz zE-3*3>xeUVY0q{gW5msw$FWoxO9ddP^)Ln_WU+3hpqa>nm^9tlYmPjRW)9KcJ-pN)8rI|Og7RcM~PJq8O`3$h0$sPfdpK6`N zlK2be#!A>2T6%{BbheDfh9xn3jylWLt3>tl_at`Ijx;Sd=_3P6@l7i(Nh8PcXtXH* z=j9KfA=T}5a6q>=Fe(<@;K|!%WRE#%+F++I`FBanr!8(6xXX zm^-2V3kb@gyN=b|gO$0H*{7?yu`ZQ2s`~gLOmZb{K|;|Jp#M9@Q>Y&t+9@P1o}J$w z8*(J+f7shIG^QstB0&XWT-X^A)VwxgebWSdt>Ntie2f>#AoP%~W&@Cb4ilrlUKk0Y zUDavYzmD_SjrjiUAHRp?!5P?4V;7a>*t7pB?TGI&#+bAi=7|x1xYHAN%*u~uAOB@` zRHGjwGg^1ZFLOcNX{a?upy#S7x zmkDTmb~m(c`6d0Al_(K{l^*JcY@61P&$J`E;>2fk6QC50n5muMn|?DxfdC^Q-5bFG z@5LJAk#h79f9J5^!Hdkl2nM5%1l#O#(yO`Esz}(HW6e2v(QJFgWO8*sM|*0O#jlOT zFqv5WV>)0$kn{fA>R}jtvTV{ka2sz=>M(;Gjpu#PulqK)-mFHKet|2?GD#}jyzPQ$ zXQG_jnqH;xZ_`rk!4PTnSqCElMz7|{&br!mWV4FjP|t(lp0uK4rz!=4;w*4*Dmg=l z@-9>i<1tme!|9DB#eH3<^a|;dL?MD3{gXw2kwtvBwY4K@-yYm z45(A_=k95k(3_ft24|&7L1?bWWs@^BA^eGdXq2ThZ62**Ax|(740?6X;6zRg8!xVb zfC*MA3uh%wC(&h@q;I07e~N-%MKW~>9GlGL64qwBo-CC|Qy+rQY*>%z8mt}jz1tsf z3QH^$gPiX`oca9e&PBSm$DH5ZwFNKTq#OQBnmqny5qKk90m88K{a^Ths&ZYp=MDvcX7~Xlqz!o3;4TbVn0#3pJ?7;DcoqbKT73# z@5RI}b;0y0y;>s+rqg5oRT!yvgm3fWfx>z4RcCc*PijS9?Y!)gjPl^ z-1^br7g4(U7IE+9ggfzIvC=_gqu&Hj4Di)rHL;^Fx=Bj}1238cfGMuL^=sI zvx&dS3RBY6Sdu|7VG^S4`hcfa*ECqXXjIWWOvHBjK{}Qjgq2ImH11N$?+&+^jcIXv zPFE@KU#HaU(i->n`ic;;pXm?|*?_n2Cx$b1X!_fyR0nfF$|nbR6()~5-|t@3^qv%z zHJJkKGsoF0gM@lYZ z#}9h`c(5`>lWrD`yoFJd5?1x4HNxJ~(|E+D!)8?K>$Te_1X#ecz(ra;e+iN|Ct`fv z!O4=4&Y;}{wZE7~{vjIuGB|-hAU}V4bWcgbI%^`UijD;bJ&6%TRVJ}BTg}m79#pzpQHSc6QbYHD;`fT zJ6#QPb~jHhOzAS}tr*~8td$jURd3GzR#7wC;EfUDrIgTGjzL;7sX@hlG`P2FJL_As zB-6r$Www&G8hxem3?!I*(C~GM9x!J}FUMv`|9K{U@ti?aLVoPfzMedVZ2G(j`nJtm zhy!c$TkI8w#m}Dj<-PdTBICgFg?jezl!~>8_2hL9n(i;_p{JeSJFY8GbvGEu$|73p4I8BC&5&3&UyloB}rgjP= zIx^wR*uod zCzs}ccx4k?k*lZfF;{FN+w{H5%4g}GKhR+J8_V0@5;>+5rIe=D1Pep4vW-b3y1bYm z9isvjR8bQ`^G$P8qGQEc<>USg*u_d;O>OW|!hHz;#7(}oB*Ym@n$i1f*Wlv35JOvY z@MHH4f_4=q%guVa7<~S+<-d4rPP^Pe7l$I!NAnMxQ5T3a;eoFtYfS4MeF0DdCc^ns z^Ex<}=yKPNoee#8dtl!-YpE19)BM#4yBqNswfQta8%TN2&rLBN{eYi(MwR0(O8L`} z;`OLq{;Sds`@4f%pTnpg?JkPtF`Tn*QC|)Z5+H+NgOS!Ww9;kJt3K%K0jwrTQ1lH$ zy)pGtf^^R#K4bLu#;V>YgDP%mv$9mHZ3x3Ump*mnqYr%`vsa*Oi5}byzyN5u~iN?4#(Mxahp9R2Rcc zJ;SR>R%4|sFHdpGZ5g}7?VSzVYFM99+LtC6U&st{mF{q|-Xy;=rvrZFAT^e-@#L;t zDkWpV-MWX`(n8*fQ?BAsn83+blISfH$CDb}3=_uL-^R9bwxNZIJy*LiRo^u~479 z-d{dIJ0ubFFjrAzbgUq%gwZ@*(PQLDGLaMK%5^PWQ=!}L)}r>ptlVxX>Q!&+Y2N-m zBdq&9Y`~{2&JvI68{rZA+KNLf(=KGU$ac7{pou1 z6H|CTR-FO!*_*cMPe;1V=){=L-u^uAkrqj;Cso8N1=LhYBCW^C@_LCWix8o`o%WlB z{xNNdkM^|Pi>($8=TVtOghq-Bd^1Z!mI9GufNHU?Kg17aY+#LJohc*4}%~tNik-%S8W{s&! z0CH@L08sS?X43u44IWJ5%5|TS(-NUOr~`|z)hRo2HN?u zUZ>$X2DT-R_*+h`j2}w7!w>h+dr$4n`|qOD@z#?+RQ)KHjT_Tw>9|@gcN$bvlv_fh zc(;IFryQ8bV_*+;40Uh9%d7k^A)=%O0wLUDydM5J^a2h?eayj;O5!r9 zDP}JV=8ILxD&gUw3tO!R?#qf1w~RndkUDRn!OO|Ml`{590b<7RfG0SH0c>G|w@gXl zXVR&OR0)~^8vM)o5$6B0sTTEEujPHG+Wqu}K?J;wtsNSzsXcLePyZV`SMbfI5R=_0 z`&pROXVn&uoL-N3dd$4D|NloTmbwO2f%)QtWLkuhB!g4?L9)OktAy zx{%Jz8h=U~45phrJVK zGA~olr}w@4DBEY2RZelJb9TCHHRA%0{H))|<>|e~=S5AzUap+52;P7QCmF8hGP!P6NTyuxof$vcQ zWq$Ui8ik5xXET) zmFS+&Eq^nFw|ZfCq%f3n(4%&@cz%?^FyG%E7jld8cX}T^im9lK<4XwRvnc9V@sNtf z@T087H%4$gx8ZVA{G(zKM0lI>iYn&WIBk&m(y!tg25D1@U*QIj>6d0|@`8h0xCZOk zhqbxFJj3IT7ggQW{Vqg*Y*?vUjuIb!MXJeh-MH&^q5t$m>gK0wkpU*aE1$L5GEHAx z1T5*n$-n--@gF@pymzD?`KKNKgbDBq#2|{iWf~KUHh6pX!2Yz04KpMlkX>cmAtt|i zLFImV@SG?gU#}LdPKYO)<~}j{QLrJ5nK5}I(tk8DAAp5D3)oT6OLk?Y#HB}M@^eXi zZy02T$niWZpRVji-IFH_o9AN@H$Bd;hG;lF?G6_axY_8LDf}+!%?VNkGp$aunm67C z#~zXpD7Q}D^`s#==A#6$_jSY_2oq^eG^sg< z&GAXM&`Z1asu+Jwp6+}clzGvR`$Ys4#98PwnOZhT_tcCp>Magq;WOU_u}eiw#ygoX z5j9RTAA$8)nzL|gpjQJ*D{m#+7tb$5r47%P532?o$ zpAsCt2rHzn#c}dRf1%eSHgDxm1nchph1Sb9GW=ALqYgHU>9o|RS*-qQc|9aR1fk68 zTo~**p(QXOX?qiL3x(b~2DCMK(dCA>O$M(!O)db0odwpkcQ&Qt=`qhZL${cS_9)N3 z`DMBuK5k-N>m-7-5`!MjzWmGCukp5zqBj$FH4=9LPrj%A)*w6NYs~N|b0bHyHY3UK zFNO18E2!L-t;4E2w_4hwJ0@r@gohe(EEz*?)jTyp;Q{BSb(2a(H54Vq)k(TV9mLIeA!9S;qO> za*fC39{gBH8|ySGBaZK~vqcib8Gk+x_Ij+bq@01d}x0qH_9q@4$>@zWkjNL zicm>&3?+X%8cKtbuKtqGuuLVBK}GjhMnEnvIy-L&H~-4G+nzfN)#9}c|j-siH3 zR1q77#DfKf^Njdw+@%b{TPBGDl6oP8`o;4E?4=PZZM#zu(>fwVvHhdEzTTt5TZhv$ zwTEkt2M2T{EORO~;LfVhP{UU0>{qD(v~)ghg`prqdxyn#krS(qW93toErzh-{NnU% z>fpOvDzTC{P1LL7^R}^%^54zZ{C;w5yuGGdeRQfAF0o>9@<`LSv)s5aJgSy&fPG5FNdLWO46`qzS#se3FKeFvV6{lSgNsSGD@Yi6(PJ`VQ@?u6(cNk^7bkq0T?yT$SloAleGd z#2A|2N~F~;Rl(7LCETEgY?ZOO1RY)HUZ^&?-5;c6KPIPqy_t4|iK9EQ2Ya9diI}Kb zl;h@NOWI)WuJ6+-efP+Wn{d#R$C0x@E5`^_bkn@8q2<>(4ybuXQ$yM?!oT~%{xpTH zxeg>#<oib_(_kK z*H${-qJqOL6!Er1NV`25hc=>2E@$LVt6jc?-1>uwVc_B#;1p`NG*ck!&@ASneZfdy z?pEOQ$g`WF*l~K1t#%`kJm~5D#-0!I5m5iLhlXNC5`{GTO!crf`D|0*J{Qx2vP=@O zb13tJ?X#qXmb?tGkrh8i}U;0`kP)A#cUeIBz zJ{2Qes5r|7wm8qzF^h+{r=Oj4#Cy2}(;=v(gNR_m(*a-65Y7w+-@m~W$h`Z(aAPK{ zr=2##t*wsiaf2Hbwxt)YYe8hOXH#pk$q8Jh#NJVy8tdRtag}pp|rLPQC5+;vS3@=NJw< z@iYAo7&oy)sf(co=AahUe(`WVQr&!dD?qj@zv4u=nDV~giS6yW9s!t9Ab^$M>gusX zG+Axt{&u-k9r9NZ9_}ih#n~`*5Xl4_{R&ZD4Wz(0q5AtU{Y1Kf{nTt^n`s2Mh*~1X z)ujS&Tv6^|b%s5Dpvb1Y-PvgWOQ(~s`Hdn5>|0ywuN7oV5cqUPC|V@?qN#F(tYR7V zz2Ln~+LY%LKH=-Wg^L_qGeOvQ3$tC^)4o>payC`rfFN%3 zUfI~RU%AW$Utvmjof_t z7p|-87+OwdlnCUMl+ivv`&V6UHh&sRFPT?X=1SG}u&=q^&%+TZcOpYI#Bfq(?p7G`8$D*~ljJ<)hkE z&;Es}{GSyD43}7s2uO-+hKnTR(0EL15uh-4u7bfe=WZ%&HWfII^|=nzUT?1`^-Yke zG0!?0sk!pbw-a|+2^~~Ecw_ermu-nbmR# zthhLB!~6T}Z_~^8R1hNCJVF-D#Td=jQi`FUjZ!Y<7eAD^%%$^(IClBl_D8!*)>4@W^lQiTHN~QfA&>j(|~$;dE5&unTH=}$6VH&If5hk-l-sC4=4D{Zm7))9$F8q^Hv(GBdHzC-<&OVhDre7~o31d#xMeAoef+eW(wFA1wvSN^=? zN~M#_ZSskC%y0&uJ-;Sv@0Za~SO}K6jv^|}RoNGgX-Y8W{Ti-;MqxbvIm?!{v|H{Z zz}CTDjR75z^%^R&4!%F!sM$oxlo36=n6JJ7rP566BDLqX``B%!$Ep;;+OMh=a$4%$3{yvw?y;sMVy2VOZQM$?J5uOuzTNZi>ZhZ*(@xBZ9hz z!Vd)MfCg~0PFG$BaZ{lJzrXuklrBdv_Ax!ldlion|2p1weP;&`uTiBb)rxpC3}MZ4~>rUhroP=Cir@EGAUBPS&jl>Yf(Ex z@p_x4bCr1M{Cx&uwZ=(Fgi3`kVi}Ji*RPgb)_V>f(_mNMIh{N>pNV zFA7|~vMkhLg37Ws{>6N`CPxS~Np)=vX5FBw|6I~4TgBtSZ zUaj@lAtKe$2WJ+7)CGRI+FhK>YBxPSTT%KHolLn zrRNZhQNCy07Fc#=N}muh=dW?#xL==P)F-#;{AF*CY2*R>UkQ)79LHpadIjZ|G#xsY z~4DP-R#?*Ck zfs2EFZbj2qJmie=_b3YPYs+Nnw%#GA8+KB%E4u4 zcO=x6fO8%i-6$vW|id)oh~dZQ=I#^nxP`dCK0v3BH_(dR$hQ!)bY z8c0i8awS@&G}cOsum)VsJop>-&HW+*(Amu?!yAAfavr~=)I-@5dOjtLTYZ(%5oiOhEr zZP;;vQi<&P`I&R^)i*|27m-ganJQ@q=oL@owu0ttQK`C<_ss(zet!AxQ%lqEpNppd z_f&mSi9rHJ2q`M22JHa**2XTLvphVXTSgCgl6*M!J6}?rTg3-_cO%DIJ~aqn3%RW$ zlDyEh!sCpG`;atz>yqn8@|7iP3`e<2X%Ch`?o+>dW)zZ;xrP2k7VAIJWk67 zfWAH2Bl>wuI#pDGr=i9CXA=+CEQHsLsu8Ol=6<%cVtd_I_@~L!8bz`Hf)Zcr+Ap)l z6%&ISF_E(0-oyZ)G7#0oUF(iqHF}owBS-P^OMpg{Fvc-YM}YfpIGI6WI!8qK`-odp z)T`cyZMEUWVC}($70%U_`t`fH1jjlbYNSu>Djpz$v?5wDJHLkpOo+ z@{3n?4Zp&HgGW&qoh$Q9gqdI83o_rV(%LSWF6PEw7%k-u1U&I_APl#_fro6y?>_l2 zK>QF$v?isCJPCWWYnLWJ!^c%#>Vv-~$#Y_}p&^3CehzX0 z9rcSh?z6J3No~`DPwWC)Ek8(<*xW=_U5zsK1_Tr7JbZ6UZsEvQtgz!C6<$*yW zwx;vp!ZlmZ8JbiV?`*5rp|((c^m_w~IKXwi(UX!lax?=ts8?ojcMG%*UGFwQJz8RL z=1#MHu_D4=Zq6@;b>O0*`LOa#Z4$cy2A`I|ZoB~0m%F~t?Sm5{DgPB7zv?kG?$tu6 z^P5(tj;q|b`$a;7YD0Hf5qO7zKxwPdfUe?QR}n zdY*~DKXVYLZ&)JcAJ{AxOOrsKu?*rs4_roUw{pLf7LCxOkGIbVNf2dW6h?qCxUhq- z1RjgZKT|i9#o^^xq*lc3ha^6^v8u%=B7-Q_`g{N~y3WDBpQB8`O@qOU@N2lSEr4%V z3GZmxJ3S6|%t+E_l6{9j8 zwj={=W~fb@Vkr@h7!t(i!QUl3>|ES~dujh$C?4OsBL=ZZ5`zIx`ca%KXA4#T)+ofR zkXe3W%-*^CiY}9^Yg>H~0GZ_~iV;P7uwx=d8W@~`>U$j^{~AdT5+1FwC6D%cQL^lv zD?0N7U~2_uQl!26z?zKJglLN=l_y9z;fk{88ydO^v>Zu@^P!mdZ8%Pi@!-+kgI|>0 z9FmI-T~p4NmV^Ql6i~2+ z<)rIcYz?5S<)!<$cY*`VPm$f)Q>wd0edYcgq&w$3%Zdk(E>2{lE`#CFCK!CEBA(Z&+9nGU_2rdz6j}e_HJ^Z<$A@VbP z9Bm%h#b#oiR>F8%*|X@BT~Pg0hRS_4l50tTd4)ja{V2~Naqrv zu4+PQwsFPBn?kH+AiehA3$dpiQ>QK&yzN86$05+}_MPyLTx`TcO-E8?+IJ?mXhXX} zF4*GM|0Wjrb8?v;0o>rQwAM+Xh*-1_yMriZFHDiCn-9_wo#hm#XCA}FWZ$7z))nT1 z?XgfM)z{<;966FpOn1=wHMBM%gC!->-13FP9y9(r$Xt!cZSBdVMUKn>FV;{iiKWIk(HU2iGsG@<4_58>xEgbH z{n)iHO2%Cc{Hu}5!M0%-d$7ZY{Ri>)A@u1~EGe;jGSqU{x@8b6h{YUwqu7DJcHeS3cfs)s-loQ$O;+&CM@ z;TAtHTI@QdEP|CmVWeH9cVl?*tXluM^P%_GuGf!DSN_5Pw-KsRMU(CF`q%7dh0=5y zgUTm>sjRGBfPEQe90RQpnt~C+97MTEgJ^4M!}YJhXP)2E@@t`zyni=IQ;R(C3|Gwa z_-f;RQ+&Z8)Mz4jabIVlJd@-EdwQjg9__}=p1rDkvXjVI_?EyTpd(Q7J|+7?-t8v3 zRfEk?$Xw3SMbC&~@MU<){2Y~;=R1-(BwYNpMp2HZYg3#Sq-eH^y265@=}w0pK%_eahDKoMk|BoX9iRKW*Wcyu;WM+( zS!bWMzO`r4Wqc=$p)-!~5HZTI9<#~*OnRVa!@HrQud1hUdRHHEh(7t>GY&-eqa^{G zr^7kQy4$mUTc@Q?ci|6*5oPAhZu7w&5A}m?do)A4=Aezo>s;pAzqfyQ8#TvE+AlR+ zsQlXYYZQ;%TXBmVg8UKir=!-06soxNRj;mXMuM;;Fv<2;lIQLJDJOw}3b|{^StXNJ zAs82aSOvD|j^#`gJy5G9+E?J(%9vlICVRK^7S~-w({)&*HmmYIVo%y!0*{DS?qTaf zG{{qpqErO7l@-Fb=s6FziRUJ$w0Li;RXgS&mKcdz@1-nsI)%GDav;%Kn}eS;G!(EH zv~qAs1y2w1KKqTc&N7W2ed2k6M%`DeI~ z;@ob2Y@xz{KYEHv1Wf9p{<{Z1r+UCMOzrE|Z$4+lvar@KuP=0we&@#~>D=X);IJ&9r1E%R5I zj4ryIC!pd__F7P+KgngFcFSA1@9JO4f8wfF){1igqaI6D~`ZRg$h`^;A~ zzVhfSOPS1C^Xf}zXH9|#JwuEnww;@gyy=jpeDACo-L?Ys?@$HsY)fCCpI&Pbru>p5 zTSKTn%~z2rY@Py($Kb+w0NP3BA5#t#*PKxAk>I-^yI`>?BhyreLN!m~ZX}C^{+cIj z=!3NvVAkiQVpXFIcR&{Ux1$(abZkTp?)S(rJ~KBK+-q_J%feUxe)Ny+_c^R)RB)H) z5&k55j2QbCQ^z^95^U{KGh5^K6ruNJ>&Rh+EkeeBG~}rTreq$iYsZB{*5J+Ji^4YVb<7!SD`#R58A$>*5%SReJU^&+L9|$&Uc$ zq4^)_fMbGg6g+)9G2PO~$?%%aH{a+ysxx}ucW$$s?>*7VdYSt7a4lEc7>=~}eY(RIqURYGFlqsz8RvHvU8#fBw)?{l5qZV>`Q5v4ZS zImms;09aG(uVqnHrT*=|i~PZ;NntMK`PfdGW+bNMiU(^j=6p} z#lE}Y#CyMseLnrrCtD2q6-qeTv-s<*K*`TOE2!31Aj#u4i9bl63ceW;Fe1J$^*g88 z0B#F>=H9H%?n@;^W}3nHBE>bwF_`k~F(18AN@J5RnXz#p5NJ&BjA@bt1ZU7Y z5=HHc&V9y)CcKHbo8yD|5W`9bv)rq(6z=`X+3C%H>gk;Zw&D5IUy~?qLREf#ID6HFcBV@4T(rarVwS!spbgOM6ts?=F zd+-_sFb^R%?XnY#^pL01?WGv`0XhNMLCljJEL7oazrP}x*+FvQ$rCtdy4c_<>1`3O zs++$I#`n{FCR4R~lNC_2+VRH&bkiD?meyRjGjnwyUJ`#F-NYE(nu2v-@P9ysdB$3` zRKUiJBuRwWPzdMvW&9NL&1)4>7u{HE!$DGwTV-w^LT_|$0*;jL^UXwL_bkwgr3P=d zL2aVx@3FZ#fA$Ta5r0f|H?T(2Y$Wjo@5Y9 z#>==x=|1nT14sor=BBBco~?3i7uD|$Z%Y`K5Y6y&nCjz`F^|-DIyxxeXWnYQsAjlk zqx#E=62XR;L2+dZ;^)xM>3T}52m{KbOW;-;Te~Zc)uN=Cz@16j6^B39NSQ zdXr<3l?#c#!LP-m_;Hz<^P> zgXv?rXo7h2y}*{>c}b2QXwbzV@ez+3`JeQBCqB1=h!`%u9RI+H-i@^Mip7|j2`7r} znMWDI%OxsqSXc(@HWH-8!G?$RNQ(QtmVi*i=)`jdPN*$aTXH-9t7q2)h*qDi`yiQA zuGO&i_)qU5b-q`9Zr_sx^!+8vfy;U(E50vCe&VXpsPitK^7a4a35i(iL^OW$*RZ*yBZ{}uE&#lSYRDYIJ!t1ZVxN#mhW}kYt5h|PVaq=pnnk& z0LGC+^Vv2ns$!vA56TghkXX{SQVXC8|Okc-gr3!|z?|oDb9&ih{h+Vv2;mu(R&_tqiFU zz?!)zNp%v_lj#6z6&Jp80biY%e11Q*{%pLY8_jW56UBAW3j6pq*FcI^_3ps*kjiQ> z$lZey?K&?(V=Y;twgcQt*S^^iWm30uXNk!040uB#aVW7bpHMb0;Q?yi4DB;SnWWMH zzG%1}BqxJWbS@s-g<#ys5CpLc4DrX)LYmz<}q`Tm{ki6^qn{7*Y@^ikzCvaIBEM z2baESzT@Hdd*d1-5D>6xS{fgzpgex)6}yX3>msq$lbuZlLnn9czZ6l&))I>&`3io+ zRNtG*pp`Zh0Mh`^GwpS}t0y@4)zH*JA!aOj7$C@v)TONTVO*qaM(fd)qRD=brTKRY z>ex&xSk35x4-03hg7cS$`z?UI{99Kp;6Hu;MuRI=AOz23(AE3=%DMT$zJ~ zVnVRg%EYg=&v5U1oa;5_j@H*Nyw{LOr)1z^p=p<6wNg$Zuvxn0#>sv4-JANx9V!ip zrwtc0I|tpzz4O25O^d{lbOf6LO;tXPe z?3&gSe&vvj>!Cn;pnN`puOtuobWL-k=kBe%y7&$>3wud7ys>!~RV{RpIVx)vqqtrt z8Qp#wWy^H?1KmdmtE1~%oEF-(Z3=De2>5rmNOUNh$P`D~qeLD+Dp}abP?yuOI)L~j zzb#*>pK=9$iaPB!XaavGz8XObNEbktZ<(vcpEb2JuRO`_#QC?5A59z*c-IAXW-G?_9q|HWjS+Nve(qOH;`S2*H^~}r<&D!40x}#7Lw2lDx0;uz z^WG!9?x2yo1M0b^cE}@j>4jg`%xu@64GaP}dH5RL^v35j z=avT4sQ(~IOPj@Z5?%KLfUd>x*^EgE%m&R&IjG(2V)BUE;ZNp3IHrlX1v1Oy za{26F>9hb&ozr2y_WE!TsW9df7)i={Tf=R-NFM>(6PUKfi_G<(d2J@Z|+80%8&b zrZz9-$lNUbeJu|sx>hy9A-W9G95c6XPteMtE9_w~K?|At@w@86FF_mhIV z1j%d3+*pfgInW?nReSny@8;(lKe8L?co0vz&BkG&_I3l~x>t7}l?A=nfml?BXmpj2 zJW}t(pqAqP`l7;V3?I4}78QGBh8eieI0;*D?;gjp{wc`}1GZcATHCf8c8@cww@qa7Uf}+Yq|} z?o0bzzW}xB$DRkz?oJe=JqWsK^AwmMUejD;vY@;Sc~Ntv>MxayQvWf{xg()+IMQkC}c z9I@z6iMpAf!HDaB-d9@;(02q~e65Be*WLAx#KMR&h96btF^&r_VuGt#otIBwbrm(FL?>m+k4s?54@tI9xhc`S-bi!cv z?K}|KUU{*r-eLhraAP~;QN)!mS+IZR49LqwTX{PxnlYb7h!wsV+R1I;ukUm6rWF=b2GaxOTBsUFBqx4%r1uN>rBk!}n>+rO4ToA*L4S3I5amjjc@Coh z^!{*!4xqcsrL)&Ap8lG^c1B0{tv8*?0P&Tw48aQ%yF*K7LqK*U#j0f4?k+D)YAqG$ zqisKe8$mm$aX+)wRH+z<(U)=+2nqTqFv@rsy6D>qmsYV0==G}Z`;^L6%dz_*t^EA5 zdku20fM?&6LF?kQfI~vtW$SpS;nRNsa&{YH`0NSBpRzdm&sx3;ni-|m28)^bhK6Iq zb$fuBCtQw&y`0&7>5ZB8I;ugVONZSMqjV52wo!nuhjX*3t7Ra>F*+9}3WHa&dAome8lk!o)V(3ZD zamsZUR_jwI?M+2A4iDG}00tnvfz*W*A!i!#qJ8 zc#6VZY*3vZIE=LQc7vMGylkeBQ3zCg*|)hhvNaup|L;bsZ zef=$VUvj?PM7JMpSbbqj$lUax&m*1*Q(aN;9Jzh!O>7`zt)(yQz);FcKIF!4ibm)6 z)%v1+C97ave`}qxTQiTPQGy!K0xv9J+umtPS?w;WnQ-ne9dInb)o#yH5m&1|0QLdD z2Gbq_-J$gb0h3v|9p8SY+1Jz-tJ3`VitPwnxNzG0n<#Y_0XF9jx^SV^jqqpC&G+vx zfNS}P&SlMyupc?Kqie6npvwQ#2!6tWOBX;yVc6V-St=4(I-|s%S51?s^Kw&cYI>P^ z7|HFS0gcUz`&B4#P9wj0O)H$!v3!gUwA^M7PpeXYcO%V3)-c*jd4Q|yT}c}{y1Ax; z9O}L4`OCxm(NxNTKyuN{nJ?fxPt@QQjb+tcF^=FFW=D6w+NWm_p)~Gb((>dcOrRF@ zL@uov#mF1?DDQy9#bxDxB5(9n5V4^fh1)Ylm~NoHD@9(uT&E?2bxZTm|5T5VOJ@VC zBqlsWW8cugRa&1ZVN`*N^Ypj}G=IrQ7F^s1EV>YOvCo9JQ6yLC9ka>=MpwNGTjfUi zYGdfM)1F2vG>*k=VY0I{^N?EhsuU9>d=jdQMY?8x{z4^IeL>19P6Sq{?fWxqNiRFm zV67Zq4Dj)qoY$nJi$>>=WXWhr-n*y%YU5UKYPE^V4n3ufG(yaz&nAA&UpJ!Jh38a& zF$?FZvXO>hJbxW3+A5abSvKjv8u}`1rj+_vF9KUYQL!_4y}@2g_U3spd%{t`9#|Gr z6W2r_!0kdg6QGIoQV}=QT#!JOKPl=n&S%pi+sEXCfcg}8*>i6*?cqHQqR4QG7X?m> zekA9@_TA2tbC^$AEBd^s{q3kA5ifj@-D{J`e$hAP@usFs*SMykM$_L8;f@D_1%VW} zQG(cHZ}Cs6)A{G*6*T8try$>%p<*YrG7mk31|C~sG2!D;-SzDyl(f{nSSp>|jRk2i z?5;WPg|%9WEAyL^*Z)@Jdg*Vk`7ppGvueRtGQj#$m#(5uL))l(Rhw6!b1S8#LMEel zq}(}%?TDxK;}E#s_l|gs_vpq!Fo|DUkX|j3C9W$&rNIrZ{wnKJ*~yoqtGdYuSvOmY z&eheQE6jmM#%uYL^t@_v8=ns*%#P_B!nYK=F~=Bv=25~9Ae}7BRr{3e+-LdNFzFj` zIl{%=HHN0A_kM3RQ=lU3iz|g@^8u1j^ z5Va|DIoT(D+Szs@4>zYtX;Xg%C+V< zZ*SxOi;S7E4nOvy`VivQsFRc%8^MK$&5fd1VWuiOoW-jo69%K8(@KwLl_QAX2dYyn zO)eF|ckz^PxkUY`+Db>xOHB<7UZrDW8};MgZ8UI*Hgq;nL2vn{fdcc5Vv#Fg{VPf#v%-5(*lVhvti$nhou@Ykiz6Rp)eeE^U zCn(ujgrm&|+o}jiP#s}3sk2CFX;XA@QM>Xc&yJDsO5udvE-|;6EYtnFMe{EvNVbBI z)KfxUobS}_5tFTU4QdA~ny~C1D7r|~*3BUjl`R#1Ld|4#vJEUZ~{JwFW z0OvRnki;M6Bg&z-gK^4~)mQ7h{}QLSL%Ejpt~kJhvne!WFYsr1U&kzq_S(G#;1yiS zjwOo;tK4;!SuU-v|NL9v_1?;}p!$YY->JLHO$0Ukzi$7bod0Qkn-k=fb^(ePrL@?3 zjM0Z|{VT+mm#gP4EYSYLkC<7c<C(*D(fw&}gKe$1Wul0+`uh51M8JATrxXg5< z^lu_x)X>wW#9T_dN66%wOgf>PH-3yb_+c`y8iT?D%}A|Iu!~IMH@NV!<-gSxZx3Kb z7mctU`a-olSH4(q>{uaJ-=^sAZnfX!^0Vu*@-pto@di=2p4}CwNKqmJL&6Bzf9A;N zvpPE>xq|Gtwq2BWWtTUz~YkGq;7EWs8j z)eueaO08HcKv0cm=&NHJyEJozmk_4uOeHcD>Tcd^z%;h2&_09n#)`U_p!s`bK_H_H zJGl4AA;O5;N6`C|-HgJTy|wtOhgnm4AfxHsX~P@=R=|7zcEPH$*||ocFA%jiV=?N? zBK)_k7|qeK)GH;apgsf0+d@P}S(@Z&lK&YE($O=XkUK43KS-|J^I1rBv4Y`wiM+6< z!M$lH{Q((3o(ubs@(@8DvFSp{E0gh`M~I#e>C%O9BwMbqMedEV{W6cvbtZSEL7U*F zY5=R^k{}qiLlOGjCTiO#>PtuLf3pMne5#9I1gcMmk*Wn#EQPMrVbx>rf{J0Jq;80s ztN0QpT=K-4pZ>Pk@eEY^mkrksT2i@2R%$syx+mDUpvpNz3Bph{DI_^P6*m^ZBWA!G z6L9>g>DxUxC!OT(zRvt776!cD{|rh&29pGzKmwQJH3(obJZ9G}b*no|uDP|R4`Hhi2hu6^2VuCbK3o7mrhnLgR>&rj1PJKSHQS+VP#DW5zzF_5F2OVbq z9_9xk&_srzd@h=y=7&=Yq?_DU|3cU4%b)8^p#*x((+;mqElo!C(WOgiu2-z4*b$RU zr?-6mYjcR_|LG8xe#%}eAuW5A4i2Qs_E>6)u|)4G?Cj`sw|`{2=kE1>Nc;VA7NNG= zK(p3_<`dbf3JOC80w7BpWLk;H;fn2zp`*MB^|Xe2jjk}HqI%M0sbP>`uAJ~40YaTw zc3g&~{&LN7i6;z78?eEO@(6SXP1&!#3q{#{;$+UE_*n{XTUVCA{>}v+#1W-V;q<5@ z+YG=5YtO;bDHOuI#a+rcyJ0eKNdEyxW&+$i$b|1*^A2hn-Ba~8F3DezV6Lr z0{h~vxEoZnv{5+n0?hNem_#j4MPlDAQx zRwNmp-hA*G@ez+oqH0oEfNUCSMu=$yLn=ReV+M6De}BmAN!yPtxh!klBt{xwkIWcf z!nn{@mV3Cw!jgMhB)gGx9Yh2+0z8hU4Cqa`A307$I46C*>pAWJFf4FtJL=+-*VGOE4boQd~8-wSP%sQ6?dCzqE9W$R!fdtFRuNKvmTBeiR5 z_Kz%h;u!m^`Grqu)UF!Dx*(BBLrQeI1^e)kH8`ytPMTt2!MhXSO|M6iteb^r zKK`@)Z_C+PSbB%O!gZLjtj_X{Nx zqi}!0NU50MR)MlLv(}DQKP{HZnuCZFzNkX-?X|k`&!u#Vb4t@*I;6Cae{{_UKg!W9 z&YC+V?a~s~2xc87gv}0$DX}9LKxRH{y@d4gC+|`{qsT#aB4_8C{ocjJ|HQ%b$;~Oo zRV8h2b8)KC3v+1@MZ*g$#m5X6q8S8)fgaByvXoBdIMA_hl<>e zWIAJ3D_k=sThdUKLj812Y?cU4A<;iWWPQ4PPdo7U3}k*KF%qMfoQ(Rcqy67fd*T=} z6gjk?#^3#J`9(F*tAO)Y@Sss1KH3gM^i%d^BXRRo#S>i);+WKTZX>v?=iL`eL05?a ze|t96YxY$)hlwW#FGCq0l@eXEuU46#R>z1)x$mcSH|gW@4#>lsDC4csa^6+ty9IIf zbS;8uACbAd&%|%h)b3|qjO*c-FRbTJlI&>Pg_U@LVtN(b^F+IkM{Xco(Nu4}YWtqa zIW`z{u(vHLnb@MgLcSSGIVj|R(8bBi!EdNGq3%b-rvy?sr;zKWPwqWS`lLW&Tq71` z?srWOP=#!=U>md6e+&JWEP>J<|lr$?AXD)8(T5^d36H!%z%Hk4u{O=OY|Al1giqgfyO9&P$Crh6q>uv!3l6 z@zS-hqX_Np|5jyENc3m-h?hnfQCQ6L**k(R+alGdCQ8OX1oa(=Nn+ml465rA)gu#3 z(g(@2DB)||wT($*tWKy3{DNUqp-@Afq!v;ZfQu0qRugY{h-gFy0~4*E;wd>H0K1`h ziR}O6mVk>v2*SNaUPQDgyo3CXFO=6W`6>9vSBtLue? z@7Pj-5c^dU5I@<^Mo#XD=CtHD4&5KlMj}wKYz0B2;m<@w3NSAMv6ITj1tdd{+dH9i z3rbdF-#K(!EwT5l0p+fWCDYJ!Y2K#(=yYrgU)HLODrz}jxs!>XjIam-9On(&%g)VT zg1J=xZ|0m!TfscAo^UMRwTx;75mpn2HC-F)H(sDiE{oHk^PmV6SMCk z`*f7;_u3Oqc7l8BzXYG(tUmr3r^!R6$o>d8)w_+V&EpmWP%cgUa&Co#Z=Zg^qg=8K z0#NmwX*ZAU#cw_F*InHYjNFD=Jm$onIJk0)o%mhUfKs&)cvjd z1eSA`0@!6IJi_%usgmBBwo<0IpEq%5G);^z8a?dx^KV?<>t@+WI=O-F{UkrCQpllQ zpYDYO>L^VZt0z%<;S*t>vZXg&p7lFnwR_dSRi>c@QXz!`CrI=%BipGoSjm9)JM4>QDY6g)sH zci-8d4UIK=7az78x(fGCC8@1lTZp24q-Yc8=@QL;-MCl3 zT<*vIpc{-*c4^`q?MUp|(`KNU<_WpdvDyB(*E@LQxZiG$q(xLIn5+i74m4E*Mz!Py zrQZ#n5SL&S&LeRr*-cu|(P`15L^r4Zd>oNYZ|z zeoc=gEg8GnC2xW^gsiq}>GDqY$?{l|u_qv5jk&AebnAq6LS{m(_5J%D*^8S;XlmaL z@}M+R_PZ2~K;gO<#(m`#8fq@CUi!8oNrFZSzfe<`G1E13ZI635spRI6F+$tu#03CZ z_@-(g2w@RK1P6%&L-QJv@>RAv;_ zc8cTlMTg=0$-w!&9Ar1#MP&nF!ttcVvP&L2z)}c;9wBB2afH5jPxjLE&Obg?u7`eg zmnOrgMMGWZ@#@~%55nYXR<+)KE?Y}OVjZZ+{WA}nr2^3lSlW#G(W+I`?_sf&q8;RxWbWjSu4CT@;;Sl_xR} z--CiUG|Q%6zA#fu%&tof!vewc<^4K_yR4-FImvSu4~ zoGi5q;0Vf?Qigfs-X{MZKc>31zZwSrX6%`xLTV-b31J-*8?Mi&rtx=rcU=gKa$_Re z*jn$@VGHoBK(RzMdIV7IRfa#-SE+N}k7;XXL3xWoGOKUU%Y?YC72ON%&XOH1No z&g4;I-{Isls)Fy5G-%h7Z3S@!N&HNPtRf{#UBX6r+X4<ziLfDLxs0{v-H)keme8ab$r+UrIB=Z`g@79G%uU{dQ!k>o2GC$=8>1N;ZNd zXo#-W+7Q-LJjicxqtUkdA46nD3%&QdV-Ps9O^H8C!NdU?%9`L&bf+0qpf5xG7GRfc zoEX$Zk9E&)?m0x>`Z9=mstHRv3>$uMl2-9HNbUF6sU+E;x74Lz=$d3_B*W}ue`+2* zXWGecF6{Fy@0u>kpg{S94U4<$nA4qF46%f17X?F_tt^qfm=N~1l#j*2vqQ8d))hqu z`+heS?7H0b?G|4%RJy_KgISup0r9?oum^D#5>)s?QQ$)QwiQ zqyfqv+)Qf{@}|7du5;llZZd&ppP(wOb0gkYL5$v?T&~;iEbe@yFK##z6i{}4CRLP` zuhDFsMmGhGt+E)RJ_yhHb%J-2niQ^G4#;D0{cc?DV_cOkvWzME6kVyvC>IMAQ#>pW zLqw~;uR%k*io|eo#9BG^N}9dX=``>hDAJ1$Z$5GcgY~GAOAW)MlQZL>dRm_oji7&) z@lSl_usgIhtO#>UeE=8lrs%o?qyn$TzAv4&1${u_xV9Qt8N}~;$QGK&x8&59XlojR zPB2jT2brgruzIwR+3F^H8MOS7q_QQ$y*8g5%#wCuAo@L;;$etBrqB9gNfj^679Wvk{!md5J^Ja@^dLV93x<4rg`I)F z-X&3tqvDt5#q~T`Wsy|wyV%qX>zW|)oC(VE2SIzMuVoK{ucu^v%t>D8CR*VB(v6PM zN16kzPtyy|moeMN0bVI|k3cp}RyF-qrb`5V#zuf997};rIlK!sP zdoJZJ!kryR!6+MTx|&g24R>GpK!Y62&rOb(XX?94OtCj=Okg+Meb22n9OImC`7Q)m zFF~0acMA{p3Cye6A4c6?hGBLfp=IQJPV=zuvSv$;=F?s!^M&owAizUUN0k9z5!=Aj z)!azENxMU%#d>1*{>zQrwEU@G56V=L*$NRdBcAMuAgXBZ$I zweO>Nu&H=u;v4n4VO{Z{z*y#F>L+T48m^67w>Z9>%>FWzkjV=E!UxI-%2E!XN=(?z zeq195?E6`}4?c!F52Sq*l$&}->ap^J+u;Y(-Ui=Ir&7v0Ld{tIC?f6GnuKxoB?Pw3 z0uvmZvOP^`*THvQtY$VRi=jEp`&xuXr3YEsL%{`ptMF}Y-q5@7Z*`DZ#k!pkP+D90 zQTauNq-D~wCV!jV8SXXGIQs&6pq5THl9so8_h39?Fma4;WIM_8%U-lP?iWH?Gh>@k(n$CB7j_upe((6YQj z3UE@4(|7i@5)cs+F}#8G*NJ&`;pcKJQHTZq>AAMJ%VyWRn?lZ}W_ndg-X^TGxh^eA z_#iTG=P;aMRzG3ab7Pn771X>6%tEav?XZx{g|n zY?-pwX;bU&JlUBauQEDY{~Cz**~L~~F2js!{asnA$#izBA5+xp$)X!^l<1uaVQg({ z0aiV9=)f|fZ2$e~Nn1ll0w4eTO9aiYaG%E%yu4V8OKY>H48?Re;y!UXR{6p|ISPAf zNBO^B^Pf#p&L4r=v)}6+?qs~r4gGDiv4#|S71Giud;%*gsHC25p!ZF(I8|P+kj5QL zpJget7r5mB^G`Ofz6_FnNhuAS^x#5DizBO^J~<3w(B(Z0u29*JKs9AjfJ=Uwx~$D3 zBMFa(S=`;Cnx-=7nm-VHuI)ja_2T@A(mP%|&NQ2Z)`Ht@Dx9n!nsbI!;oAjV!;8g( z)Ndc0C8k9R{ngLW7&wDjX;u~_tgYPxZhFI{V!fB&AC8-mw7*9R?2$Qj^AWTYNU9Ml za3PPwd%u~ybm}?%o6jp~vbtn`5&qEwkp==51(pG|T(KU{M`v~$#@1asup`8N74KKH z)@h1PL^H72iVb!)_ygV(Fp-GKTH0vEzGMF;y8{_}n%MVSCYFNS1zv4C_;}5tmWVe) zfIUNRKe!`hV-Wvg<3S?zd{B=AGoU!TX`TX*I^+mgoba6(;CorY5JU)jL`QlSKOJey z{>HB8dRcp#zA5g;IB_gV_|b%Nuky29VtNnBEIr+o!!ByPU?>5)S^9LEeyA|skIvR_ zXXDvs9-Vi&F@eCi0sjP2cNl|IYJ$828C7}qC{LTzY;i?dt>6Hdn9A|$J+h?9kRj`= zgM4nRTFYENH8^2ey%~p`7+Nz+zj`4mnEXn2OeDi>+6ev9GeZxgpd(|nd)qxum844sgB;dLf&p(5pJKN`6 z!?)UR0v2f!>~a`nM)=)t3clc~36AFDNz=`R2ESdS)+tL62{h{NwIeFELcVN&20acP zrJR13OjIW}PDM}g6X{B!2b7?3x>-zQPyxQ@V|8la##nrQTacL9#FY?ngbnYy`7<>C zJiY0y9OAOVOj6-#*fKMf(~pVDR>dy9Y)e#fKcqAq4;>Cd8pr(X)kCHUz>RJ!!m1est%r{J9MLi=1V22}|y6h$Z!5 zrb(< zP2l@|%FBX#p{-qyMti))X~6ub4m6$6*C&gWvY&O^7M0Kqph09~aU&h+*)kHso3_l? zk@IEv>Bmbrd@Zio&EKjhzqi+9_Of_bpKSU+4>Wl%Wj$QSdvW#V@<8G>40+PsN?5|j zlaJL(RbCq${eJ4Vw5I3}V+sQFtjA_{dR(VV!(RDlBO>J-$asn$+iXAQN<+Ucd#oq( z>>VHc=3d8{qOC>8IP)%qGGfU-`J~^SRKXLZw4*RJt`6pYV-|>)I^ipGu=(ae?4f}J zdX=>+!KAFo#_i75@ywWy%9r1R80L*U79{^KMM(9F=Qs_YDRRRiAxn*VGpLtd*s5fu z;@gPSxzm945uSa#DH)B^x%A>d4LwkKol$sGJcoHMMe!#qT6^abBV-I)92!+^Vi2R( zS=%ZqL889st7kP;&*A88+ZY&gXp77@7I2S%yoYH}#}V3mic1%1y*l=e0!+;FTD%jt zx0e0sv82#~u^}Aa%*hNwdvf?0fr)Y=>|S&>?jf#_);oq>A&q*oe(}xC=!Y=jhQpI5 zwYl)MLCs2G(U5_txlDlB!);T9u+E$a`)~0ZtiCLzRDE83GExGe=oTN8URC#5ik<;K zBACr*B;cHNuFZr5z~D zCqs=vbu8Xs91Qcb;jn5$?@D zppYS{EnV|!B~MsVJn9bYNM3?l~Ey-HVrfeSG#52;po^5c?iA#N+( z{6&YP*)Wac&L#SvR`(YZg`y9Nzd`O&8F#w>yWn&V!_u>BpXF(NSGg`}Ww(pqCY7l7 zetB~Wt)%K^)*(H{uKMQ9k?Ijy%jPA(l2u)e8Kn!+m?}2u+L&r7eH=GZl1#SN<057c zwNjLUf`$nLo#O`gtoEfM<9PH9M(zC+yi5AQN+aKvLW_-fN09t&Kz9zWsfAOYh}+X# zf2fy9S;2`(HM>}=I}H}=WtTV>+&Wd7#UI!y1|?veA(Ll(;rAy9xV|~bTqXfN;jO38 zZ3xcuQlwVW?m|r|nOKgwiX9|>@`IXH`i@8%+)dg-ADLVm?9x2oe)5B=i(A>O$}PA> zKgu*+0p-aj=m=WQ+6j|Bc-;T`HTj|9(x&3USW*|#kwdqqc_^t{N#0@@R!M751SwG> zDrDt9tczf^`!thTe`;(vOM5@oSB~Y+)c9U()vdAmYs^H&kelsmf-)KBa?vy z1+O##!rN^T8;Ty^pkLHrTklvkr_xdkv*YHmgZ(MjX$@SOm85hJ)#P}y%uqxLU;}u* zYCgozmOKOkR#Zs23|UvOOr)ZnWUvZJkwNTT12Y!E(n;=iYhF%rG~1J)Tl1>Oz{?kZ zH}Nw{OoLIQ!pLL|42bH(D_woE&#4l1CTOc%jb4AecL34XD6(Bg`5eb}xN=bv~!@=3>mN#<}lyFH+DbuvI z^l^2k5ha#h5V8q|zzpD^0+Sr|H)Bkhb7Y;HoJC}8w{h3LXMeT0y5TCyP`7s-qBos( z`7GFemp5Nx5MM8UVd-0#-mPZlK}`<_ni5tp;M?IYs@lcAUq;ARn8ml>o6!TZc)~1n zp;ZFx-PiyTt%7*t$PNG5%Lrfgwq7iI%5hKsK;O+*uaT2c_KxD_WD=+loQkBV=^9!Q*)`v8P3VF3lIdH-=)-o+7dli+MfZ~|j+V?%XH5?KHY+K6$qyPrd9;REa|Wa@ zLnuU%k)lJu zc@Ma~L?f2bZBp3LAl4yL_s7vg_{d2M%8JD;pV1o`%Z%DC`W}8jU*mu9KC!i2q^z+265tDK8YE_;(22 z=|Rh}?YvujGtH2Lup2a+ym=rMo)VWOr7H72a~H^0S7FfP>WJKO1Q_TSoMIp$470q|sB~u`pP;_I_}Q*%?)-H8HW}Z(5Gwadj?Ntk_bwr=r7b>h zUHk+20uP&S_VsA;X2T=ELNw0aaaXSivJ{?OW1t$oT(<1P8>wZfEpT1VcwhVFL1OEf zWPtqIM`YO3<3?Bn+tVjMGT*tUC7@pRlSpNt-xjG3w(EA2%jrG&A&eZfNB~|1S-hPB zfr>i@AGx~{I#mvk2THKqWT~F=Q=0U?X1gE{lCam|lR>ajHuyhuhzrSbHH7QP#@SC} z%f@MX@Mc}HsF~yW+*hd^yI5XAXHd3oFY(&Rl(f^dBr^|tap{54w33&jUr41b&J*bD zi-NEGs}9G#hSA7)pNWl}#hamCw2<8PyIlqAKbz+;vnjD%?fk1|>e<<(c?M5gQ(Vt- zY98@4(LW9F9jfkl?}Cpd2Z%0|dwsdc9>1nN>FM0@L=_2vbV9A0f<|oc@=g z?8?}7X!GC;B9m5Y9sOsJ(5qJ^R$XfJVhdtz)Ry#8m^MT>#q2{>B*ZJ~_gz-))jL05 z`*W_{T=;>_XXrFwL~Ct3;$qq4Z1OoRJ#AzgOZcI6AT2vSZS4reStOx;Mq}Q&VU!>B zNu`MpEQS`4+k`J46g2SxOZ{8U>M)WhK|3)JNyX_R}529(DL`@a!r0R(Pd;)d&{!gQgv7 zROH{JQX%(?%T?;YlYCXs?9x}FNueV?0riOxI(PZQs=qqHB3}6ebz{k+4RtxG1N2Hz z(JC(GE_XKp_GlDb>&Cm@4Lo>vEy+7fNv(Gte?Y*8<%0|P@FL+b9+kJxGXl5$xYaYw{ zhij<)zig{gXf0-t>)O;ssg$H@6SFSkc>9`Xs7*_K(I%CC%6f|NM~d`ki3i$my@Jn$ z%=jMl%FeVuzP|PkJD_`wy7^keeVWb+5Dk zmGYH#&Iez=82EK)AC>>pCr~1C4k&I0*QR&jE#aw?_ib1fpP}DB&Ghb3X)2V+iW)(W zoD`D3X10UEnq4KcclsW@y;vxB_=-UTU*<#=B)&sP@a1oAr8Rl!&iDO@2ZFZ&<1D0Z ztaiG4mppSuX@qpz=bGA(vVdU7eH*7%{loYQs1NC#OD3T18lzq0LzY*nlQ>NeqTkd? zvTT9HKK$13ySDlk1-WWa+%c~ALoJ2^`BekeG~;;1IDy=8sT3L2zWWS@_A@z_u7 z!1R;RspXDg_Y%#3UDBF2Mr&gaqfAgZu31cX*wd#{f&WG9Y!>xwH>)P zZC<$$r~LCR*h9e4OTUMN4xOQ@F$SGeHP0P%csT$=c_r&$H1_layFz~_D3*fn4S2No zMlP%%6>h#)w*gYCzf+!HUm9=;iTQ^xn5_po@)g(Xy!sX!t^_=Jzz&?3(ss|8HGRCT zHEKk&PH%p1n`R%fd5ay_|Ng@cNE~U5qdEFI$FjjO%C99ew(KYrsdn1PHHBN7_RPzp z!Vkq{15UjUJ%B`+0k7Di(f2ZRFHtLk!1{C1{*GSfuQ*K}X0C7uJ1pBcBZo^)+;cqe z_{5Ct6RqOUkGfm$CKDCkcX_DnuLbN`MPBZ<>hHUsCvV1&EU-}yRH952<@!R zm~f_FZ&?(rf5{OD>s`MHr851EBhxOjky=?E)zV(YIuzh#G~jboyVzB4N6SfK3^(<{ zM1aFs_Y_vLF5r_VgY)$a4#4m#xRhj`GbuGUvaJJ$YB#!y_=!7t0gD4UsGx6^F22wE zgB=Q$EtSm%QLrHJ;4ywKe_i3MqBCpE{AI1EqItu7v5WJzwK!dk)@q7w$nV2K+d`7b zn2@LHHtQ$QSbc}e40kV|6AR^bOs${#S^Pb&KQ>JX2(2h4ZC~OyvpCTVh(}qGXb67a zfo%W>w1f0Eeh>Mqq4w@td$7*P&z}=9MCnSG=yzl3>PKUpxs|+@0#<3i6|8`M_s_j) zSO^DU`CMQ6b44bY91Sx%%x%0?c~jC|QS0Lrb#ATh83o&M7hCwTcME2C%vZ%CH6n-r zP(A>iFnRuG7V}twWdu%_uZ$9MS!G{y>_5r(u&`*feoE?ZARP*M-+*(*1~fqOS)C<& z(3y-;L?E=Pp|!Xq5utY(l=Y+fRmxue;_otyg|t_?(UTp3&J0ao%e@l)L8_o+Q!ZSQg#dz{w{u*`Xsd9Z8JiNyV4q#qwx&ET%M{m52 z@UXQS{j_q+1sIUtCuty(JdOv4pyn4bCv!#I*+_P|b_KZW)`h}}1lkkne9#{}@iYqZ z(%sB~gbDp39ku-0{Y(rP>3wLud*;de@MGsafrq69&fD`tmJ2><P)lL+T^o`fk$Uf)<~hj~-{vt$*SX({XGak6bN2z#k{22#rV0no zrE52GwNQiqWrb z1=O<+A||dQl2nX8WkOe!_BR*bhmsAt4|n99=Jy;Cv(5>+Zil1#Q=D4kdf%_0DGOoIB=2qM0~|ZTQX|1|JPO*KO8v$$)54 zGGkE@zo@MHy1$k>(kW7&sV_8_Zpem;xp0aU&k@o+C%rnn6`{Cnd zF(%QK)5~bLNOE!Qwrw|!<4-yHCXdIJp_dV`Sm3M&$&n%mD~I*)j?W9jf}T(+L9Cl^RL9$Q;+`EwJ!m^+4foDc2e7?mCV0= znn}O?cA}C@Ysh^~&@K=q+{>!tgzv9W{wOp3m(R?Ozkei$m&yvSx;AuO&|f(qR#OWelu zON2^hMp<%pT4V1OiTrvg#cASh2g8P5;ML?0Hx^h+CkTpWE7n-^x~89@FLO*JH$P{w z7)wTL1bAe{9r1T;RK^#KcpeSfOQp$V)wDj9q5FPXC^7|@F^SSoW<+RyfAqrynG>%^ zHnKge-%z@OGGGdD)XR~>Tl_C?2j}lS=9wC5)%c~Hb0PTBiegaPyZ8~g;!p0kF;?kL zjAEW^a`WyqgZpdpKyp~S(T8zB!go>GiG&XFObY>vY(P=WA+VFG1I@d0eyjG;uL!8y z9KNS?ZCHdCs%{)GVKp6or%D%anF?r~Ki9$*^et)wx8>lnhbBApk&FKm0b0(8(1V!s zk^|TsWc2w&-EEkI6kGm4jS zY~|TyBya|sq;k()nB2J>GHpvAhP_l*baJqfTmjVgQX-mdA=1CjPk1x=*bOa>wTWST zJJU|e;`FONR#?X)k3E}SjiSj&NBHD}4TXls6x>ZNJ86VASn5?=4?YKzX-aOs|a zZ#{nh1ZG8hXte%t5*`%OedAY@D2e!o>1~19p^Hg=e=VJ@cf;VRNl8y%SU8H$CjW3N z?1JGM^AVwb5K?r%a0C_`f3_gA)ziK}nRR-=~j`w5@Cvot;a8TUP8n)=CyDwKXB5{#3Mz`(ltnTvJR(FXHM-PcB zN&YVr;{*{ozPL$o&S2?62p|XlT1-$h6lR}4y1X*UD8}n0da8b?*TwTAxr>Tf??cy_ z(zeR=!Y0((S0YF66ulG&H&EjBbykChnNdsqp~Ln>y=0}#F2p*}T?um= zP>@k+_BnX+rir0(6PZ9d-OkrN019pab?LE`}z?m02iO-TTY0XyG^{4w5 z?Z3qAhD3^D{=m9KJXQ1(yhhmyYMYF6ZB%stStl4v{6_S7BFMNGGNMF;?(U;nZh8w+ zvupeuw8NRxZ5#Fh{?9Yt0CXi6fVm8m+t#NxLp05e*?Z+*(_7#4Ps5xsJgLT?zY-{a z`M}A`aaLDQ@O(Vp6*1R}4@BS*WiNfaCLtJqP2=#akVbsHhj4LB-3!|Ejkoq=EQvn} zljYux81(x`5`>W?18sT7+kUQ{)rYGKdjEGA-(3oEhiqvsu2SHKaIs{ikcns_YcSJD zxDBFwT#}q~W(@uKC~#s%p}d9lIJs78B4Q67PP?Ki^hUn7zU|^ag|Jb zh8XFczC~Y9&2`DVt@O^|3^*c4;@xgGGM{hA0Hm9Q$Jb-Jg_U0=NPRw}C$}(Z?8z=| z8n@Nus(y5U)PN7Exwd-4AxGu#wE zFy$T8)}`It#~T3RRTnmG7~o@1oI~2OH&-9dmi(R6fOoN_wEv$+VJIm1Ze>VBp>3UyuT?AmD$l3O%BTNbj(^L z!Gm26hrK#QZz>5P#Uc`e>}yiy6QG=BvG^|EqTf*XgvNof(hvpiEqb zK_<2z$aN9j-lNjoAt3QD%cXvwnY_J?z}u;vqv8mSydON{WRW=x`J@JkYOZ6pc^?j3PC(z# zR+0l-L@_do5j8W+TPHN>=G+J7?R!Y5g1YGXDTm;dYcXUXdS0Ssucx1?@ z7{Kw6n_(rLVB)6(*Z)s!!mBC&JS$s_NaL|rC9bB>iiD@?zUg6JP&@ZbZTrK;&w#Vh zUB5ium@}JPr}kGfXK8-)3$+~3IKg2|hZ}dk_342OOb5~rpGcn!&)Ld0(OZ#yTcV{u z?^vlSEXThAp)4xBc$oru#qA``tejy)&V4!WiPz0@cZ}}&wmd9L3h=Y8cU*$h_$G8Q zr7QE&+9<5gLf_)IeM@lOo*S{7ANui-M+2BEG2r||P-^AT^T~W@;GX?X@skNVSn!20 zZYsSI?Kw&P^qo9T+p^rauZG*hf(qb$e+xw614XRQ_T|MD)@>}D*5ovWLHj*iq{(nY z1J_6AL%rK|<#&dLzdRL4Z`WaBp%|;SM6CVrPLt1P7$S=H){^$XjootMn#&N-GJWrb zw=8ShI}qw;R0KNd#SJ2b?#nDLS0?rB3np`vT+b)T}GW zL)lnMDRunbg}DfWik+@%zLF@$l&ohK!LJD2yJ#;}TJ?f%morBF7rnl7zE}^xIVz0- zdLTYCCxQw2tb8*fud2Qh*EI%J;>!R3VU-+*{K@T0>SusQOSHXzWJqb7q1yTpuUyfP zeG`2Pz$}27MbZg+YwB`AaC?f}auHPH8f_O<_-n?dcs`#4U=1z;UAU3i1}Rr>)G7Yp zxW#EEPyY-cNQMQO^Y-t6l%JVZ@jkT?*JAGr-5iSFP^Uo|-yegjl=!4sqrVX6?St*K z!|{6++{S+~y4w}qIqoZtGm|SyP2LLFD2w$RI|9P&12C}MV9q?HiA7>|;hV468b@e) zC6|HI2{&n!ZhO(=#(juI9RBl-_%b)Z7<=I9dIAVB3oG&PbU6>T{i4QjUaL&9%j2O8 z?Y#`q@f$WhtwF(aEi7;d5$@bPI0-z~tY4<(S8=%<{_!*R=ON=sFa1-cLg-*P{AHlQ z`zpHKKG6xWhxFrl;Ny~RM#^Q$SL{c?`xx$5tYjGF96fS)ppr&!uUH`C9P8FS?*14btAB`Xkf@;#M^F)~E< zLKWxX^nHAhDp=qoLBdrqwW6Uz93;wK1Ecd!^9X5Vh=ZK0Z!A3D8tT}o2Wmy7HMUb~ zI?1MFO@FXV>dU3T*jYNBO8I1g)E!&nmUKDY#Xc(GD%GH~uO3h^oZd6s%4 z??i$@9Zb^eq|Pk&o>TJeflm$G8h=+2>QSd4p<^|8Gb4+4%_CwWY}oljj_!NZua2<_ z9$}RHKIAoDHC);_;(MUaAz$HtEFwTBVZg1ffJv8_e!_~D{`z?vyh*0=DPkLN!NDXR z2FBwzeh99P{kAaCz5V6`@Dp~!KS6!z#GCuTRBL)`IO3ZqJ1HA_w>RVMs3I}m!dp{a z?At$iJh@Mnnrqdb*d!Q#5Mj6$YpY2I75tI2rVnTx`x&E-d$C_&_MXG5SA-PNyK$@T z>A;%AOA>0t8a(MDMCm?AGl*j&T@m#9*#qj&g7npQp$K41jRvLNhkS9JPYB`B-5h6& zC$TWpm~tqb7O(Ms|PB;15yKgo- zv}|wh90mP5>|_(&Lt9-(&NwFG)Rg`dwtBw};feXWl#(rJjWj;34m=)6%jb_sq&e)Q z_(?+3wdASijvP}rXD9S5=|PJMxxN1IJ4$m*0SHl+AYGBnG!|(t4*W8&@$NR9Lc3Tp zLab|@r9hL55WOKo2SWBTA|gH{ZQ5h=yxi-I6KVeSJe_A*`ewFSav6V7a?kfbaeenb zQh_*~8}6|F5;*KvaRT>7+8^5j)n(54ko(mdxKdJ`v&ufVnep>Q)QX=$`hu6*jJp#z zowcveyOiD+-`lE^kUOX)pZr6oTnL4z%74QrD&>0crrdMQ`7?R0)dPj=G)5pLw{0i$ zv6p6474K%Mx8&?*Nz6v^GakJ3b;1G#D*(RPZb#~&^Z6k2Y;R&22vMi#^JcIlO!I$8ST%0_V$ zYRPPpBXa^|4sXG)bYtUceT^oX*6KpyBdqOw|7}VUO#NWsua!mFjxydx7*E_Z7M!c? zco0eyo>xyxM|AC*+vVP-ZK*ZppF8EAqLEA(D}9{2N2C>j6(hDGum)h;Ft8n5G1*Ge|lHAJ*a2!5Tg&mje z8?#jvowQQ;Dtf#9Uwk+b{Wyc3lk@0{yliY;!hrHw8Vprc(G7W%siW8!eg#%Ck*Xj1>7N_o;bK@^?vx?@vzIfhLx`b+c6Vx^jbu15<%;}8V8&+fRh9z!uJ&0zZp;%RrmJt zu<+vX$X<2tzYAeIQP1pMdYsEdXT28D9(iT5ZAl=~dicuspkc(BmX~e$2gB$;r6`@o zXdGs8U}EH~)pstbe7L-9i|0qk9Pf&Z4Sf>s7Oj9+;HB%~5HXS3{jIjKe?BJk)uQw* z{X?1b{dZu8eaG%538y%yj3MyT+q6gcFA2paj|8{ORHoAV%Z*WvKJ z$54##zSZ?j()BRI)6K|Zzv`;nc(^s_hPa|?);}q?^(jiz$xilC{+V!iE<=K+ds!LC zSjGW)+THu>hJ(rTGJ#2{iR9f>O~Vo`R3JZJgONQ60EAitilBp^;bTvuF@*_v?&V(H zI3Wtg$hO7NgSo`j>&iC7l7iaQWk9KEiiN>%mG@@NSw z?wS_B84`NU7hfmFpSB}EwMJmSlxE|3KbdHo2f{Z!ldJnH9RgHswUaP7yBHbWglDrb zpS5pdeNfL{UsJ)kNu(kcu$U*^dky8U@eS!4f{-p47qD=67n}f--LUB8`qRyN=}&jm z_I8Q&Mg_z>2lAdkE-Gy^q$wOh!tPBlD%Pcet%ne4bRrkTXxQ{*nz@iy_(KMbi|JiW z`MC;EG;R^?(tiD%T4U@Jc9m`u9`Wrk;%vw#=-(kK&PR&kxvGt}$ZCbk;^%)&!2283 zQ>7RHcG92s62L6bYb9!M$a)Gy#i$lX78vnqj8O@!$qiJGjPIct=o420d>6F-=9eD% zBB$K`)<+IJoGv`9MF8J7=T@NMeQ2M#;r8S7&mBJR_H%Dd-DEHp=^x(x!qK$A_+Izj zY_TkF$JQ3zhEx&-1K?lFvBm<(h=!1pZtiWiuk)MxxMdoYjpjCY1S0N`?q^q%ju`F{ z?{bK5qu#9Vq6}^{lf^}^isSl1Qc-nrl_!vDJ77z>dWQ&zV%}Mtk|`#)Q*2s)QL{2` zZ|0+E&)QtAGdqoiKevNZANwf2VC#TbizT7E(kr~s`|K0JQ^6F!V3hV*rGjv7#X8Mz=3cDfY7pWX)P@gt%!*a?M z6L7D~00>{SC|4cYID~%P#_!gkRKI_Ii-&3iFl8%$N&t_cMn-lna6J8)HD% z44c_P0Q+5sctcR*bwq0oM>W1O`-qK_ht+^OnY|%D`d;o{boZ;FY&dD$#Q+o?%P_Uj zTZ7}-NEGUGJ+W~R;qd;fUey)^O597EK>l%?j74P2E4MV9uaipRg$hs5JYGa-9O?_2 z{A(LsSQELw&43St>x%G?>HP{5Q8c84#dpwu5MQ2X*3XNi%;2*n@o86sX5-XKN&TCv zg$AGyz4YTZ5sV749l7TxvAUqQQuvz7OtxbDnU>Hz-v&JQ&^g0q0YMYK$OERtKHsdM zyVQ(yf-9Y=FHYl9*(x2shf^&G8!j=Oo{7@AbFP``fkF7{#JGCa$KPpzKoRVjOpNtkT;GkTHM zj;ZQJJyVa8Wr0JL%ta=eU~@_Q2%y;>!oySZl?X6*?A*Db3QLFa$TTWGq^vjjpY>lc z7caIx#ctCi_mu9HH=x1@ERNfAo-=>Zyzmm+^a}!N4-d-f)-xHd=mg8&X}vZvq+}1! zx|eDyfSgdsB;u@msjh!eUnY?k#lY~GF6RgPsrjf{l886kXx_7D-#U|dZN@dHn;^;G z2vVl4>l*9NoYzo_ZGqC~^)5dXUZ-Za;GKg=KmHJ=(K1;O(){uZ2#%*71%6JT&uGuK zpdOiH8^4QStNBnRyC9$E{>=X4fX@PGPv~Aq%L~B{v3t2u?a-QSq&;Yg`T@3+s@WQ& zL1hM1VwV`3l92XTE|I_+WJ6sY2AEXZ^?F+F!aqJ#_M%&t*MUCh_OqEy=>0G=)@S$O{Q+Tmcp8s2cU}U|*GdOZ;p=z;NCBE(BFlAw zbaja#M-%p=Z@Jmj?hAS1UOL6dJj)svNxKYz3bk56MSI6X66{A%4UUD@R#CW|St-zS z)qsrM{!z)=oN>-Cz2jYxsz%Z<`{HFU?U{^mLtE{(+BfLw?~#MKI=!Tkfk1uOy5_u~ zfCM!ixa0rH`hOYud@|+dJA z=g%$ibYs7NSEEx5pad1u;V!~77fXcwAU)Xr+a&-PZ-LDwTMt@!_ z-$fw*{`*W9uv3DCEd>WXfBs9w$q=yRU^SXjthY*R%-!ExJ9*(GEEwIdN1>cB@bx;0 zLqjeNOM~Mo=+v+lfIy0FaHf=n(sIyD4XJG%fRy%qwtb^wXT?ORF{Otx83!GC*yg_RZuV z%Ar9L*&%;_LW|-mxpKmS@;jGKb$53e!(EH!=X@ z-M{OVK^l*f*?`Zd4t%}`F;2S^d@*KS_CbvRi9dBu-TqEQo}`Xss%7em^T6WRzR2p5 zQn2>Vb8I2)(4;07)>Jh4Lsj)(N3-4H7{N3s9fF3xCr`;u)=zbB#~Mk?!X5S9<6hS= zo|$`-`47%Fn6|-%Wu2rZT}9|Z2K-Mih$^k}EM(f5WS(EP@9^xInmlbA`|wHZL-3P7 z?yTvf%a5<8T6Fo>Tcea-`5CB%EbuFQuo&KYFkfe;Vt@rM9ltTO#N3mdj~;VmsltI@ z;J_N5+IwOgr88GV0yPEWxS8`BWyvbv!J_UO(w_}rA#`HtE2oEz*bm9xtk@iR7kK_c zzaYzf&1r$hZM}TKjq%1iF`T8Lo-3|P%{UQk@SjaiA#vnw4;=u|RIB6>f(b0F7h}Ph z6e9Ue_Y?Sp1+CoLP9G44GRxq7Id? z{_6j6P_X8`bERr)Z3Q@8({Dbjt@9_V=UVWo5>+e2lOrn#FM8?H&WY>SA)8zlp|H9C z$@o?~#^(j#Eb$k;(A`@Z2fV)yR!91Bp7t#zjPEU9?GjqoPH8YO;9YX_m#_j-9j)oP zYAQ{@6|~Ns9#IvK{B4D2M@pffI+b8h8@_Fs&Y$ec3K<-Itbhp8&YxlG;>iGnwV5qa zTSYskr)D=@wJy0Li!y2RTqg7{RhL*Q4mN)>yzo8=mavpM()OV~DIKZ(^N|MSfb3!f zV}p34;-X2cB}v)Y>&>*n;#0M@J*@1ChxYbV|4<_b7^5mKm-YzMAS`leK{NYeo3=n~ zpfQuJg-E@1(SV!&xx^xdk0zknsE2gq?+MM35Lua&t4S>5(NEq8C;)9ljVkaL|FV2m z&hxHO-kZdkyQBGh<9NV@|3^q!&S23T8P5bj6ZA|<_g=O*4~%Gh_4vbL%-;)Z!t2lB zMTJx|i(ZsS%B33i~_VWfk&+`V{D6i8g>0c%-2wR$4X1drzr2iSmfl7y*5p32qFATt_3d0|G|N_hX09_ zqyu<|iTsY*tEj5+Gn6m?y!OIOlInvgU`9g^S^kBe4h-EE2deCGISvL6JLgjw{T5PR zpK-VHrm;3LCT-*cMsQQ7F4bgx2r%50i8p3kHOMh>fmT8(X(RM?SoZmTjt^Thafj`# z_`VcpVJVlG7O3T)_^O5-bE>Ldd_0f|7vo`$;ya;Kn>Tu1%c3e|)9r&SzvxL-|J#LZ z3xips1AP9(b~M!h*f^z$vUan(HB{wgcsP{C0{o%uBS%;j-A8TM<=?dCR6dsQ1oU2U zn9VMfUp!F4tCdtniXu_g^15%>kZ4>Wdm*{p@99 zaegf)E244@u5WDgD=!b@Fgyeki95hWkoQ5$IP79BTGIedqYP-M?rzQCrE?4L{4d@5 z2g|qapZW}VP44rV9X!t#)|&ax3jDL(O}e8Veu-o?$h4wt^5t`%YgaXdsDaLC} zs_+TCFX+KoK0;3}-?8o;1`HvEYlRbFh?CJykNf^rMP!{q`L}S=ib!TmjH8G;g&7}t zjDt|7%8rHhWotyt<75$i_Dv*J+xrI9>-4n)H5~xXkxheQ#S0c~s>Js_2>$zQPavUO z+hU`bQ7BGmuxT$kS=lO?q9%6;_PYVXHhyF1E+U>YjE|y}_P;q|=rIR>T5#RT7$dEo z)x-v`K60V@`CMGP8{oBQEb%1v`qxh@m@Mn;Z2Elup!HZ4h1^_k=r{=z`rry1J)(pZ zM&hp)rZvdUYP;gObb1Nqi6XRK`NRk{Zme7DHQ=llbdn(7Q_B-aiU8vwp?M7n(QL>3 zPjNN|1MN<_uFj<@Vo<+V)9QyF84|GvaQJ6u{9EDjk5@88Cz>1CFzQu^7a}JcZ)wnC ztJ^O{_}+r=k=6@|#aX18qELmz85mVW^ce$+?T1u~uY+7b;0&pa#~>4w$hRZmqjAM- zx!JGBC!qNVnue4v!I}^uUf9Dwcx?{{&0spDd%C8UoJ-78cVT?f;7|XaP}+~eaco|( zG!a!*nvBIsDbf9NFAt)!?C9RWkH#`=;h@a($*?D$uICr@_Ij}o)04ux35Z)OA0z;< zqBOJkX22cx))bUI|F{K$-`4RJ^4r6qmxW0k<@Cor~uf8F*cLtGiELpe=}HPDyeeI5;DEZtUbAf@U0d}olu+2I7Vh6BZNz*Z{Z8OW(?K_RBcgftg}hbFPwlgY1aOEksqSym z#}IL+`$)c~!X}t&)d}aQ&H-A>(7p%q)B-wfpEN;lfSDrOa{OYWc?B@#^A>{K>9;of z%93O*RxNqyJ{_61Qe3^~opu64G1mmw@aY*LI)l^Q;mH%<8G2Q=%8LLWF54*)2El5a z!|4`y2Hdn}iRF0UQ@B#r3vK3)VX80TMK~y>#CpLJga`L4iRSr6290b9Z?XD*@e{A} z{aN<67c|!liJ<`>?94`YW7_i7-8@H{^ucwIaEg#mS8^AmOHc;n+{wL6fda2VL@3sZ zPxZc^g4L5%c;*6dB?QXZpKv(#`}Y`*?ljht8Mv3iBH)OACmF#{#L*sAkhlFnOZ;aS z|DHAh=E5&9jmHjk{a?ACn7R)&>0NZYL~=PDeq>L0##N^#n*O8b;?8X88wnTDEkEr> zTN(7OYd!=A@iIZ~K5BLM3WTT)7gkG!{75=`VB=1EhuHAUDyfkKxsKy~h(f`J)C7cP z+$nr;c6}CJy+g{!(jy%26mt9U>z?W?>=1(yX&g4FJ$oX)DUOn<&3yDsLHW8`%Jw7u zHPZCP^Q0LrbVRwSR3T-z60r@bX7U3Op9dwT2pkaVM9me2;37k+F))u9KtGpu} zmZNa_E=Y_RV_UH)RO&^CpTha27B1>DQ6i#^e!|T|o*Mn~?1Q|g3k)Z&mGZ9fcQ9}I zcDj|q&2aYq1-FcF(&nAgN46&Mm0Z#eUbM&J^#%5|smCi;IjQaYS$9&O>3!oGw2^eL z=F=}&@Ll3d!RXs5+Qkhf{xTy__HS~Fo2=cvx92U#dGz1Fu^ok1k@D0gzZl=eAN>UI zNqEcKJ7Jf^xS3hf3lr}Zt#Vjy4z(=QA}J@D)pf6j_F7zFdS@xVF#_bRDXVR9s!Ul zO%9xw?d*Skw#e5{_Wv)JoHjF z!{~j}*E|3z?GR-Htr{5<{;rJ1MvSiK-YG zIDHIQ{B+-M+~)*=wwU=H^F=6tGZnlVf zI&(gED|izk+H^{Vt6Lu&;uS&1yqGLbx^XSS^L&s=T!jvkNtWcOu%sdt@NT2mXNatQ zGpvkyguy|~KiaCT#SadFDmS{1!{fZNEWI8WuUNtN^4ovBYsa%CFWCku zb1s1+n{x1Ss(0H2eqa)}xtW8JMZB41T>bfiOQ8Xwm%BXl8B2nb3q^yARlyIlb@k-}}uk6SM>1g!?_*?X?8q(EWF(0JE^9 zjFL|tY8vNL(Qr7S6m*4!vE2tuCYv35KmKtHaryT}4~Zzk7%_aDfW@l*xKoT%+9g7~ z{gyW5uLp*}Hqhq0+thiakSHALL%fk*=#{>j;1K@0bvr zmP?V__2r5I&o}9RP%D7_EI(~{LKUVRd3wej!*uL->O9!0FH5FNu8cVS{G=Kp+PE{V zjC_Md8r-w5Q+)?ZL#SdQ#ZUG6B6N+*s27FZJz0ki)L7u?UoALaUcjgg)-aw3RCh#K ze9j#arO!mI-RXl7F%15VFY)7jroM<_0)H6+&gs^a!B*^ zfI!3s^J=ZUq7lLbAe!TBBnGwwiZC1HDoaM75MJZ)e&nt=<)%(7yL0GmjfnaNp6&O% z(xZK)+TPz{2jQ*(DhR;2`X2a0O5&?@^%tOTPX*1Y5umgmurf7YLOYzSc9hXkam2({ zHA67()}@RLea6&r5G!x52W)(Zx`6mJ-{ z=`vpSrMfEbuk$_i|Al$n{9TLgJ0IZ@Ge(w%Qy;?2>=A}5&_TN~1c+I9xO{z?5vboV zs&QB(c2`Loi2iq^k525SNM^C8TPo|#Z;0#=$e6M;-CH||7y2+_ymZ~`#te%w+dZI^ z0R7E;+HM_QGULK3HMlbczoe9u^IN`cFK@o+%bb&kU}*^kCMeiBNY#W0%1PBdo%@n8 z-$7miWB%HWKeZI}&AI(y5^m3XnIevWlD?O`YAY3d#M532S)To3K`^(St;1UJhlR4h zH8Uva5K{y{8fcNdf9vNP+G!|4+~}~Pii5Ez%#QV0QsUPu82wX><6MdSbN{3cMe!?7 z7t4PHpE+jRtia-Y%Qe#^q9OSl8ndsn3Q|dI_6GHW+kX>F-IWDEE)n4?7dN?!bur2& z=?vM-ZyF)0nfX5hb*WiF(WF{?TQXt7<%~pctOzumR%r^&x%1UMnw&OjMbzcg6HpskgH1E~CgW7>5U-9lptNMF4_4=0! zsx=un%@Q|dz}T*Q+GFzf-m0|Nx(}-MO2)gH{QVjJ-S2;7kb|u?*xFo)o2ru2MZY@?Y-PROWMuU{EIVF>Zt8Z;m76qjmg6(GH@L|<{2N4)~i!GiqS-|9v z&kV9wNQ0Goy6@0y#`_1SdlcNrX2Aw$KI>b4xD{B*em`kDo5V#nt1a5%xcfVurQs($ zQ~xGDnXH)d4?aD3;EN#DZ!;R*9$fVl+wc-sbla28(yPz6H(G}DF*_19B$%^ej(k{E zk_>}^GiujMr-19jr;_Thue4uqdw(T2--V0=Decd`0)MZqF$HV2G!nNBQt-kL zvLP%}KcBQo+V)0Ku$5`GyA?dg;3~S6`B#w?Ye!D8R&+3kX}%x+KvQ89sqWpR01rOY zP!j#tKztMQ@Lgy`B@)F3YXFm!&bc`cqRhTUZJM?iEx8u6-NI+)^PzUKnk1CZB~dc6 z>ZfNK^`@62YrEcQ%(|BVH^7|%7Nh3;cTH^0JTi&VnFy&`Jo@v$|NbiSzIKmbN*^-X z#%6E}l?Yzf>AH+PdvMzScee#@^yb!Y`dx%M%P8_cja$o>zt-6{vl<#q!Qv?<3-zJy zn?Pi+wMJ?n$}YjB)hVA3Mu2tTlFt4M^eT_x0ZtDvo;3mctSoQ&ZMpiobfw=+*OBx!(6i6qmiEJa68B-d;?uT^{~c zrkz4O%*y_qut`I-_6h}$wjQY1f;%j_3q1O&9e+SsHr4oV6d(5!+Fe{6U%PdHQgRP; zP7k>IYGx}(%a|g??KJk<-!xevv#x1k1P(pZV8V^H3JYS3JVJ<||xcXv`$ z=vu75618Q-i#5b;vB-wec;H#bSvd2QFV^l(aMhcf*MlsTij#gs?!uJ9fcSJRx5HV1 zB+3=YxR>m%^1^^WK2ii8-(BJQ?i7$4lVu)4#D(E>b*I5sixC>c8xCo5AlV~V#{DvU zr?(0_TnX>u9W0pg@Vw>O@LU|%KP|k!n}Yanbmz!p#;GPAV5=|80DN8tU*Mn8WRuAX z1-Mb)STIXyrJ~+eh3Zb>mX=k@lfm_f`TeFJg#}qd0vX$Be_iBwWb1b;B3JCu3vw1} zPB0<>OQ3M!I^$of7nzS%?|yQRuv}%T34*aNZO4~^*4ixd3<||BY=BcYFjM#y$kJ5Q zaktMl(fx+nd(T(rZjwvR|Mb!rWDabyvun?I zX|V%)0+arMYRd0UZs1S5pf?_WU;WIpl<+#D(QDzc4odHq-*z|fu1+evpDkzOx~s0F zO+~f7fzDA_5?g1M(0ZQ$9ajDlfmYZHV%zbWsZ0AnqukBf?b|Lr6YL4MYd@Xm@`C1b z$(&IguiNTwp%eA1^|85>G?>Lu9c9txL+Rw0~GD@C$1xE80ZVD;s6IN zQ*RZ0y8rbdN#p6bpvv4D8Ql2!a9&Fyhv(e|zO7qx*u~l*QxT)-q*NHjs3_ex`8&)ILhM z)KcBIFL71I2mYzMS50GUy!J7{DDO9s`xf3=AZq9jKiBZ5sQAc7a!xQLE3kbdjAMup z=bBF~oTRLy@jJTmRsC9Mx(b9DiZ&D9U*dM#cFude+s}A+&I}0W4Ngo|!qEVW>v8~) z80%=PaS|l49Ajv9Tb(x?^2oOC6NUQmt)&teG~VK&%m|CV5V5y(TG|^&77%CIaVcL3 z4wP^O$!N0}MqD0CDm$7bIF#X(mu~vepk&A{!{|xf@M$t8qz)L=8N_VHnYA;(^@$jczBR38?`6c!I# z07)kGfGW1D9?AF>1KIuQb}&pq>~@cMB&Cln1CWo4Ei-ZbhRsx}0!goH zXF{0k=K?^>eK4!A=0}sKPj~{3FC~C5pXdK9glu~G{_kzT2*iJjB2nO(^%>~Gx-*gg zEC`)a57ChRWf$IVWNw>~Z_|E@9Dnao`43Vht3gB++%34+t*}U_ca;`bo1D~Z(y6(F zA1BO@_vO>`;m=5W&sC6aRCZ(i+W2xz3I)W1(KScxl{C{9%01N0kijza|Nn?v^>1(DDtCSw>Y*)sOkYT|6L}## zS4)-^swI-}`TvgY>tKNJZ8P=DR1a<#f4Ho<10JL84W=^_P}WyAuX!_ZfLAd(e~D`0 z#IycPkl`JDYnSMAjhZ{Ati`k^-xRDVv`7&CQ_?Jz9-E$jO7n58^3tz}kvFgx+e29U zcbo3aPos+5#gdTms6pk3`aDA6&w>1QuSnTC4ErQ8%`x2Sp z*e8QKkz%qBCuoO5PPulmjmctqZ<V zYB+d8sD>Ds4v6jk$}8<%R{v0ZMk|;V;<;70$Qv|=yhoK#bnRis&p||yGQgUjh#s2PTUrKxuqlN(siy;~FAvz#Ue-S---zeS(*tw}O zn@wVq=>!dRA1vGLnH-(BJ{hb03CP1s5QQSJ-G<_z>?AiOe$pv_x&7WoD#fwKAnyCI z?NVOBhJr_3I!SWBu37w1U1Jogeq=6fxF3?k>XaD%KIip$UuElPW0pmew8`_yJ3i<0 zyN3Hw{CN>zNEp~Sp$kGdayvmcWATCWy@U5eF84GW@KsIU?ffwutL zU$)E8V3Ixp%<70}RoPz!BoH3JQa{QDHi3+OXsCA7ljO%TbmcJ>n=nMb`F!VSUMdIj z<-bb)^i-8B`|NUh^O3v}{SeU@Ikr@(6QOH5o!^!qe}O7?mn z@ZBd{k#acPxC?^W%A>?DBY!)Wn|*a}^Gxl)9jQ1?T0tb&(GS`4BP1K16?mrMS9JnQ zla3+utbRcnO<-=fz>Cr^{vb!IO+kqLyh9_fczIAj5ClVhT#B1oEY@u+aktag$(|qS zf5<-QX9NR-5$+YRFFZ4NS|p12=h;TPlhJ0}i8jZ%yy!5UuP9&dP9NyXInW<_FW^qq z0mK4(>QB-G&1aW?(rbB(ZlO;x94Rw!zxz7n?riXD7w@bLDS?Z~;-(7%8D6DM28#Eoj-d(iV6)&-OT_NLpWu}RzAFu)}3W0Vdv z-f>x_8PsNfoVjr-G$>;-VHRAbtr`b_Op!8ee8G8FLo`Qa9NY~}Sh?yM?6d`UBL7F; zybO7zU{`+ebYRJnHZ(x7XYusa_JUfx{S(p)7xLZ({};I5f#?%FkNk7ZnnxOsrHFv3 zCR@^|hWhpp_l8id;vb;<>SQkccHp8 z;bU0?qf8IHWO-?Yn_JP8Fmm!wQyF7)QZybbiY=wWOSw? zTi}r!>~NnIY%ku>gbAI(Z55^H=|b8>jVIi?xBVw@Fa zo)8n!fAB}y`~^6xF*g{C@om2)@BDipHrwxo|E=bb&VuV6#j({WRvFJ{gqiNv{6fK> zH$@i}{#}z`g}9?vLZbM-zEtAB8MA0lEgM?>@^Wk6@tS>7?HnRf)a;4WIT&nIRGxX9^EzG35L;bTI5N6Yfs={u3svQxO!U(dKcLc(_? zNG5SKJX~tu)#5iE^2&jh_Y%zlOVi8eo!B<&tGk|p?w^D_p*uI_8;JH|6Pd%$0j;Ke z{Gfn$^3=10I&=i?+W~X8`Y5oVr@f8V1`mnA?L?q6AR6Q%FOm=%@H(14yPZUMx13+^ zu>Ww4cSRdj?!-#*@IZ%d)&b{Xx$X+(@&g(!Sp(+;u&^i1O{ni)mZi=>|950s8&C#X9mvXS1>D}U9j5^ z@*&%=FRYb}SfkJ`%vrKBY%;N=Me^OuAA6Wd0~f)v`PqU{ZihctPJ?FhQz4ThgB ze-3g=FkAQit!{##ie*t)>O@UvABi#w*d23Wvdoy#NAUNE7N9!>xH8^cH!j>=^kvq5 zbHS0yqiJ>GxJJtjR&UOj8w(;IY+fu68!|G@DK+9Ju7pkT4&neX(FyXoM4l{2=YNr} zIkr;y-Su;Y@>?wa2Ii#AIAKZVcbxvkKdXDn(Ft}O;P$T#e+82y*u~1}_PckkMwTNT zn@khx$5TtM_%?L#Wis>oyGfJujhg1bG)3(=FDgKj1|687FN=#q$8TAu2R`Q;_p_|J zI_3;0(ki>%1NkFxJK)$wG`2AOm_|A1T6f!Z+9?J63QJ4!MoF?-^PeLCt@tN_{J-*i z%D3J>-=|tT|4^2kj~Bb74q3{$k{<%!wqS*~CcR@*j$qZ}^}?P1tpCfSZb{v&H_!E! zejaBk`aFS2?MJN~pLv9g<^Bb5!=zqH!G=L?a_<;~cQw|ePbey3+CoLQyT#?Tkss3E z8b-5RS=a;>A9CRJ!Wz}@9r1@`)qJLZiJ=C#4xVeqbIzuHWYhE^Q(_BldUoDqBUljiB@cM- z65+yEJQ^;k1oDEqJZ zWVol=ZvfE`Z+KofgAbhtXv^ZbE$;!#iO^K@z3?|cPUqlD0|*zOcKXC`FHz3Y_zX4n zoVHn!P1ndUgrJ<=db=YkIihG>Mqw?bcb<|a&SA^J>s#_kj3qzd7CAEEe0w`7u7!*> zfIB*NCU`uO0*mOOS%rM4dnj-%ajl(&>ef!#*Bpp!RtjC4Dr@2D5^^*$dHNU#0rRt8 zD+5=*_QzZzI>Lg`vU)R`_j+6-cZ7apzKlwFBX#eI02C@YCd2^8&0C2nQ)A7*?F&yp zBPHPIXdX=K>UE>+ON^$iF`sKZc>|(7MaAfD_IkeNc6(sEsSExCh*HVUPIaS6zQ>^h zC%6B1a=?!fX|z?@<~J|6#Ok_t9!uNBjMF&}d=r9rNM0kP(l9Vk3x6pSf-cmKZ#+`W z33Zg4Xgih=DH;J4L{Q|k*s+;?NcVP15jT+!uVA7hhWlZ1$uxIRdLNNNB8sShFY>XH$)ioU&r-PImx!#f8a;2;dq&Ba%Unrv4Sl zF12!Iwo8JoQY(rpiG!gxhqfwr2_yAf|E+h7bUzM`@u~2-ZQo7U^@}aMf*C0t4-=OS z(@_v=np7wilK(mw`Ex%DR9@9bB^V!F%l>O`oFvNNRp6@==>W;2@!D+~W97<=io<%Ie z2I2eBqxNd~`Y&yn=)aesDcZb{jw}9(dyS)PV#|);Z=POwK_spaMq_EW`L6-Zam>QL zMwZN$$Wj-q@^}z-u)WK@x~}YQ6`hMuazf^8z!w)txs#Ah@D!|s!{l_<8Rc|{iIMo= z=Hk~W7BpnlP*#NJ4wXKe_c+g~r9P@KT3>joeeGQ-Es6R0nBz1R-a-Ml*W`#hXnrhO zm#ruK+21LFuMA!NGmKgj{D5rHDDY}XCP}-u6l}{cQDQxjKQS_Cq9F5rMQ26Ze?>0n zW*%$^{N5_Kl7K@e!#Xo8xXd}{217VSVDk*9fv|o+kvGqPhr;{AzvGbU+BAt+m&a}_ zfs-~<5?^bbrD0G z<>NVZ^>@dtY0a)n^)Tve96_v$X`wPBrIVGUmP`!4Z+RF|wzq_zE(HlPH*APKP$Bu3 zXp3Xm+yKqaDOjY1WZ7@@jN+0a!7)!hfNtpOY>rr2!2rZpCEmAe-Ib?z4No7HHaDt( zZWWmL+^*jNRB~Xf0wm`(rDXNuFlMptADhNqUH0EovFragmC^lQQS{2peUoS zMp62Uw#-fXl6II@aaiaHxJeZBZMc@CVN7p7zpmIUKQ(?+&M{G67j>m6W1K~{v^vzx zofwrYy?0ax1Yja2QGAXvPUUfG*|&2KD;-MmQ_URA#H|Nu1(I)fvm7~Vj!uWDCnR`( zQ=K(r2GE(nDB-}?N3ux@LaY=~afjV-kH=rd7bBgp8n;yBpkUV*YDHQZ*?37&+Tvlh zKHjr>t05P3&*=#qr=o`Lg!rugeUFmo2#F-d3_uCdJ?+7Y(kzMR|5o8xepeA{Ab0{U zi)ZF~7~+V$YKqZen%z?rxgcaDbA&a{z#^Fr+J zj&6d%My6$@z-&=^gtn5?CNpS7ET8a+-CtFp?8(Y;@V#Qf&Ae~e@g`H)jJbgZZX~-t- zPfdVq%eU9L<-6%D%U}HYA^=k<7~x0;1qiE)o)ck%-=6PHAo5{pYA+v%+7kr#Ao@b;VcpUmD)o~PNyO&XjS0; zI-YnokXz!t;GR5V{EaxSmy5!pgZsn?)1Z^+zv-BQrILXua%m{S)60;P)@-FI1C;(l z>ux|h?ou+siI+IxW_h!9qsmF;d7Bjgj*L;OoPAip(4L8zFF#s*xBl9Lj;eq`PSbAumW3s7d6gVB8`7JS4CUIWipB}Vc&~-*<|`{9OEo*xnAIVSOBKY z{{+p*%0A9Iz*FJ&PoJUhwo5s6b)JfY0fTb(eiJjHjSl1{PGqvypP6Zte8Y5rPwHzb zz51GRRYQd$5_))C7F5$e-hv-R#R-0;qIbWh7tQ;P({__I+YI@XYD6TK1J-((kwQI@ zr^Z}w!--e0aLp?(zS=JJG%!a^iQAR1MsiCK@XAclT>7cG-+ucOSw2XI(Gp{BQU}7mD?y!Q%{n$Gk7}VG} zk!KMMZ9ffkw30ghmoRr02hcu)E_egQ=q`$32KtmKn|FJ9J0C;%j4hDt!|M9%sJ_1f zR^-5cyEeMFtrG`fGCZivBTERmN(c;wX+0M(6 z5JVy^TxtoCS5B%&Tcm0xSyAiP_uFa+>8bi~2b+%51n*MK78dhw+-nv3 z|51T3EC)m2dqCAl$p#Wxr+tMVNNzauz|_sX3I&6wzYqf;0bs0VQp$Bj>gZER2y7m7 zaqPwuo<+Z>h1ah8!?X~OF7X_USr)xgaBJ8?DQaQ=nft126UV8&^-t1<%Nc-aci$7;IrR61eMU`WzE`@rRXq+zk6722> zdhXpWF^#|_0K(nbTV4^z*Q_0y%5~4Dq8JkX9M(eo*^?k?yyFmmmaeVyaZi zC1)I?1@=l0uND8_?SeXMgQ3;<>w@r?K`PtL7nHL$FzLdi_Dzg1A$M9(ro8=n7!~N) z>wG?v{Ghp+*UK?!%Y#9lpI&URBN}@>tS!GllE83%n$Y-|w#x0&5W5aO94=t8)J*j} zgVXPnOoY0ViVzm4iaWhf4UEdgUp!g-iDGJle7;H#j^=t0BX(FMgHK-@Wu^#ZS{a>R z+Y4aB0D@46KVt*v@6#ksksx(RpC>($wAXESPApk*%biDY z7BNCvQod4exAUT`^X=|TMDhEIZgm2bCGyKNJja|Q*oU#O5~ zJmixK9IobnVW`fPi|)xaFB#lefPHk7e%46vsZ>mgj~?3!egD+g(Cc7APC9R_G0Z8{ zV;6{COA{_CiK98hq}2NS+5$`8FPgYyHS@I1W+d$sM6&r@AB)e^?`9)Ju(S>dlKDOv z$clymCVhJIj~o_KwgyW&lS}NNbyN>O`mykghd#S#mvzgtXiI`Kx_w@o(!viFch4W5 zu@m?x zthPP_Tp;Jub{uS!=Cz7rF%z*G`0w;A$hJ$SNGQ=cc1S~LPDXl;MIuU>gGGP6f-xN4 za=;d!=5xrodg=H(uDLnjlEipIOuz8r>`2I!Hh=B)s8nQF#v2LlCjMcO*f{Ogeb-HO z_2o)2a2$<9W~ob7qA_LNT&*&-uG=G7m~4R&TxO`KLjUNUwo%A^-g#g zAkfy;{pBZ9Mg)v_Y{~sKfp)*8xzRYAa&cL{6}v+mJ0IrY!El<}F6UA7ReU@r zXlL^i)kgEQsKR;=8Fr0MpLC^98Un!aZY8EeF1K3ds7F}t_ipjPojeT51HaToWYL^; zrS1sli-XMu5u69OuUhlP-Rk-a%w9>1h{miq=^uK8x1vb!6&_@_wK)^YMunz*T*(0@QOZ^v4h+^(rP{apdi2Ez7~aK96C=01&B2l!QqXbe`@K9@ zy=bA~>A#{)8E#bXv0V85w*_x`$RMfn#v!MxT?X%!0ZNx6dnsRczADNA?Y9+RBs8`W zB>68&gs*Hy3-RKG^Lne)=9PM{V(rRWRX-W5+s|D9}6TgGfOE)1tf=>6U3EG|j%Pv| zVDnoUD7~GYClqh1Vw4C>3r)7z3t_TEuZoqm3HY2?p^hN418e<+GYRdbDta>>%T-4Z zPSb^9G(n6(+66<#;aj*gcAcz$5a#~CMu8h;;qYXI$LK9TJMpm(Z> z;tTu^0(fg6PB}?xeW59cRZRYGJ`GG4VwAI}|LvLh=9n_-F25QlUhcg?g+ zB(k67SfL~*6h82fbrm>W`(ljx`TPz~j|T%RNeLIt!{@uX?WYgo>SiO9WufL}(0qQkC|E*>FBLv}h z6m@pc8g&mGqdRrGBb2jdq~yyCI9NW)HA{+8gHiWH4EyS1ZrXmF8b89{QW&+}I8jW= zrlP=}ecZC~ z0hYvMN;4-G4)zV z%FXt#GY8#^XWyuor{ka#M18!V)o*aF*|)>^%C0VsKd-ARh9}-)5=w)Rj0e|z2lmt7 zCXj;>Yt{Q?F!(GN#k6oxY#VeNYWAR$mM+GsHPTE|C;0usKW$vAFQC{_bFBhn3|NPE zBhb|K+S1auf!H(DvfKmbk|@e+V_6 zo)u3tGzBu9DfLg&b?w!nIi`mR)ZU(3_+j^zYEE7TYnKcuGDZxNUa$yG`!ae4#C4{@ zaLdvaf*alPj_LH>j3JS4j9zw@u15cz zjB@sq?*QOo#p+(Oi2k{fCV?Vg?Ev7z20Dj`$6^ zKOu{gAw@=7ECR%i1fdQ#ZY?FloLN2Dj~b^7Q$n19)`V&DMjIYl393GqFL2;^yT6!I zwL;kNm7$UEQ;@^FYY$) zq!DaxISUgnC7;<`@*YHXP`|ZU0yC*SuNM3@5HOhnfBx(JFf8k*qn2fq$b09k@sc>7 z;q}uLDw<8lzA}RcIb}QkHgAfEoMXV~m&(_!;6@FRQsF1B&6hIpx~AQpDEmkz$tf5) zjzgkOF~Nq)YgG#oU~uqU`?_xW))L=Kh(J^~^PE8To%?FNKh1TR``!2W=u7JJ4U^ZG z%rhF9G>eRw>w1=BV}F$!^-W_^sH@HA=;9k3uwAru0+c1iVeYx7o#GHlkk47Gu34WU z%=45i&m;22=4~JJ9I#63NW&CGrXReeAzo%7!$RoA$(rQZa?3b-IJF%GHysD~bFFGf zoh1ip^CAL+X-Y3EUV6N>h|N53%klVn*!QEKy=;xn*%3Hoz!-Z@jS9XVNdUHuwqy9? zwGQ_{Z#J{?F$v!##52*~Gt5<2`OzXl2@8q}lMZC+qdwPqHH?Z?aQxLA!h0@K!YUwA zW8n*e*Ap0CXCT%ezjbpf)40Zhz`swW;we$rGX$qIE^kQa8+-|dMFhpRCx_c#hd&WS z;xey4*@%DLzHr=j6VCbg>z0vGJafHq$>ckNR{+_DjsWdN)*9NzS%H}|xW#dW!e{sO z-^Tp2!Ao)TBP>I+0i~0>ZKbv{l7B~r8VZc>Y3ialDB-2a4?E$w!vtu!DQ;1R(n>zM zK%b0{%)!>IA8^Gk^erF!Cj><0Na6x!<_auiFwl&LKwJJ>h5ni*Ixxi(6qwJTeI~v> zX6E9zW8?1lnV=M&@8+}aEyef6E8?d})R@>O3A0ymeAQoef)VhJ`=g!981V}XO{J_% z=B9PycD8}=Xm>6$n=oTh`~OU5;fCPF{bc zh|+lapbwXihsvyMB;Qvp@jE@f*$x~1V+8M0T9q`LR&BvmF`@95OW*^B4pE`8DNi>T zo+V{QpaJ!+B0>@zVRMP<#&MSGf`9=vCI=+7;>6JLomJ9*1n4Cxzqy|1B_;WHr_pn+cm29xB7+aF9x<-|DhmpEn2zxAEQDHw1!yjK67&uYh zX|9-gZ*KsE517op^1*Oe+`qE)P`0D%z}hdK#%I5sqMJW{gCFzWi)+K&ZqQDPp>t&| z*GtviW8v2|#nql`^ODkc#G;A*2d=dMTg|H0w=|UO+;i`@t>S5(QvagLRm9isRaK@) zKVQE{Ia6v292WPOTOLYw2417y1lzel2Li7izuNWe>rKz{qgIAvHkl$5wMTl`i%bEv zA02sDuKQxtqwijHLiW?LP6>URdA%kqjIj-jk8-3YLq|i;xw;r`{?!y!1i^TKP%`Af*RB)G&aBm=-Sl6U>H+yHFmG6K2fC zD@lJh0Zk*bdJ!`Yn>VBQyo1Z~OS$=)({@{eg3jWFXm^@tn`(=}++A=1_WNSNSQ=vZisLqtIgWQJog&!K?cLlOGZC z^i7)Kf|ENuuKm(($jV!S(RPI{KWTVwTqCWtG@$+p9_n z`ar}-U|eYjcID#ATOO57@&5J6omi;4@U>qAEg@ougK*Zo3NmHVcEgyA(pi#?kgV(n zL8GXgWi~UK@~>P+KRf>csIgb3F4`rxHzuq`29bCZzByM;v zg6n0-Zmz|@adxNCq~3CyT_zmE*-UWIfsN>RLeNKu=@@OrIlIY|>Qe&KeVX6G-+KnL zVx{y!vMq@V0$Egy|j7yLGmJ^>50$n z$rC*Z#}ikskK$B-JB?2+&>=Td1-P|sl?UaX0;KoZ;B!XBOoaOT{cMdd7)v&ZLIjQ zP^{f?MCIBw=m*)#9Zh@3QdUr%7--tFFZB)`sgl2ZW#OeTWvpf&49Zi0H~}8a$S%JR zH?5R!8gZU}&+~2nL5Om4EJ0hmhgyNCldG@JkL|X={nn8`#r&yhVfcK;&aMWlI7n{w zXk!oY6a<&oz=+%r&b1w3d0GyB`>PrUfHg;xQA;s1Fnnq`!D=Q9cuZviv3qUte~!`M zW+xiauCi_Z$T_PEJS`{MYsRr^n+s zi%y*_J5^M;2Fv>P`Hz~QkWL@HIh3^u7Z1KqHDsLNQ-)^Wvi z0|?MowUWlx#%0(1ah0i9s4{-KU<>07afpJ`=p(e#D0 zzXFtf8g;q1+?E4~|Aa}+8~~jo5C&a6-yzRyelX7P_vxp2gbk_3izZ|;3)}qjmvxOv zB_%;^r-Nz0z9^YykodtQH{{m%b34mhEB|b`2(xqt*^+Q2U@L zmNrmKiL&n=AYhFK5F0eaE~gnYs>sFN-hLFzbzw=PhD+@ZYu(of)%hsWR$9+Nf;O6f z7hx(uaLZGL7f(@%)u11WlC@9_lI?^(q*{0#a*s#3&|~z%5+gFeEJUF<+RSXs^9!Bl z;SmfU5atj9_+sF$lY`0B`1fbFR9;oL%12N(#^9T2zCyCwPaB_L-?%C`EkT^QDS1p! zK-(fHEA;a~>JB3n4Q|~N-*pD~=AMi#(kYMpWxY=%B1}a7onCSCO0ZY=L|SHnN{54~ z8@VD6O_n+S?&uI&5;}}wnOb2oU5h=iy-|En5Z5nK&c`dzEh@ex!XB{}9P3ZTExQ2g=UW=kq;IY~yc2*w`V|3F(Rm&E$s z3@P%~i`BjkLQSj?QL8eSuttax5yXcH?dXUbOrsgxFw{4}^*EjSWauf@a9bxfyMVK6 zBXP4IPq0Ej4h?9_ZeXdM~X zk&y)V#MzPiiBNXYcDde#(Tsu%Wzi0Ipf@t0WZpo<+<|qBxGqR8f&%)YESXlzrTq`B zX!+3%=JlRF$HLjd&^hIWFEbY-V1x%;VCE^qRsln;9m#BWoSg~BLTix}j;T;LlcK}k zl>9d}m{9-4Rw)2YsqP>5^K~1U43x|VuRf6tnekH9DlJ-wgL<4Qmxu^ zED-oHdnOs}>9J!;$x_K}&@QW`z3}RNyvQzUaf!m*LLjRw*~@v?>*___^F9+ zP8-d39=HZ|p0`YZC5|yOF^Ue0cYvX~hc-C|lGjUQq$j(I8V=#u-99>Yx;6!1zRf4sPS9F@ z=+6X3{X2PGP|Lw_7z^EFR0}-&NgPFEWhg2$-&*G)@k9&?VCxw}<X5Z)Pga9{{qff);oV7a5CR7-S$` z2$R$c5qzcacKAm#4S$s@{>aK(B zv@wO%s2#jk(LJ141!SZQEE%dr1H--qRq1uoy}S6jmc3+E7tvV$+55jU_cwOKVYxHi z;<0NxP`}0Vc#$nNMSYN5^UlzR^9cORjnxlfIen!rC>k*T=6p_Ff4Dj)4Zz;U9ijV@ ztnv)d44(H?DC3+E-O?IqRzZnv^M(*$u-Y-GmlQMnhq|6aU<>3(%80BbkusCdBB~(# z0AweIwsxyU%e&-#+i$F4zP7B8cl*3jKc)kYCR1`H*7tP2+pZWaP4~zPv(D}dd!BjM zW6Zrv%;51lt`Af93Mt#BC~|i@L?wUkC3y<-IND~*3@%>aRbTK&GPCYhXXBlakc+vX zdr}mii%(N05{T;8#sZARQnHlzi>!?LU>?B4yOgwHq^5~_FfP=z2Sy`1ftv#@x^1J7 z+`RC?TqZEZ+D;S)GM;~+`BvkEw;E~=I2iHsZkI zg#q77)vGB}<&e?Cvmt?aCa?TCP=Ex0iY-hr^3%H(!(cl{MB7XqiEA&bR78yj!{E*E zcq~fabg4K99a0@AkF{M1?vE@%(fZ$fni%@+5aApXN~Ov$iUA|=gTG_!wh|BwiW&@q zyv=wwn9xC4UX&I#-=EOF8Ictt-Nn+hJ%n0@r+0PR(e&rF1`6!*(YUhM*S1u=a&fn8 zDqBJ6$Ln%qLVT_GWZRb5-=|c|+9uAUOe#^iv%z1R_UNM`^5B&ge4smH6xhK0Zk|vnR8Q5DQ!>(hH18r=G%#ZE)!RP7M2Ry$h_&1jo#Pwvc{U^olK`~Oss2rdYOSg zhTllTrU?e>Z)3zh@t z(XxevEJe9K(+1-0o>B&lMX~P61ZzwG`-DbRcZ8)RW7(p(i^6f}sFFza!GWGqlPCwH zk#8(s&W{1BcPs-qiE|FiXhlqN7V%m9V_r-eZWUnFnAPC4dz9caz`lHoC0*7QEs|gw zuFT3$HMnYOe4uzdwMf_ux@+kv(!5N^w zZ$FsCDz)d+Xiaj^Rcgh`i)5jtF|=*c?Fil}$m*t;e=UwgyReVV)RFOiJ-L=C{$+1w zv&ZR0h0W!q&FnU0+mTy7;hQy=ddT!p3bk&p;f+I3f!W)@ppjriA7>!K)V`oZ{5+uh z`y1Zm79vraAvgt}o{7^Nc|FM@EJ1}c!;t+ROoBM(E4&3d;UIsWCvL=o2|R=xcr@!@ z`Cz*6o!NSov=Du=t+H5m^q{{z`9oLEqi3(G3nDbJe>SG0X0LS?0fEh6a?e|K&kOmW zE5L(=Er=TmD}(;;gK7Ae9>kKDDv^Ue#06q-TGJj7Pltbs#`sxfm#|LC3L*j{GIG4X2a?B`$U(P{2! zi@!ZHQDoVPDispcsMY}`bstDHz^hd%B-Yu|~f6z&8Ut zCH#b3>ynZYe?JlMd#)nhk^q-M%EJ*L-Tk>orCn*S-TZc%@L-Di^tWvpo05C79=J}8 zYL>x^@JRZh>3-a7SMr@8t~A0uNPe;1^GWXcBu0fAh>z`zcA-JPGI;rqvU?CUFSJW} zKQY%qe?8Pp5s3s8@ld*7r|@;2gUB$SBNdZPwKjXA4Hmod??0 zP`U@*jucQ{P$h>*hw(9$wNkBp2b_5Xw&V*rmFm8k?93q=-|L=|Yj*jLmSxPwt1sxT z9gX9kVH<4<&?61ZR7GygYI~)`P{aD52ub_MHpku}@tQ58LI1Pkui#jDpTNob@`GWG z6b-5$j!XvJD!~W}GC)H<`QD$Ch;iDoY+mQDOhJYI&uNbW9gn==jbvfnZvo!u133#_ zR?B}g40`y#v4*{PRkz|Vxp#R_`FNWQ3b<%{9kdUG2a7qAcC^c+AUv=L?oQ}mAl-HX zF~TPA7>gyZ!b8DDoZXRBqZN^IyXBj4)+VK5fT(KaK>FQaaz&1Rj2bMy9s1nX;P4M) z?(0SpHaj7!sFj>8?zyGysJDS4Z7@u&-$w>b93*4FRbpo1g7)0@B~nea0#xjGh8)`) zQ?eRW3)8Z{qZoI~t-WLweA%b@91P?}_txjlBKy*TjzXme`G8ptPj4#}^ps>N0Ekfj z(~0KdHP)qhm+EZFTBw3-r&!47gu0Y5xY~ z=pu2-!C=~qL{YW!Mv1P;TW3{rqwXUGV}Dl)F@q%8YE$A) zr&#(f%ZAIE_DdEG;uy{j>)IBs%7YQ#!`7q0piDC8&PqUH+dFHadZTXQJ6n#MGuVBA zvNeP>6>oKI>&7(dK-{fQ1-g?CY=osO$LI!=<-Kow9cnJ2(}#)iT_B?)2~!Xmud}QI zUDAWzih=zHDZ*WPvcmQ+VT3E%=ZvhbK#noZV9)~vz_>@cm&_;>&Z9cXB3{r8`(p=aWbY0^+v<0}VY!?%W^Cfy&vx-ULYN42mwjd|*AeNnIGq zRy=0$izuaT;w7$KTH~2Aa=<12wnSIzICSgrk;vWTRuCc|PcT17Fa}etG9eu5qWt+K z(Fu6I!wb%#$&OjE=XYbfISikK5LtxdPg=5mz5IMP+TG}=YuUu|KQ}3~)zuculLa5L z$qjOU2ohNL&xwC|mTsLeqi_4(Nkm}fd1hn5ov$gcayK>^lP zw^!Mx97I#cS406by+LKc@@qG8|3bev#|70q3K6Ihn?h)xOxolQS&?qXBSra9TZNT1 zS016i7doTelis6 zIO0X$^QArgb1%NDx%h(^A*^R7aQJ$LiT&coTc7FWXdxaUqhrOdj3STyK5(NpRK zIi}z!icx=T)4DFM<>Tp@qzisn;(WzI^gz~b{4avsp6d+|A?)!{dj6G;@DNA%wr1wm z{7Ri-R_R`)kV~~i!h7Lw0YB%d_8XesLMhxy@LjG4;mxag@Q}eEAU_nin}isPJKV+d z9^|;iEfxkMi@h%aJjB=G$l}i1h|ZD^a!iIBP+!=R56y)SQ;?TbN=MLeou2f>`Q&NG zPNp@yRUQHeXgfl{)*XQ2RwmMQ3=yA|$QiWg`yIj5Z*+V`-JD^xxMO@Cqr6VnoVFIA zE2!@|KceUz2b)jo?K>g!ylnT0@!F1eN^EW}YogA?KIi&i6uwmW5)-y7cHFsua3fxd zG*|Xt?0l#+7Oy^OXN28rWN&N$_S}iUOYjDuw7f}mPMKU>J)2>l?|(DO$nChX;`X|1 zi~o=+f6dxcEzNZ4&Qy!IC0x>_^T5)2B7BP$h^|0#t}xVi%sq{|K!fTtfv%!9zc-R1 zbvhX0g^t1V{IQ9v4rMYj{LO@kY{)z+~~308svEI=A@D4I+)H$r% z@@10G41lMTy#Qp>GXlzZPMK2C`T3uNNu)Qjegr7R6sXUCesz_Hv|>ArC2!<00fDr9 zd*fPS`D7;D)Pdi{gz1G25Ab_Gsgi^oW?lO-cwov6)U^|F+vf3jChGt}3OqDkwP;%!XYL?<$E|F~U)}zv{Gs?kp?<1=}>@O|lBah&}w^>Vr zObf{GPViUS)N)n2!LboEd4U8D$Jg50^uo})GD)II3NV(aai+PDY0UF|%tCKvvn^*j z^;QDMmBn5IyKlGM=cEsLh8^cqBzq%H%1K}vyL@>gtV~FzyN&x0d zbNW$M!CUIoGUg$+iV#};jgJHe$<6xWPwsfTcRWRqBx;pF9VK4Ab#v?G?RsU-nUxL; zaHTA|9*SCB<3ztuEiStus^6tgV3E*`OldnF+}*FNJ?fB+o4ewa{8;W_54Bk`}2ftu27V`cew} z(v{+gM`F&a_g9)Cn)cFjvx*;D@x%RrCU3B2E#0yFa?9pg!rFw~?2Vj|CQ&~A98E-1 zft%`^yOxww4X>Uv2zm!EhH%!;++Q?wTp#)U?-Z}o5D%{?in`i^IAP>m8o4UH*?EEFH9@HL z?TlLD9>#ViImu=k+P&r?e{-;nk32zZ+>(6VN7m1{OaaUj2ShO&G#(s)RBtwuK%N`~ z09W%E)WLDmo-?5P&RS2S$3z#vHc>N_h|vMW-s7EiwR2`+G^KecNzTfroeqIwx%X~S zeVBnWA)O_DK>}quh8x|%F^X;BhfDP?9=Y3xytAY71<2FrXHMH_oEAlh?f2G}%AO&= zI#Yk|D`y>SA6M!&ekls}ZkC>!4oy4e?Y`g6dkghy4yOaEz`+)`J*4%Q_0c;*f zy+Bzy^6x{NeomU$g`!E5*cv>gFm=2S`Zy>OL~7$pDi)8CB{YIR{FA7r!;@M19{ zdkxtjn*S_=8a;UyG-L4g?jjVL(>MC+^W*-ffFDc7=n|SUSLbx zTfP-*+YA4{CHl3}M6br1d44S~ubGE2dV6K3>^^J4_B|#)fa(w|+9oe7Z)-Pe@13m4 z6uB22zvn0uD~Q?sknM2T{XS7e^tgqLO()B3ALJ4-Wg~;kb2id*-f`n3VDigdLcB9$ zCu~%>f>?Y)jx^#i@eFj@Q)w4n80i&xTk=uIl6nYk%}OEt1aYF3q5#0*<9u^w4SP7< z;V5^AXw|@SBQ?VQGiaPO5R8CZK7=~n)^bpB^dugw0@$JOKf63h!}AOaK66`<8+k3H z^+(nNi9SH7PVtR6+wgn?5CEnuqyONXO3lUg!C20q%Z!z`{*vwJsb3|pt3>z1xr2$# zG%80#!QE%%Cz3paa{Us!f%<8m*f8;Sz0qvjSobqA#Iil)>S~mw_FgulkFW+ z9uWr#w@NUd+fZA$sV4APyv`^jLLXUpS!{l=U;_s)FcyOcWC~j*Cbqft_7ge-oO68J z)ZtI!b9UY%hfIC0r^Yjn>aiX;H|AOQ}Gz4ejID1|P=Ewjc4Qnj_VyP#;235x=*sTx4~Vo`@T{(zwj$-NJ@Mbzb5r$R(uOYYWCCE8kL5x79vyq#Do76 zA(57|{ebPz3gw6yAY0(fqJXJ#@BaNV82%|-xoafbp-_zNRaIwqMkthKqFPHZ0{i#r zc@Kr;;@EXXh1B|hC-$-qbsD{F>4h<>PlX_AVryT^0cum_U(~l*FmlfdLJ(0Ba^7%X`Ngjt>LR73pz;pj_BTO9=IxeFd**X*J z<>w{09(lfPj`Dvx@|VG&9Gz#F-dQq!o3FCFmtlOm?7Xzi3M(==S^XnB2;BY&vZInZ zP7qh>0=^2hEO0a8XSWw_U2WIE)<>}C_+yeBSZ~v(75z93D?II=!?Z}5U1BQcA#WUqWl8 zJ4fzKZAwLloFRU>0n+&Q8iGB>a0FE{MI|Q`L$mvv zRpU;DtM2=;H25WKt0%B;LM~tO>%EPq+`a_G)8?s@@sw;4HViO)=L_Z&vpLDy|M!)< zNg`cRVBy2DFF{Lea``gV;XE(Cn~uiY!T7#s8xn!7wL23mW)1`tFl;hN1Ww9(7e$^t zTK3(TvBX!#Jr&Xf5M#}4f5|`nB2#Q=dg*wG3geZfDKnt41Ew@cog6~ygsSaQT1XEp zbD*3JAZdjQMmg5uxG}O2c@YkDexTNO?YucB9)#LAZm_iC6d#(1R8!@kG4VeO;j%r2 zNELA^C`f_^=+b4fWFhHu%kr3y9G-OYCDORg}St>B{DHDRg%X zaD*==NVTIwMW4*sIR4zZNG@}dmETO)_h`;dOGapa99-s&I`z>5mDw5T&VZ#CJrC}x z=G*cufV~M45|su@7Bt)r_VPj61HD?DvsHyp=SF4uiZK@1&B0Rcn>w~zG``}e4wBYzf(0)xV#e7^o&j~UGazGF|cdmGf^ zuPR<3@%QURLW%V7$r>g8Bq~4KStk7Ur50;{>j9U4OoX+IcKf$GVII&fK~D=<*+N8H zms_Qt_Kz074*c%R!Vl1g*Q#Oe<}{_awVhaV^u{|E>5vOPE>M3=YR8)4l4`r7~d zbJiw1RGb_nCET3@IV^3=Dz*&MH5aEGbn(s5=)Li7DZOu^I_K1)ZZMe_+b7MLDH~`7 z0#*cf0UYa0M_;>&JGOTWD@LO4eEBi^^~^BWvgK2R7DUBFQK)uMhafe2#1C&*&+#A7 z(U!Q18pES+Q94{$tb*M(mpmWNMo`xJL@&PJGJZiE+w$jR5_A|S)LQ&Y!0cbu_J4o> zud1sIinCd|5eODs76`%J-QC^Y-Q5-^!6i7s76}&I-90!2cXtmCy8*t zWKl7|SPd+5TS3NIoYOaiCD`qwre^0ZMvzubafppvfw_>We>~bs9 z#pY(QumB~E4FtRUU2tNtBOYD9hA|!Yx4!1EHX0tg%!YW?JKBg3_q-eynMYO*4zT<-BY2OP2@TMeM`-bOVQVVxZTm!jK7oOHpJ)Xc@hLB zlDu4Z`KGRK7MXSIjBCebXroP7XvdZ#h^ZZSnY|^X%okw5Y1(e}CeoQrt^P91n~1LS zhtu=_Z6Zr!a6vwSL!Ht?!ywLpNk4NS%994B{q6`3MT%8(sl51v0FOd~k2knS}^ z1!WDEyY<#3OUyY2h|m8sSg7(3!!I4n-GwlP<5JRGn_q5C=c*xLl}Acx+b}gIJA3|$ z6Z-r7CH7xtHe2%3_@~7dKBOA>y+Apqb7M?{_^-7bg67erc81B${g|pyNf;%&(%V|y zG$(zj`Zq$nu9hYik&7*(3HIfAI9zn3EjPkLPs0CMrDIJeg$cr zR3_~LU-kBd-zUbNfQA>bZ z-0;M4kd{D>o}L^A!US@rdQ$KC)UwlWgQ=i7BUZ@~uI7RZ9L1fPeb*Gk`EZ z_j#27q{{Xq-y>B$vVa^_>AMX8)}N&?QXg=(M7s6LLUEx({&-~YYL(5dme_E|w)TBh z%f*bDUWzPzodpIGu{e*Z#M-Z(wX=K*d$^W`<#%woQi0c1&xhy^nZqPP#bSc`JEg69 zD=l>fE5$fE;Aq49o(5w}kaOmXw&gw2BoeEjwgsUK$2l^z0{>rIBzO9W_)ur`d-q8t zv2FT52UjbdgC6PxIM0p~&DR}@^~NsttSr(8zR}kKN^W(9|!qdhv>$VB{VE~ z=shEGxNKX*V@~X8UAoTe*#N&hDs(j4qg(BJ`C;!nfX;Ff-Zu+QPg4|s#u@lZ4%%zrh!uZ|G%6d$GC8u5m)!!w$osctnY|DlbexBt$9ItRZ+<(XW z3bfY{4doL-zWiz(;GzD;VkxUKuZ4Fj{~OirCH{9LF6?UH6SyvgZlhlWoB6Ee=0ixN z$r-`p_GQ;|A62~yBeV_{YeokmcEW7pRHt{UDzS7tvyn^85LCb!nVQIkP}5ulWFDaR zdsm@9*g^RwojM!e{wEP1DX8ScV{Fr1r#}l{3@>pJ8;c9L7`SO21s}U(hRNu*U|u@q zt`Ay_yz@Bj`x7$!V~yi>F;(eMEf=wDUJ>OWGG2Q38iTG;^20d|tGkuEu|A6e5Wo7^ z`>Hp2)!OI7{ZHRE%iYzclCMb1l zUqR*4z93ceJ`dvv52eGl3~NoNBiiZ=KJa5>Qi_lgTamL@^X?+k%lkic+yBuqz}|Jr zW*t=-`ybf&TDgLNbVKU$z?T{ft0J{}}NiF&&_ z3SyE-!`z+U9L2-Ryp<-86G!iQ>xh@7%!TML!ebj{wk1bRCFMB_t6hxb3* zn!k#o(=ubW!F)*0nP*0n0I@`@Rlu=^W12yWoiTLWGDpi;!%pnAaMmnA@^fucFxU?w zLk%LxE2~EROnwR{vE~`1DHEZzrTlyM^L_NU}~PuugeGqt!c`F1&q4E$?u&>qo$cJ-@QknOKgS4m=qj+LiBSp@UbOQmc)q9|k( zk13}yLm#5CnrcG!%x4Wk4)Oih*sA^Wh64c6EcCrlT%*fp;DpIkQR%3lL9%qXd zq~d;LGMb&|Owu|*SvZ@41>oRKUvw8OhFeA#Rm+)nuMZ5{i&Jv2CUKW@gn&H2lv8lq;sVebihLKMqzZHf*>Mxzmv`RV~g4ncCx!ie4?A9A6kTX2d zq1Y;;b0`d0iA@CRYT0cLjbURK_jg4*=n*>3jAqR1h&Q&Cw=*kR){%&L?}Vpg5|PN4@A6)Jktyu?0K0_-bUsG^dnu@;8NT*V z)oP8xvHXrJlqZ+}gDY-cyP(ifUM;ZojgVf^xg%jio(qS?)Mtl=N6t_K`C}*$pph`~ z)YX$`tqf47@-A;K_S<6OMPKbmpE1IyKv6(Qh(r2a-KrKd_+)nMncu98 z9*=%q9i&*m2p_w*CT)5newix~7F^HJ0Eus)-{ev`oowa%pD^ml^#c05SdLfe7r9Eh zElJ^gUSL=Nv~W|N4#kguWf;Z%%tBBa;;$Xv;0Otth#1cZZ-LMplGK{feR95E^3}0J z6dZxCM|<1iH4)k1yIKiUxzRV_=MCP^#yb zrEsXCD;XbE6J(8Jk^n0z6{P&3 zDVj8=1HWR%oh9AjByetBAaJGBQ@SiD>#9KAM7%}Obeu4L;t?r$$i zYA;4_YB-~|dt`YLYQ2mfO?m%lBa&tfw4I@>PCdl$ zS`&qExlhl{s#L6{Q%@kv%@_z{WnMMj^$ILa3{RHDWN`n_1^>$ z?{^Nu2(uN+tNMNE3#4Fcw&JwkZ%FchkJ`e$siAwHiHn0r?%KU00 z{#FKOK`o)|*1)#bkvcf~g2(m8xy&{vF@^ryGwG-E*24f%_F!{@~oFlBlB3xX0#0Y7@te8m%psElZE?5m)D#+ z39`TS_)zmLCSL(>#Y@+?huXnU4D+)>K~*$QT4TeY{6mxJtHF;eyab%r;3(dX@GOL@ zhEJ;1qb(eX(I>ZU5o7rw{Ze1ZS=K!lL{OkC9 z>duOU2DU}}@j~naa~z^G=9rYNy1&}Ya~d3GOJe;uz1Jf9Q%BqodIP_R$yEBy@5b(D zcjZDs$NRUTRuhV?s{=- ze}Z>>&e7#dQw5dcgS@5UAet}uHMua1&2DIi4jr4Gsm_76m43sqRdmvHiQcbAfmEDZ zjD;PKx(t=aU6>u0>qdcRaf0N3kJ+nFJ??PwNv&7oYP`Qdv!>EvDy?co?$i2xK(`vT z=^;Mxii=q(`~ECjnCR9<-vsVKd-@8NbKgxVAuq^>)ITxb?TrF>cWGmW{1RpN1(F=llXc8syz)74&NA z0eddjneO%E+uItXF-)_rJbof_GxQ0ny9g2jpcu!$<2C-wbefz4^T-8#jmJ0z9q&5y z65n3}uvxa8U3cE;09!=6Nl1go3r7X{iV>n#hhrp|)d#COeolPazO>aJMS+3pA;n$X zl(~3gd+7MRnTyrbNyn?AX#_3|s=2-ENp%l-<6Vz7xP|CYha0N8VB_lM9(qAtyT2LK zJ}xoFKtvr2PAgXH2$K^C`6=z$TDO64`D4bnc1_qbsrus}BqSr+km~DgFyg=SmRH$* z0E|E7>0i`CNF61lkDv34G!v2el==TzwQW zx4ELXGxO-|Y8dC+vFaWMjip~KF}yZ996o+9G9DkDPs>QdfH=`;{urNYIon~I=T2Ti z2r+co0m>=WaDRoOXtOst|)H&aX5jw)Dc z)-VR5dh*G?=dn$Ng|qS$sDc8Pow0ULZja{>iAYod-WT-5K1BWYdB%mQIN@TK*>%2s zl#=IB_H&6jtJiw0leaiQUIv!IAagjIb;(tl@(Bk;Kg+ zU!*BE37B(I4QVpI{dZo4ckS9`w*ndN0*cjhe6K&tl_!oQ>CSAHlD*X8^?yKo*uZE2$< zC#2jipnAGYg2j%A<^sCA6IeQqGF{x&F7P7Gzyc_Z$Y8aPnZMNs0)qMm{rH1FI$TvD zrUc5q3?bvq1gAmHCu5na`H)=Y2lx>74Dz8mfRrwUF#pLq*b&-60o8-pcu`q~M?J4R z6Kx(p)MSBn{oAjh$(W7PQ63I*7cD}rQNx@&9!7|w3I1JTdG(9O%S0u>btuq>4Ke)2 zax7K}@9aA+XN^*jv7KlRWIrFCU#NodC1bdEyvPavh(*Av#`=*SU-8^K>s1}B>uLX= z-iI1Ih5WDT-<%sVsqe&~1oK^4qigqxsWv(FflHheLY}Oj-8#|Aiuq5+NG7Ei6qRvp znEMf8khZc}Jq+1Hepty3@mwWC_;KprtV^LIR27cG{yT4a#nkhGsdk#ZgbpeQloVE0 ztUCyfN&2A075UCCmd{3Ho0ijcgy8-nqqw(j5fq=iPRd1}A_hBJYmfW9wiEai4!wXE z3o0qZ)}geh74JRPwNyXM8WF6wEOykj!KFgIE%V_zK*X~-(H2vADw zn)u%htn*N(N!`0eJ@n!qQ(gkPVYID@zy-W1bW@kIeUIo;?=so%>uIt<>gorf9SeW> zy1R&4Hs>!}Lm&k1nJ2S@CT>vWt0}(K0~T_U{XsJ&eMMjbcRpmZlqRX|%1*y!Wz!eX zsDQqSS{&oPs9`?-@Qa%v%@N;LfjD_o{*rLSg}rcTl!2-O)%~&l`>sdH%3%8t>%~qe zF0@nhzsKy=E5Fy-d{cJlC~&1H-gUiHsXj@sHO68l+@Io7-2+`V9KK8&-*-b)_8;dJ zepl79w6O`jSPqehTbiGB$ z&ed7Z{t;pHe>bbd){0?q(C=|_f*-i}h1O+oT=$ese(uU#*q$V`!F@aD1?mt~%ukI^ zTH*d<=|zR|zWzGU=c8*V4K>Q+rf?PbSaklOLSVyUVxzY8w(eHp!xOPfS+yYO_lKJe z@Nec$&Uk(Q7rVflc+QDDVx`@Dd0iE{$Xyb_q4|b|i0xIRY~6xu-uH&iM-oq!n|o~u ze($@0LIh4dv_q(BV?Q&Uj|iIIE92Qee*VodA_21S`zFznv|<^4RO1-HEib{fQox_1 znU&IXAggCcgt}uF?lOf&nH;Yxjui|P=8^2d1&F~LhI#% z>W^H&{~KptY6?yx6qa;D$Wgj%p^bT^9qLsBkH=agvqz7K+-Ij@Ugb;X-x0lDZS5wD z`6J^U=UM&}0EoF1N?euHDmhE(@D=%L2wz45m9ChXDJ)%@LvM0GCLxnz@=iUEmEew} zB%RQMD2g6}{+~-`^0c$|^P3o%crF)CK+8S{7J@%5kE?Xd1-)VN){2KQgO9?~xL|lK zAsGS0fbQ8DyAR^4$n-jEWQj4{#PtdSnn!;nTCaXX<}c)6WQg0GuBhBZ)5{m?MOXG3 zOQh4DXE$hi7OUbH%X_XCg=KZPb*9T~_J)w181E> z5!X$~KWhP%L$XZsHZX`!%|B^=HX@NxAPJBZC6A2yY$6dAc2^HbM{>n+W2J%EN2M{! zW!uf?L%iSjRilbzqb3mxf#Q>FT(R_gcZ|f zbf?bc-qgq;sEocRRswHXVS|~&3#3X4cNeqa3eWZrZ-3H;(6!m zlIyc;VJe*ZReSg?*!TVHU5@FlrzzQS*fREtG2r#%wjF0E6F>@Vf9t4_+TS~}dtUmF zQk|W-0)`V(7Vm6-tqNx2suzn$3FZ!nD8=V%4MGzoX=!ZnpavIh87n8|V;=JX`o|sJ zRA}#XTu?jxuxAaJq((*IqkBVp)RxP^7T$b^)??S$XW}c)ryD|z9tu;zvbmyi?rk8Uk~{?x!iaS zF;WtUy6pMvbTRI^MsBn3WtbS^zY@|x%mo1RuBaqK|<*VLEH^4g&QQ5<*n9Q%XnY~?8qzp9o? zk^~VghdjcQ{>t+qhYfWl+#CcZ6sr{vZShUy_1 zkE{Wv`%=>>Gz14grn0!OE$U@|`}QslHc;tuS^ZL1=nZ)`dZ9Lj104~zDM#;305{;{ z@4C1Wz`}s!r)og^GH*jqOUti=!*nKvPY#$`gQD;MF36_}mOpQ`Vt(eBoptdCVLvIO zfIc0(D-`7f9>#f(;3yt5idOIZ%|brcp2U-35aQ}?yGr~^UwFL-d( ziU&^5*w2*WhSMU9Czs!2UCH|4S752bi3_x3OX+O2|G<2TgmA6hJPQgexEnAktl|MdvmR49x?qcx1GEF)~Y99kLusd_gsD$Lzw zXmj>OJ(ubFYXxC;i1->wLBS#(7>{Dvesjd(-^`Y;t~TaS*TKQi)qq0d!=l0E2!SHI z3bYi!4I22QRi4OTjIzA%Qqlc_@0ZQd+>+2nL{?GrD3a1osybi(BjQ%_rzC#ON0_=T z>TtvZa3029TI}v&WULXUNS2h;E|rVWB-to)&)N?MfyEJ#Ro9Fn7Ylm4Y&x;r1tr`)NMT9?V&MdE?}D@1OzIxgkezj_Xg6nRc5h1EI% z=KFW&s3h!kVKz{7$}4s_soKMf!4&7RQsa+N=I(M+3=tb{2|N+|ts)QQKP?0w?HrV| zZanvy4}QH{^2C6ftG`FnGti^Qf~jyG&|zM9wx$|9%GyP+WSAbDXrfD1rVmmEubR(u zD!94)>lqc*q(gM}yry$VOCc-YjU+F#03ph;0xU&mOg{?Mlbm%au;4PdOR~4luS$aH zQ25Yy0~cYu1B&<;mJ2dv7VWxRY0(L@SgvHc+D< zI(lk2hEgUG3D+}E2TB~XID@F>Rj4CRjvRafBV!1QS3u2GW#NL;pM^u@|2}(v8h80N zVWSHxJU4NqDb-L>g^p5L{|N4|YdmYWQAOf28&8mOVBSjMpYAe$A`!>a6@OXH=OR3m%jsf&QY7TkC_ZCJ^t_{!Q8H3=)E1vrSHBZ@D;r!jykr7 zrRF>c5Mu3CQt|RGTC1A~t@7Orb@;pKyE(blx7Zm?F&+721o%_RHz{ivxQqG5=4|t_ zmyGN!k3wyn$Le7Y-6Ju1htE+%(Sb6f=S^&%s zD`h}#W4(Fzej)2qJ+L4VXxKD)0Ibp1#TMVO$wS*1Ja7hndB*lnCiE(L^i5wI`#WP} zI{D87Y_H>oV5or=pqbW+{galZjHI8A2{ZIHn4sGY8A<~V)(J!sINGiK2G`)$Io+o6`EzH6PMma7KeI3g1 zhrjwgTxXX->2a1hPg;_en|;@u-Q?S;wCxHy5NSdnLtjpr-N@4T5NGN#%A9k~P%GFl zEYDZNtFTThno-4g8BB_0cFe`F4^xw4Z8L)YKWsfKigEm}}6^Vyi0viGKKaT*XKq(Wloae2qQ@+|E+y4 z5{7@@OiwP@o*tWNp*{vfVcS$v#c3gu->IPlNmunwIzNAvcE9XGDHQ#rKUj{$3ndR_ zNMdo>NtyT5{l=7}|0yp70HRLD*I#g#_JoQfmfE6)_aW%o$8>ZHEkjjA7DV4`(SuWkC&<$(EuR)B+N zV<}j|hLq%dnG|98vmsJ1Ct8Bu(jTZShm>^AZF3E+50*oF1jbwIJ6Bf^bS@1})z&I8 z@7f$tOw^+#TVXoZ?)sAV{JJ1*5Z2}!j~rewDZz-DnfA12&8MG+j%*x*`Dz&R`IUyi zxyJ#Dfc1wFu;xy{lf#%$9e2IT3(a7buHc8)BGZviiRU!O_tZUNOgy|&mQONGSZM#9 z@~du~v}t-25jRzI<|wgDLaYN@b;NY(Iu_o6DauxNfRpBkI)B0Q=IPaDw-TX~ems;e z`15i>rA5!IwL}Eg=qsh|GMdar3EC1Ell2A-L_wd*4s_&Jk3!;ZxLhqV8S+zRqyct> ztI5u*)1Lc)dp)9=u&MWtGVwXo2)il~u@wbAzS(zm?|#Ui)F95`>#$i|sl|SZlqj{y zft#3irTaeX-^SNw*`bBLw7SWEAr{-j?KThPL%jkE$bxSbz=yag)c3x_VY>FwY0i`E z8&!c{9(axyNN_%7q&XhcGRsmS9F#i=0TSKy>^?P)k-OPADf@Y6mXO@v`von`#x_Zx z5kygVv+9uiU6N`66pVg;PCGuXt?GP)e#;AWbh#Z)(b&co&AFiw2C?*vPq=LLE9c&x z+$}!8@3t{X5v#di0)Ib{o0xrkb($gskT|G&>s8KvBb4y+}?1ht7}tI z^d&c3Wy#^Sp!;R&@O|MMA0XZ$@16EV;0VI0%f*>HznFowiF(hf_j;ET!o>`JaY||k zn7}7v0~LI!neWxAl=VwQJ=7ne&6%WY0+@SYgtM#)9Mq(iJNLdID(mug>Avr+=!*ZN zu=)Q6T?3Xm-Y79gzdds861QYW%rFhYq`k#to!?^GQq&0k3vEO3P~cPHx+)0Pa6Z#1 zX<{ZIFMruA{5MpicwQcy={<>+(-IzPFj~~9%GPq)vLBwrRqNW- zZ(P6mb_$;M_++B~i-v^b1l=MhxTBK6GP&w$Zrhz&OXc*gVKJGW7}KKasR!l=cF9|& zc)?8vt@avW_bmTpU4PqT@Tk#PU>Gf{PxGz(!A@^y!PyRwju{-*i{$Xp>TP_e@5p3R zjBCUo!&9zZ1E$6NiY$1i$n9V+4yuv+k2&uX1f8VhM(80Q?gyE_pdJMeyf!clgV0k zn6m~^xhiPkjWmjR@kAXdFyjQqfCdHD>ZTC}>dC_vL_ZnOU{FQh-b?iK3Ndll7iQlx zk|fZkPw#+hT;l~X#ZPtJPg)6sr@fC_`hj2LMD7AyRVdc&^L&dA^_Y-Q&p6IIk6AmI zh6V1x%j%$?kgt6-a@KK$ke14~`G1>(y6?EfbH_q@4ehz6N>lT#_kCg*muL$;L^~0o z>Wi6;RzxFO&o(m?C(%aF55brI0a7_~P#%<+X_$WMOf_uRd^GQq-9+;2BO;CE#XHj$ zn)wU1t>#RUqbI;OKWf_t%M)vwH_Ogz;3VqMQ2+04H}=Dz=>M zi%n%$frtK7k^btCKim5!0VpW+ADhS$n~SM!Pk|+U!XaO#J}jC4k=g&7{*=qEhR{xA z!D)IyY6Y+x2<}-#OMP;6!=&SMp$K(E!=ygpX>I0XN-E_iRutCZS-{VU;pyV^8T<9G8fG- z@>=tMV*VjgO;oCdMuY}}8y(D1@@CI`_@i11%yIpPR{1Eg=cea_@1g6%BureXGnf-L zA~M#9y5rlO5d&u;7)RJ0L~@zxXudRx`?BeNSrL)_P*UY&B<>@@LS>lRg+3Pf z%#{7cg{Q{gD5E;f5p*W}MQm~%W~B?KOE+oJWJN7z;x!;6dve)qnY5{$!qX3fP?2cF z-8GEp54reXVZ7<$#}&1HTiU_a+z5(#hlsbXur}>EObh(;#b3SRc0x&{U&6~R2HIdK zVD&Ett|E<|y-*9jV_~)N_vr8!pO4UgN5cLv%}2s$dsUevH{y5iX@$wH#~vvWSO)*0 z-}9oa(V!ygFyNZt6-HKDlGsarU?*Al?}u!r>E1=nv({{ID73#Q)WH>Rp>xD@6!Atr z;;Zs|5W=#@ta#JskTzxayZy!xiXT-G%}r~0MR^Y&VV>37+bSMrG;3aH${AgP^qwl= zjLL-+7V1H%oRMB-kY0iUo@4C75y#gV^Pai2eqp0Ak!12) zH#&@8rkqwHBIq1`WCu^8zq`1}~o%&6_&O z$5WzGTrHBZ+N1?X=;l=jVF9+Ta%mx1|v1EJNs&#okt_6Y?H2QaX4^jY1U2WH#GrB69IQ*19@WhNiJGl zlz*pQO`~e+GREquR>{jBTu({K1$$jJ63M_TI>(hDn3H+4^sp_}=kzr5gUl`f-1Bf2 z+)R()tXmL~Agsei1u*x(o}hD{zNh)&Bt3Nby;+eD9rLK=7Nk7%+w!an^`3ml&1I-a zH!*qyHq|>=xstiC@d8#ayQST~tyw<~jVT(7tzb&xs5X6q;;_Z%P6sAMpBSl#a6_lz ztDZQLTPe{Y2f-TTjF<`9q_2_aY>PlXfdD7`hGlBH`kKg zFLBk3fG{yluAA<)5VDFfJiS^Wrf-zDG8pH|mlA&>PN0}v*ahnD+rPoHQE>SOC zXnOBH_~0Q7?x0-oUHu~2eOOb0Lzd;W9$VIAJ`I-f@N0yqN|>Cu#X^2^ZHzd`mwZe1 zT+O_lY2feZ>Jhi=_`$BWcK1ONX7LsjrQ~6&*;wc==xdm6FEq{7))D?w+{5F86mjxO zf+!-^ZxKmADQko zqM43bXC;hex7+VdM8u9)!gxzgDoO1~NlRe90@Pt!JdLqV26#&*_q7UF!9V)lObj-f z%3RpKk4Uiy5UQ>ntod7=UsB(MEs#f@N?`3%C)-JwW~Z(XwlUlEC^`zjoy)4u^{jUg zXHgTMUV{ziD8t_ueiimhe}ii$&*xDaB2F#;+zaz234NQ+~44ytn$N)M=n z-!BpG%&Q%R{JBQcX)of$7Ls}29dAn=Y{3>qFwME`-FQFU>n(lt-|C+|<4Nqvi3C@m ztX(qkPKtI8;<2iweN(SLmQpB0H~1d`FA~#x^w<@$EvvZ3vxXPo?^B{y?I%4T)OW|V z=e&v3tW9>|sT{_@p*Hw6(>VIl5sX0b;wq_!7V8=KgX`N148>}|k2OiduE}ky2%HST z{k_yW!XYXUwjnoH)CI_DJAfPBm(Z_W|2L*aYuOJnkL?bC)W@Sx(#f{7zm@*(CD(6Q zbXm#zM!X1}jM61-P+=iPahLlbZx0|#iQRBK5n~Ckp6j)GzRZwY&)Od0ji4KeTG7!s z{PBUj@>g>CQaQZ_4TgH{z*0*lSMW5HiryC;O55&hg2c_8F;F)o~vtGuj@4Jn7^e$3wQynES6M{Rkr?B7Ot=>IPt>}GjKZm*Wc^S`ZN9{D;xT`B+nO&v!f+v zuZxYYr$1stqw&D6jXEWOeP!v;?{^9xr)Rio9*D4w6>u9{WiTx$&MEokG$O5%3Me+L z5+_NF_(d}-(`0@gh`|?S6sjLl%(t8mP~swo-8t`oelyj{O-mem**ZKei)VxL^Tpex ze>Q0FS7s@>Zv%;Bw?3IVsMc-qWQtkq$ZB+gy zpoHEt)hNgj3T*$YrMU42Nu;obi0*8xdh@BoKWHhIOk6yla0mFiD<7s zaFt7&z-vofzasL%mZYpVM9GajDKdJ#J!?igRq=&Y?n@nuK&pckfyDS_IhDw>EnLv= z96&ffN4VdNiB5a&T#SKUp#2XLNnQ;pkE*1F2cp^u1eaePLLI;CtuUXi!1Z*);ypr= z6N~F&1z526O$ytxB8#ccgy1v~=DPn%z~QgQpOX^8opN-n&fErx_53*4VS>K|{llO+ zWZo~rdp5xJ^>F=UdGpFr*Cl_Mmy-O}+ToMNiso|ltH^_7M40LGz>a}sUbvLb%KQ^& zUaLUVLfA09dcVJSo^z+44OSrGQXT30ugxL6ecwiY)AdSCvEWcm?=dU?v zV=9!~#~=7jNol8V)aG2X@+|NCS4s4{5(hSe$vH8BiiPZ?3Y}#o-*_sM&iVr{y&;hi z0oSxnrInQ1l_wLxpfVEIjDT4cvc3|9^}H+Q`M4?ox2mvjw~&#SMJZLq`%!p?q7dc8 z6=%F!Alo`xl;+$!BUUx;=pwY9!9Hk8tVI%3*O7@g_x95Ltlo`rvWTxkUy7?dfo^&| zoZ$QSUDsPBhpE`Uz03Oj&8!(kF{i8}$c?vZ(}!cwmMSg_%Zg^~6I%nvlCSlFt92E! zTH9BM8GpX#Z=Ww>C0+7yw~KqpC_YR&=yvdfNcRh~j!1RFSh<1<1o}-miYrkz4GgFi mLZkiyQ0;U0zhB8d>V+s6h!TIVOlR}wR~ZRK@k&wSp#KB*Y7r*@ literal 0 HcmV?d00001