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/README.md b/README.md index e0332b47..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)_ @@ -28,7 +29,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 +115,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 +331,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 +378,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 +499,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/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/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 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_dispatch_V8.c b/app/src/substrate/substrate_dispatch_V10.c similarity index 64% rename from app/src/substrate/substrate_dispatch_V8.c rename to app/src/substrate/substrate_dispatch_V10.c index a984d2a3..61a1aad2 100644 --- a/app/src/substrate/substrate_dispatch_V8.c +++ b/app/src/substrate/substrate_dispatch_V10.c @@ -14,419 +14,426 @@ * limitations under the License. ********************************************************************************/ -#include "substrate_dispatch_V8.h" +#include "substrate_dispatch_V10.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) +__Z_INLINE parser_error_t _readMethod_balances_transfer_V10( + parser_context_t* c, pd_balances_transfer_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) + 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_V8( - parser_context_t* c, pd_balances_force_transfer_V8_t* m) +__Z_INLINE parser_error_t _readMethod_balances_force_transfer_V10( + parser_context_t* c, pd_balances_force_transfer_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->source)) - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) + 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_V8( - parser_context_t* c, pd_balances_transfer_keep_alive_V8_t* m) +__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_V8(c, &m->dest)) + 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_V8( - parser_context_t* c, pd_balances_transfer_all_V8_t* m) +__Z_INLINE parser_error_t _readMethod_balances_transfer_all_V10( + parser_context_t* c, pd_balances_transfer_all_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->dest)) + 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_V8( - parser_context_t* c, pd_staking_bond_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_bond_V10( + parser_context_t* c, pd_staking_bond_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->controller)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(c, &m->controller)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) - CHECK_ERROR(_readRewardDestination_V8(c, &m->payee)) + CHECK_ERROR(_readRewardDestination_V10(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) +__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_V8( - parser_context_t* c, pd_staking_unbond_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_withdraw_unbonded_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_validate_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_validate_V10( + parser_context_t* c, pd_staking_validate_V10_t* m) { - CHECK_ERROR(_readValidatorPrefs_V8(c, &m->prefs)) + CHECK_ERROR(_readValidatorPrefs_V10(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) +__Z_INLINE parser_error_t _readMethod_staking_nominate_V10( + parser_context_t* c, pd_staking_nominate_V10_t* m) { - CHECK_ERROR(_readVecLookupasStaticLookupSource_V8(c, &m->targets)) + CHECK_ERROR(_readVecLookupasStaticLookupSource_V10(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) +__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_V8( - parser_context_t* c, pd_staking_set_payee_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_payee_V10( + parser_context_t* c, pd_staking_set_payee_V10_t* m) { - CHECK_ERROR(_readRewardDestination_V8(c, &m->payee)) + CHECK_ERROR(_readRewardDestination_V10(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) +__Z_INLINE parser_error_t _readMethod_staking_set_controller_V10( + parser_context_t* c, pd_staking_set_controller_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->controller)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_V10( + parser_context_t* c, pd_staking_payout_stakers_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->validator_stash)) - CHECK_ERROR(_readEraIndex_V8(c, &m->era)) + 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_V8( - parser_context_t* c, pd_staking_rebond_V8_t* m) +__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_V8( - parser_context_t* c, pd_session_set_keys_V8_t* m) +__Z_INLINE parser_error_t _readMethod_session_set_keys_V10( + parser_context_t* c, pd_session_set_keys_V10_t* m) { - CHECK_ERROR(_readKeys_V8(c, &m->keys)) + 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_V8( - parser_context_t* c, pd_session_purge_keys_V8_t* m) +__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_V8( - parser_context_t* c, pd_utility_batch_V8_t* m) +__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_V8( - parser_context_t* c, pd_utility_batch_all_V8_t* m) +__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_V8( - parser_context_t* c, pd_system_fill_block_V8_t* m) +__Z_INLINE parser_error_t _readMethod_system_fill_block_V10( + parser_context_t* c, pd_system_fill_block_V10_t* m) { - CHECK_ERROR(_readPerbill_V8(c, &m->ratio)) + CHECK_ERROR(_readPerbill_V10(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) +__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_V8( - parser_context_t* c, pd_system_set_heap_pages_V8_t* m) +__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_V8( - parser_context_t* c, pd_system_set_code_V8_t* m) +__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_V8( - parser_context_t* c, pd_system_set_code_without_checks_V8_t* m) +__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_V8( - parser_context_t* c, pd_system_remark_with_event_V8_t* m) +__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_V8( - parser_context_t* c, pd_timestamp_set_V8_t* m) +__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_V8( - parser_context_t* c, pd_indices_claim_V8_t* m) +__Z_INLINE parser_error_t _readMethod_indices_claim_V10( + parser_context_t* c, pd_indices_claim_V10_t* m) { - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) + CHECK_ERROR(_readAccountIndex_V10(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) +__Z_INLINE parser_error_t _readMethod_indices_transfer_V10( + parser_context_t* c, pd_indices_transfer_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) + 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_V8( - parser_context_t* c, pd_indices_free_V8_t* m) +__Z_INLINE parser_error_t _readMethod_indices_free_V10( + parser_context_t* c, pd_indices_free_V10_t* m) { - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) + CHECK_ERROR(_readAccountIndex_V10(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) +__Z_INLINE parser_error_t _readMethod_indices_force_transfer_V10( + parser_context_t* c, pd_indices_force_transfer_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) + 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_V8( - parser_context_t* c, pd_indices_freeze_V8_t* m) +__Z_INLINE parser_error_t _readMethod_indices_freeze_V10( + parser_context_t* c, pd_indices_freeze_V10_t* m) { - CHECK_ERROR(_readAccountIndex_V8(c, &m->index)) + CHECK_ERROR(_readAccountIndex_V10(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) +__Z_INLINE parser_error_t _readMethod_balances_set_balance_V10( + parser_context_t* c, pd_balances_set_balance_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_balances_force_unreserve_V8_t* m) +__Z_INLINE parser_error_t _readMethod_balances_force_unreserve_V10( + parser_context_t* c, pd_balances_force_unreserve_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_staking_set_validator_count_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_increase_validator_count_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_force_no_eras_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_force_new_era_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_force_unstake_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_unstake_V10( + parser_context_t* c, pd_staking_force_unstake_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->stash)) + 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_V8( - parser_context_t* c, pd_staking_force_new_era_always_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_set_history_depth_V8_t* m) +__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_V8( - parser_context_t* c, pd_staking_reap_stash_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_reap_stash_V10( + parser_context_t* c, pd_staking_reap_stash_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->stash)) + 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_V8( - parser_context_t* c, pd_staking_kick_V8_t* m) +__Z_INLINE parser_error_t _readMethod_staking_kick_V10( + parser_context_t* c, pd_staking_kick_V10_t* m) { - CHECK_ERROR(_readVecLookupasStaticLookupSource_V8(c, &m->who)) + CHECK_ERROR(_readVecLookupasStaticLookupSource_V10(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) +__Z_INLINE parser_error_t _readMethod_staking_chill_other_V10( + parser_context_t* c, pd_staking_chill_other_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->controller)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_democracy_second_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_emergency_cancel_V8_t* m) +__Z_INLINE parser_error_t _readMethod_democracy_emergency_cancel_V10( + parser_context_t* c, pd_democracy_emergency_cancel_V10_t* m) { - CHECK_ERROR(_readReferendumIndex_V8(c, &m->ref_index)) + CHECK_ERROR(_readReferendumIndex_V10(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) +__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_V8( - parser_context_t* c, pd_democracy_cancel_queued_V8_t* m) +__Z_INLINE parser_error_t _readMethod_democracy_cancel_queued_V10( + parser_context_t* c, pd_democracy_cancel_queued_V10_t* m) { - CHECK_ERROR(_readReferendumIndex_V8(c, &m->which)) + CHECK_ERROR(_readReferendumIndex_V10(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) +__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_V8( - parser_context_t* c, pd_democracy_clear_public_proposals_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_note_preimage_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_note_preimage_operational_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_note_imminent_preimage_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_note_imminent_preimage_operational_V8_t* m) +__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_V8( - parser_context_t* c, pd_democracy_remove_vote_V8_t* m) +__Z_INLINE parser_error_t _readMethod_democracy_remove_vote_V10( + parser_context_t* c, pd_democracy_remove_vote_V10_t* m) { - CHECK_ERROR(_readReferendumIndex_V8(c, &m->index)) + CHECK_ERROR(_readReferendumIndex_V10(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) +__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_V8( - parser_context_t* c, pd_council_vote_V8_t* m) +__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)) @@ -434,8 +441,8 @@ __Z_INLINE parser_error_t _readMethod_council_vote_V8( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_council_close_V8( - parser_context_t* c, pd_council_close_V8_t* m) +__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)) @@ -444,916 +451,1011 @@ __Z_INLINE parser_error_t _readMethod_council_close_V8( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_council_disapprove_proposal_V8( - parser_context_t* c, pd_council_disapprove_proposal_V8_t* m) +__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_V8( - parser_context_t* c, pd_technicalcommittee_disapprove_proposal_V8_t* m) +__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_V8( - parser_context_t* c, pd_phragmenelection_remove_voter_V8_t* m) +__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_V8( - parser_context_t* c, pd_phragmenelection_submit_candidacy_V8_t* m) +__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_V8( - parser_context_t* c, pd_phragmenelection_remove_member_V8_t* m) +__Z_INLINE parser_error_t _readMethod_phragmenelection_remove_member_V10( + parser_context_t* c, pd_phragmenelection_remove_member_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_phragmenelection_clean_defunct_voters_V8_t* m) +__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_V8( - parser_context_t* c, pd_technicalmembership_add_member_V8_t* m) +__Z_INLINE parser_error_t _readMethod_technicalmembership_add_member_V10( + parser_context_t* c, pd_technicalmembership_add_member_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->who)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_technicalmembership_remove_member_V10( + parser_context_t* c, pd_technicalmembership_remove_member_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->who)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_technicalmembership_swap_member_V10( + parser_context_t* c, pd_technicalmembership_swap_member_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->remove)) - CHECK_ERROR(_readAccountId_V8(c, &m->add)) + 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_V8( - parser_context_t* c, pd_technicalmembership_reset_members_V8_t* m) +__Z_INLINE parser_error_t _readMethod_technicalmembership_reset_members_V10( + parser_context_t* c, pd_technicalmembership_reset_members_V10_t* m) { - CHECK_ERROR(_readVecAccountId_V8(c, &m->members)) + CHECK_ERROR(_readVecAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_technicalmembership_change_key_V10( + parser_context_t* c, pd_technicalmembership_change_key_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->new_)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_technicalmembership_set_prime_V10( + parser_context_t* c, pd_technicalmembership_set_prime_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->who)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_treasury_propose_spend_V8_t* m) +__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_V8(c, &m->beneficiary)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__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_V8( - parser_context_t* c, pd_treasury_approve_proposal_V8_t* m) +__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_V8( - parser_context_t* c, pd_claims_claim_V8_t* m) +__Z_INLINE parser_error_t _readMethod_claims_claim_V10( + parser_context_t* c, pd_claims_claim_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->dest)) - CHECK_ERROR(_readEcdsaSignature_V8(c, &m->ethereum_signature)) + 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_V8( - parser_context_t* c, pd_claims_claim_attest_V8_t* m) +__Z_INLINE parser_error_t _readMethod_claims_claim_attest_V10( + parser_context_t* c, pd_claims_claim_attest_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->dest)) - CHECK_ERROR(_readEcdsaSignature_V8(c, &m->ethereum_signature)) + 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_V8( - parser_context_t* c, pd_claims_attest_V8_t* m) +__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_V8( - parser_context_t* c, pd_claims_move_claim_V8_t* m) +__Z_INLINE parser_error_t _readMethod_claims_move_claim_V10( + parser_context_t* c, pd_claims_move_claim_V10_t* m) { - CHECK_ERROR(_readEthereumAddress_V8(c, &m->old)) - CHECK_ERROR(_readEthereumAddress_V8(c, &m->new_)) - CHECK_ERROR(_readOptionAccountId_V8(c, &m->maybe_preclaim)) + 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_V8( - parser_context_t* c, pd_identity_add_registrar_V8_t* m) +__Z_INLINE parser_error_t _readMethod_identity_add_registrar_V10( + parser_context_t* c, pd_identity_add_registrar_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->account)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_identity_request_judgement_V8_t* m) +__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_V8( - parser_context_t* c, pd_identity_cancel_request_V8_t* m) +__Z_INLINE parser_error_t _readMethod_identity_cancel_request_V10( + parser_context_t* c, pd_identity_cancel_request_V10_t* m) { - CHECK_ERROR(_readRegistrarIndex_V8(c, &m->reg_index)) + CHECK_ERROR(_readRegistrarIndex_V10(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) +__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_V8( - parser_context_t* c, pd_identity_set_account_id_V8_t* m) +__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_V8(c, &m->new_)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_identity_kill_identity_V10( + parser_context_t* c, pd_identity_kill_identity_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->target)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__Z_INLINE parser_error_t _readMethod_identity_remove_sub_V10( + parser_context_t* c, pd_identity_remove_sub_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->sub)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__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_V8( - parser_context_t* c, pd_society_bid_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_unbid_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_vouch_V8_t* m) +__Z_INLINE parser_error_t _readMethod_society_vouch_V10( + parser_context_t* c, pd_society_vouch_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_society_unvouch_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_vote_V8_t* m) +__Z_INLINE parser_error_t _readMethod_society_vote_V10( + parser_context_t* c, pd_society_vote_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->candidate)) + 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_V8( - parser_context_t* c, pd_society_defender_vote_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_payout_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_found_V8_t* m) +__Z_INLINE parser_error_t _readMethod_society_found_V10( + parser_context_t* c, pd_society_found_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->founder)) + 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_V8( - parser_context_t* c, pd_society_unfound_V8_t* m) +__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_V8( - parser_context_t* c, pd_society_judge_suspended_member_V8_t* m) +__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_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_society_set_max_members_V8_t* m) +__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_V8( - parser_context_t* c, pd_recovery_set_recovered_V8_t* m) +__Z_INLINE parser_error_t _readMethod_recovery_set_recovered_V10( + parser_context_t* c, pd_recovery_set_recovered_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->lost)) - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) + 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_V8( - parser_context_t* c, pd_recovery_initiate_recovery_V8_t* m) +__Z_INLINE parser_error_t _readMethod_recovery_initiate_recovery_V10( + parser_context_t* c, pd_recovery_initiate_recovery_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->account)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_recovery_vouch_recovery_V10( + parser_context_t* c, pd_recovery_vouch_recovery_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->lost)) - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) + 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_V8( - parser_context_t* c, pd_recovery_claim_recovery_V8_t* m) +__Z_INLINE parser_error_t _readMethod_recovery_claim_recovery_V10( + parser_context_t* c, pd_recovery_claim_recovery_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->account)) + CHECK_ERROR(_readAccountId_V10(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) +__Z_INLINE parser_error_t _readMethod_recovery_close_recovery_V10( + parser_context_t* c, pd_recovery_close_recovery_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->rescuer)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_recovery_cancel_recovered_V8_t* m) +__Z_INLINE parser_error_t _readMethod_recovery_cancel_recovered_V10( + parser_context_t* c, pd_recovery_cancel_recovered_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->account)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_vesting_vest_other_V8_t* m) +__Z_INLINE parser_error_t _readMethod_vesting_vest_other_V10( + parser_context_t* c, pd_vesting_vest_other_V10_t* m) { - CHECK_ERROR(_readLookupasStaticLookupSource_V8(c, &m->target)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__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_V8( - parser_context_t* c, pd_proxy_proxy_V8_t* m) +__Z_INLINE parser_error_t _readMethod_proxy_proxy_V10( + parser_context_t* c, pd_proxy_proxy_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->real)) - CHECK_ERROR(_readOptionProxyType_V8(c, &m->force_proxy_type)) + 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_V8( - parser_context_t* c, pd_proxy_add_proxy_V8_t* m) +__Z_INLINE parser_error_t _readMethod_proxy_add_proxy_V10( + parser_context_t* c, pd_proxy_add_proxy_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) + 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_V8( - parser_context_t* c, pd_proxy_remove_proxy_V8_t* m) +__Z_INLINE parser_error_t _readMethod_proxy_remove_proxy_V10( + parser_context_t* c, pd_proxy_remove_proxy_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) + 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_V8( - parser_context_t* c, pd_proxy_remove_proxies_V8_t* m) +__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_V8( - parser_context_t* c, pd_proxy_anonymous_V8_t* m) +__Z_INLINE parser_error_t _readMethod_proxy_anonymous_V10( + parser_context_t* c, pd_proxy_anonymous_V10_t* m) { - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) + 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_V8( - parser_context_t* c, pd_proxy_kill_anonymous_V8_t* m) +__Z_INLINE parser_error_t _readMethod_proxy_kill_anonymous_V10( + parser_context_t* c, pd_proxy_kill_anonymous_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->spawner)) - CHECK_ERROR(_readProxyType_V8(c, &m->proxy_type)) + 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_V8( - parser_context_t* c, pd_proxy_proxy_announced_V8_t* m) +__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(_readAccountId_V8(c, &m->delegate)) - CHECK_ERROR(_readAccountId_V8(c, &m->real)) - CHECK_ERROR(_readOptionProxyType_V8(c, &m->force_proxy_type)) + 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_V8( - parser_context_t* c, pd_multisig_as_multi_V8_t* m) +__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_V8(c, &m->other_signatories)) - CHECK_ERROR(_readOptionTimepoint_V8(c, &m->maybe_timepoint)) - CHECK_ERROR(_readOpaqueCall_V8(c, &m->call)) + 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_V8(c, &m->max_weight)) + CHECK_ERROR(_readWeight_V10(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) +__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_V8(c, &m->other_signatories)) - CHECK_ERROR(_readOptionTimepoint_V8(c, &m->maybe_timepoint)) + 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_V8(c, &m->max_weight)) + CHECK_ERROR(_readWeight_V10(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) +__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_V8(c, &m->other_signatories)) - CHECK_ERROR(_readTimepoint_V8(c, &m->timepoint)) + 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_bounties_propose_bounty_V8( - parser_context_t* c, pd_bounties_propose_bounty_V8_t* m) +__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_V8( - parser_context_t* c, pd_bounties_approve_bounty_V8_t* m) +__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_V8( - parser_context_t* c, pd_bounties_propose_curator_V8_t* m) +__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_V8(c, &m->curator)) + 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_V8( - parser_context_t* c, pd_bounties_unassign_curator_V8_t* m) +__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_V8( - parser_context_t* c, pd_bounties_accept_curator_V8_t* m) +__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_V8( - parser_context_t* c, pd_bounties_award_bounty_V8_t* m) +__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_V8(c, &m->beneficiary)) + CHECK_ERROR(_readLookupasStaticLookupSource_V10(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) +__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_V8( - parser_context_t* c, pd_bounties_close_bounty_V8_t* m) +__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_V8( - parser_context_t* c, pd_bounties_extend_bounty_expiry_V8_t* m) +__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_V8( - parser_context_t* c, pd_tips_report_awesome_V8_t* m) +__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_V8(c, &m->who)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_tips_tip_new_V8_t* m) +__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_V8(c, &m->who)) + 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_V8( - parser_context_t* c, pd_tips_tip_V8_t* m) +__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_V8( - parser_context_t* c, pd_tips_close_tip_V8_t* m) +__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_V8( - parser_context_t* c, pd_tips_slash_tip_V8_t* m) +__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_gilt_place_bid_V8( - parser_context_t* c, pd_gilt_place_bid_V8_t* m) +__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_V8( - parser_context_t* c, pd_gilt_retract_bid_V8_t* m) +__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_V8( - parser_context_t* c, pd_bagslist_rebag_V8_t* m) +__Z_INLINE parser_error_t _readMethod_bagslist_rebag_V10( + parser_context_t* c, pd_bagslist_rebag_V10_t* m) { - CHECK_ERROR(_readAccountId_V8(c, &m->dislocated)) + CHECK_ERROR(_readAccountId_V10(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) +__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_V8( - parser_context_t* c, pd_configuration_set_validation_upgrade_delay_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_code_retention_period_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_code_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_pov_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_head_data_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_parathread_cores_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_parathread_retries_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_group_rotation_frequency_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_chain_availability_period_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_thread_availability_period_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_scheduling_lookahead_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_validators_per_core_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_validators_V8_t* m) +__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_post_conclusion_acceptance_period_V8( - parser_context_t* c, pd_configuration_set_dispute_post_conclusion_acceptance_period_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_dispute_max_spam_slots_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_dispute_conclusion_by_time_out_period_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_no_show_slots_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_n_delay_tranches_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_zeroth_delay_tranche_width_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_needed_approvals_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_relay_vrf_modulo_samples_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_upward_queue_count_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_upward_queue_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_max_downward_message_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_ump_service_total_weight_V8_t* m) +__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_V8(c, &m->new_)) + CHECK_ERROR(_readWeight_V10(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) +__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_V8( - parser_context_t* c, pd_configuration_set_max_upward_message_num_per_candidate_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_open_request_ttl_V8_t* m) +__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_recipient_deposit_V8( - parser_context_t* c, pd_configuration_set_hrmp_recipient_deposit_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_capacity_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_total_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parachain_inbound_channels_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parathread_inbound_channels_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_channel_max_message_size_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parachain_outbound_channels_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_parathread_outbound_channels_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_hrmp_max_message_num_per_candidate_V8_t* m) +__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_V8( - parser_context_t* c, pd_configuration_set_ump_max_individual_weight_V8_t* m) +__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_V8(c, &m->new_)) + CHECK_ERROR(_readWeight_V10(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) +__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_V8( - parser_context_t* c, pd_hrmp_force_process_hrmp_open_V8_t* m) +__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_V8( - parser_context_t* c, pd_hrmp_force_process_hrmp_close_V8_t* m) +__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_V8( - parser_context_t* c, pd_parasdisputes_force_unfreeze_V8_t* m) +__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_V8( - parser_context_t* c, pd_registrar_reserve_V8_t* m) +__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_V8( - parser_context_t* c, pd_auctions_new_auction_V8_t* m) +__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_V8( - parser_context_t* c, pd_auctions_bid_V8_t* m) +__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)) @@ -1363,574 +1465,616 @@ __Z_INLINE parser_error_t _readMethod_auctions_bid_V8( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_auctions_cancel_auction_V8( - parser_context_t* c, pd_auctions_cancel_auction_V8_t* m) +__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_V8( +parser_error_t _readMethod_V10( parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, - pd_Method_V8_t* method) + 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_V8(c, &method->nested.balances_transfer_V8)) + 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_V8(c, &method->nested.balances_force_transfer_V8)) + 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_V8(c, &method->nested.balances_transfer_keep_alive_V8)) + 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_V8(c, &method->basic.balances_transfer_all_V8)) + 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_V8(c, &method->basic.staking_bond_V8)) + 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_V8(c, &method->basic.staking_bond_extra_V8)) + 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_V8(c, &method->basic.staking_unbond_V8)) + 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_V8(c, &method->basic.staking_withdraw_unbonded_V8)) + 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_V8(c, &method->basic.staking_validate_V8)) + CHECK_ERROR(_readMethod_staking_validate_V10(c, &method->basic.staking_validate_V10)) break; case 1541: /* module 6 call 5 */ - CHECK_ERROR(_readMethod_staking_nominate_V8(c, &method->basic.staking_nominate_V8)) + CHECK_ERROR(_readMethod_staking_nominate_V10(c, &method->basic.staking_nominate_V10)) break; case 1542: /* module 6 call 6 */ - CHECK_ERROR(_readMethod_staking_chill_V8(c, &method->basic.staking_chill_V8)) + 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_V8(c, &method->basic.staking_set_payee_V8)) + 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_V8(c, &method->basic.staking_set_controller_V8)) + 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_V8(c, &method->basic.staking_payout_stakers_V8)) + 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_V8(c, &method->basic.staking_rebond_V8)) + 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_V8(c, &method->basic.session_set_keys_V8)) + 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_V8(c, &method->basic.session_purge_keys_V8)) + 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_V8(c, &method->basic.utility_batch_V8)) + 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_V8(c, &method->basic.utility_batch_all_V8)) + 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_V8(c, &method->nested.system_fill_block_V8)) + 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_V8(c, &method->nested.system_remark_V8)) + 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_V8(c, &method->nested.system_set_heap_pages_V8)) + 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_V8(c, &method->nested.system_set_code_V8)) + 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_V8(c, &method->nested.system_set_code_without_checks_V8)) + 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_V8(c, &method->nested.system_remark_with_event_V8)) + 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_V8(c, &method->basic.timestamp_set_V8)) + CHECK_ERROR(_readMethod_timestamp_set_V10(c, &method->basic.timestamp_set_V10)) break; case 768: /* module 3 call 0 */ - CHECK_ERROR(_readMethod_indices_claim_V8(c, &method->basic.indices_claim_V8)) + CHECK_ERROR(_readMethod_indices_claim_V10(c, &method->basic.indices_claim_V10)) break; case 769: /* module 3 call 1 */ - CHECK_ERROR(_readMethod_indices_transfer_V8(c, &method->basic.indices_transfer_V8)) + CHECK_ERROR(_readMethod_indices_transfer_V10(c, &method->basic.indices_transfer_V10)) break; case 770: /* module 3 call 2 */ - CHECK_ERROR(_readMethod_indices_free_V8(c, &method->basic.indices_free_V8)) + 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_V8(c, &method->basic.indices_force_transfer_V8)) + 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_V8(c, &method->basic.indices_freeze_V8)) + 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_V8(c, &method->nested.balances_set_balance_V8)) + 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_V8(c, &method->basic.balances_force_unreserve_V8)) + 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_V8(c, &method->basic.staking_set_validator_count_V8)) + 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_V8(c, &method->basic.staking_increase_validator_count_V8)) + 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_V8(c, &method->basic.staking_force_no_eras_V8)) + 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_V8(c, &method->basic.staking_force_new_era_V8)) + 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_V8(c, &method->basic.staking_force_unstake_V8)) + 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_V8(c, &method->basic.staking_force_new_era_always_V8)) + 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_V8(c, &method->basic.staking_set_history_depth_V8)) + 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_V8(c, &method->basic.staking_reap_stash_V8)) + 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_V8(c, &method->basic.staking_kick_V8)) + 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_V8(c, &method->basic.staking_chill_other_V8)) + 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_V8(c, &method->basic.grandpa_note_stalled_V8)) + 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_V8(c, &method->basic.democracy_second_V8)) + 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_V8(c, &method->basic.democracy_emergency_cancel_V8)) + 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_V8(c, &method->basic.democracy_cancel_referendum_V8)) + 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_V8(c, &method->basic.democracy_cancel_queued_V8)) + 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_V8(c, &method->basic.democracy_undelegate_V8)) + 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_V8(c, &method->basic.democracy_clear_public_proposals_V8)) + 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_V8(c, &method->basic.democracy_note_preimage_V8)) + 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_V8(c, &method->basic.democracy_note_preimage_operational_V8)) + 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_V8(c, &method->basic.democracy_note_imminent_preimage_V8)) + 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_V8(c, &method->basic.democracy_note_imminent_preimage_operational_V8)) + 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_V8(c, &method->basic.democracy_remove_vote_V8)) + 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_V8(c, &method->basic.democracy_cancel_proposal_V8)) + 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_V8(c, &method->basic.council_vote_V8)) + CHECK_ERROR(_readMethod_council_vote_V10(c, &method->basic.council_vote_V10)) break; case 3588: /* module 14 call 4 */ - CHECK_ERROR(_readMethod_council_close_V8(c, &method->basic.council_close_V8)) + 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_V8(c, &method->basic.council_disapprove_proposal_V8)) + 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_V8(c, &method->basic.technicalcommittee_disapprove_proposal_V8)) + 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_V8(c, &method->basic.phragmenelection_remove_voter_V8)) + 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_V8(c, &method->basic.phragmenelection_submit_candidacy_V8)) + 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_V8(c, &method->basic.phragmenelection_remove_member_V8)) + 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_V8(c, &method->basic.phragmenelection_clean_defunct_voters_V8)) + 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_V8(c, &method->basic.technicalmembership_add_member_V8)) + 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_V8(c, &method->basic.technicalmembership_remove_member_V8)) + 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_V8(c, &method->basic.technicalmembership_swap_member_V8)) + 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_V8(c, &method->basic.technicalmembership_reset_members_V8)) + 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_V8(c, &method->basic.technicalmembership_change_key_V8)) + 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_V8(c, &method->basic.technicalmembership_set_prime_V8)) + 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_V8(c, &method->basic.technicalmembership_clear_prime_V8)) + 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_V8(c, &method->basic.treasury_propose_spend_V8)) + 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_V8(c, &method->basic.treasury_reject_proposal_V8)) + 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_V8(c, &method->basic.treasury_approve_proposal_V8)) + 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_V8(c, &method->basic.claims_claim_V8)) + 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_V8(c, &method->basic.claims_claim_attest_V8)) + 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_V8(c, &method->basic.claims_attest_V8)) + 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_V8(c, &method->basic.claims_move_claim_V8)) + 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_V8(c, &method->basic.identity_add_registrar_V8)) + 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_V8(c, &method->basic.identity_clear_identity_V8)) + 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_V8(c, &method->basic.identity_request_judgement_V8)) + 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_V8(c, &method->basic.identity_cancel_request_V8)) + 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_V8(c, &method->basic.identity_set_fee_V8)) + 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_V8(c, &method->basic.identity_set_account_id_V8)) + 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_V8(c, &method->basic.identity_kill_identity_V8)) + 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_V8(c, &method->basic.identity_remove_sub_V8)) + 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_V8(c, &method->basic.identity_quit_sub_V8)) + 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_V8(c, &method->basic.society_bid_V8)) + CHECK_ERROR(_readMethod_society_bid_V10(c, &method->basic.society_bid_V10)) break; case 6657: /* module 26 call 1 */ - CHECK_ERROR(_readMethod_society_unbid_V8(c, &method->basic.society_unbid_V8)) + CHECK_ERROR(_readMethod_society_unbid_V10(c, &method->basic.society_unbid_V10)) break; case 6658: /* module 26 call 2 */ - CHECK_ERROR(_readMethod_society_vouch_V8(c, &method->basic.society_vouch_V8)) + CHECK_ERROR(_readMethod_society_vouch_V10(c, &method->basic.society_vouch_V10)) break; case 6659: /* module 26 call 3 */ - CHECK_ERROR(_readMethod_society_unvouch_V8(c, &method->basic.society_unvouch_V8)) + CHECK_ERROR(_readMethod_society_unvouch_V10(c, &method->basic.society_unvouch_V10)) break; case 6660: /* module 26 call 4 */ - CHECK_ERROR(_readMethod_society_vote_V8(c, &method->basic.society_vote_V8)) + 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_V8(c, &method->basic.society_defender_vote_V8)) + 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_V8(c, &method->basic.society_payout_V8)) + CHECK_ERROR(_readMethod_society_payout_V10(c, &method->basic.society_payout_V10)) break; case 6663: /* module 26 call 7 */ - CHECK_ERROR(_readMethod_society_found_V8(c, &method->basic.society_found_V8)) + CHECK_ERROR(_readMethod_society_found_V10(c, &method->basic.society_found_V10)) break; case 6664: /* module 26 call 8 */ - CHECK_ERROR(_readMethod_society_unfound_V8(c, &method->basic.society_unfound_V8)) + 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_V8(c, &method->basic.society_judge_suspended_member_V8)) + 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_V8(c, &method->basic.society_set_max_members_V8)) + 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_V8(c, &method->basic.recovery_set_recovered_V8)) + 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_V8(c, &method->basic.recovery_initiate_recovery_V8)) + 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_V8(c, &method->basic.recovery_vouch_recovery_V8)) + 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_V8(c, &method->basic.recovery_claim_recovery_V8)) + 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_V8(c, &method->basic.recovery_close_recovery_V8)) + 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_V8(c, &method->basic.recovery_remove_recovery_V8)) + 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_V8(c, &method->basic.recovery_cancel_recovered_V8)) + 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_V8(c, &method->basic.vesting_vest_V8)) + 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_V8(c, &method->basic.vesting_vest_other_V8)) + 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_V8(c, &method->basic.vesting_merge_schedules_V8)) + 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_V8(c, &method->nested.proxy_proxy_V8)) + 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_V8(c, &method->basic.proxy_add_proxy_V8)) + 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_V8(c, &method->basic.proxy_remove_proxy_V8)) + 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_V8(c, &method->basic.proxy_remove_proxies_V8)) + 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_V8(c, &method->basic.proxy_anonymous_V8)) + 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_V8(c, &method->basic.proxy_kill_anonymous_V8)) + 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_V8(c, &method->basic.proxy_proxy_announced_V8)) + 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_V8(c, &method->nested.multisig_as_multi_V8)) + 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_V8(c, &method->nested.multisig_approve_as_multi_V8)) + 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_V8(c, &method->nested.multisig_cancel_as_multi_V8)) + 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_V8(c, &method->basic.bounties_propose_bounty_V8)) + 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_V8(c, &method->basic.bounties_approve_bounty_V8)) + 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_V8(c, &method->basic.bounties_propose_curator_V8)) + 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_V8(c, &method->basic.bounties_unassign_curator_V8)) + 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_V8(c, &method->basic.bounties_accept_curator_V8)) + 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_V8(c, &method->basic.bounties_award_bounty_V8)) + 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_V8(c, &method->basic.bounties_claim_bounty_V8)) + 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_V8(c, &method->basic.bounties_close_bounty_V8)) + 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_V8(c, &method->basic.bounties_extend_bounty_expiry_V8)) + 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_V8(c, &method->basic.tips_report_awesome_V8)) + 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_V8(c, &method->basic.tips_retract_tip_V8)) + 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_V8(c, &method->basic.tips_tip_new_V8)) + 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_V8(c, &method->basic.tips_tip_V8)) + 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_V8(c, &method->basic.tips_close_tip_V8)) + 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_V8(c, &method->basic.tips_slash_tip_V8)) + 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_V8(c, &method->basic.gilt_place_bid_V8)) + 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_V8(c, &method->basic.gilt_retract_bid_V8)) + 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_V8(c, &method->basic.bagslist_rebag_V8)) + 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_frequency_V8(c, &method->basic.configuration_set_validation_upgrade_frequency_V8)) + 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_V8(c, &method->basic.configuration_set_validation_upgrade_delay_V8)) + 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_V8(c, &method->basic.configuration_set_code_retention_period_V8)) + 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_V8(c, &method->basic.configuration_set_max_code_size_V8)) + 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_V8(c, &method->basic.configuration_set_max_pov_size_V8)) + 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_V8(c, &method->basic.configuration_set_max_head_data_size_V8)) + 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_V8(c, &method->basic.configuration_set_parathread_cores_V8)) + 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_V8(c, &method->basic.configuration_set_parathread_retries_V8)) + 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_V8(c, &method->basic.configuration_set_group_rotation_frequency_V8)) + 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_V8(c, &method->basic.configuration_set_chain_availability_period_V8)) + 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_V8(c, &method->basic.configuration_set_thread_availability_period_V8)) + 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_V8(c, &method->basic.configuration_set_scheduling_lookahead_V8)) + 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_V8(c, &method->basic.configuration_set_max_validators_per_core_V8)) + 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_V8(c, &method->basic.configuration_set_max_validators_V8)) + 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_V8(c, &method->basic.configuration_set_dispute_post_conclusion_acceptance_period_V8)) + 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_V8(c, &method->basic.configuration_set_dispute_max_spam_slots_V8)) + 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_V8(c, &method->basic.configuration_set_dispute_conclusion_by_time_out_period_V8)) + 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_V8(c, &method->basic.configuration_set_no_show_slots_V8)) + 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_V8(c, &method->basic.configuration_set_n_delay_tranches_V8)) + 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_V8(c, &method->basic.configuration_set_zeroth_delay_tranche_width_V8)) + 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_V8(c, &method->basic.configuration_set_needed_approvals_V8)) + 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_V8(c, &method->basic.configuration_set_relay_vrf_modulo_samples_V8)) + 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_V8(c, &method->basic.configuration_set_max_upward_queue_count_V8)) + 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_V8(c, &method->basic.configuration_set_max_upward_queue_size_V8)) + 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_V8(c, &method->basic.configuration_set_max_downward_message_size_V8)) + 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_V8(c, &method->basic.configuration_set_ump_service_total_weight_V8)) + 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_V8(c, &method->basic.configuration_set_max_upward_message_size_V8)) + 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_V8(c, &method->basic.configuration_set_max_upward_message_num_per_candidate_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_open_request_ttl_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_recipient_deposit_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_channel_max_capacity_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_channel_max_total_size_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_max_parachain_inbound_channels_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_max_parathread_inbound_channels_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_channel_max_message_size_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_max_parachain_outbound_channels_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_max_parathread_outbound_channels_V8)) + 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_V8(c, &method->basic.configuration_set_hrmp_max_message_num_per_candidate_V8)) + 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_V8(c, &method->basic.configuration_set_ump_max_individual_weight_V8)) + 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_V8(c, &method->basic.initializer_force_approve_V8)) + 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_V8(c, &method->basic.hrmp_force_process_hrmp_open_V8)) + 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_V8(c, &method->basic.hrmp_force_process_hrmp_close_V8)) + 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_V8(c, &method->basic.parasdisputes_force_unfreeze_V8)) + 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_V8(c, &method->basic.registrar_reserve_V8)) + 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_V8(c, &method->basic.auctions_new_auction_V8)) + 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_V8(c, &method->basic.auctions_bid_V8)) + 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_V8(c, &method->basic.auctions_cancel_auction_V8)) + CHECK_ERROR(_readMethod_auctions_cancel_auction_V10(c, &method->basic.auctions_cancel_auction_V10)) break; #endif default: @@ -1945,7 +2089,7 @@ parser_error_t _readMethod_V8( ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// -const char* _getMethod_ModuleName_V8(uint8_t moduleIdx) +const char* _getMethod_ModuleName_V10(uint8_t moduleIdx) { switch (moduleIdx) { case 4: @@ -1991,10 +2135,14 @@ const char* _getMethod_ModuleName_V8(uint8_t moduleIdx) 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: @@ -2019,7 +2167,7 @@ const char* _getMethod_ModuleName_V8(uint8_t moduleIdx) return NULL; } -const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) +const char* _getMethod_Name_V10(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -2130,9 +2278,11 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) case 1558: /* module 6 call 22 */ return STR_ME_KICK; case 1559: /* module 6 call 23 */ - return STR_ME_SET_STAKING_LIMITS; + 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 */ @@ -2383,6 +2533,14 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2421,6 +2579,8 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2431,8 +2591,10 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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_FREQUENCY; + 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 */ @@ -2513,6 +2675,14 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2525,6 +2695,12 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2585,6 +2761,8 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2613,7 +2791,7 @@ const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx) return NULL; } -uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) +uint8_t _getMethod_NumItems_V10(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -2705,6 +2883,8 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2849,12 +3029,22 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2885,12 +3075,16 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2919,6 +3113,8 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2949,6 +3145,8 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 */ @@ -2969,12 +3167,20 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) 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 0; + return 1; case 15365: /* module 60 call 5 */ - return 0; + return 1; case 15872: /* module 62 call 0 */ return 0; case 17925: /* module 70 call 5 */ @@ -2993,7 +3199,7 @@ uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx) return 0; } -const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) +const char* _getMethod_ItemName_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -3326,6 +3532,13 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -3894,6 +4107,15 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -3939,6 +4161,34 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4062,6 +4312,15 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4087,6 +4346,13 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4185,6 +4451,13 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4290,6 +4563,13 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4360,6 +4640,34 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i 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: @@ -4369,11 +4677,15 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i } 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; } @@ -4424,8 +4736,8 @@ const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t i return NULL; } -parser_error_t _getMethod_ItemValue_V8( - pd_Method_V8_t* m, +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) @@ -4435,14 +4747,14 @@ parser_error_t _getMethod_ItemValue_V8( 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, + case 0: /* balances_transfer_V10 - dest */; + return _toStringLookupasStaticLookupSource_V10( + &m->nested.balances_transfer_V10.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* balances_transfer_V8 - amount */; + case 1: /* balances_transfer_V10 - amount */; return _toStringCompactBalance( - &m->nested.balances_transfer_V8.amount, + &m->nested.balances_transfer_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4450,19 +4762,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - dest */; - return _toStringLookupasStaticLookupSource_V8( - &m->nested.balances_force_transfer_V8.dest, + 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_V8 - amount */; + case 2: /* balances_force_transfer_V10 - amount */; return _toStringCompactBalance( - &m->nested.balances_force_transfer_V8.amount, + &m->nested.balances_force_transfer_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4470,14 +4782,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - amount */; + case 1: /* balances_transfer_keep_alive_V10 - amount */; return _toStringCompactBalance( - &m->nested.balances_transfer_keep_alive_V8.amount, + &m->nested.balances_transfer_keep_alive_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4485,14 +4797,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - keep_alive */; + case 1: /* balances_transfer_all_V10 - keep_alive */; return _toStringbool( - &m->basic.balances_transfer_all_V8.keep_alive, + &m->basic.balances_transfer_all_V10.keep_alive, outValue, outValueLen, pageIdx, pageCount); default: @@ -4500,19 +4812,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 1536: /* module 6 call 0 */ switch (itemIdx) { - case 0: /* staking_bond_V8 - controller */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.staking_bond_V8.controller, + case 0: /* staking_bond_V10 - controller */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.staking_bond_V10.controller, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_bond_V8 - amount */; + case 1: /* staking_bond_V10 - amount */; return _toStringCompactBalance( - &m->basic.staking_bond_V8.amount, + &m->basic.staking_bond_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* staking_bond_V8 - payee */; - return _toStringRewardDestination_V8( - &m->basic.staking_bond_V8.payee, + case 2: /* staking_bond_V10 - payee */; + return _toStringRewardDestination_V10( + &m->basic.staking_bond_V10.payee, outValue, outValueLen, pageIdx, pageCount); default: @@ -4520,9 +4832,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1537: /* module 6 call 1 */ switch (itemIdx) { - case 0: /* staking_bond_extra_V8 - amount */; + case 0: /* staking_bond_extra_V10 - amount */; return _toStringCompactBalance( - &m->basic.staking_bond_extra_V8.amount, + &m->basic.staking_bond_extra_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4530,9 +4842,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1538: /* module 6 call 2 */ switch (itemIdx) { - case 0: /* staking_unbond_V8 - amount */; + case 0: /* staking_unbond_V10 - amount */; return _toStringCompactBalance( - &m->basic.staking_unbond_V8.amount, + &m->basic.staking_unbond_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4540,9 +4852,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1539: /* module 6 call 3 */ switch (itemIdx) { - case 0: /* staking_withdraw_unbonded_V8 - num_slashing_spans */; + case 0: /* staking_withdraw_unbonded_V10 - num_slashing_spans */; return _toStringu32( - &m->basic.staking_withdraw_unbonded_V8.num_slashing_spans, + &m->basic.staking_withdraw_unbonded_V10.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -4550,9 +4862,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1540: /* module 6 call 4 */ switch (itemIdx) { - case 0: /* staking_validate_V8 - prefs */; - return _toStringValidatorPrefs_V8( - &m->basic.staking_validate_V8.prefs, + case 0: /* staking_validate_V10 - prefs */; + return _toStringValidatorPrefs_V10( + &m->basic.staking_validate_V10.prefs, outValue, outValueLen, pageIdx, pageCount); default: @@ -4560,9 +4872,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1541: /* module 6 call 5 */ switch (itemIdx) { - case 0: /* staking_nominate_V8 - targets */; - return _toStringVecLookupasStaticLookupSource_V8( - &m->basic.staking_nominate_V8.targets, + case 0: /* staking_nominate_V10 - targets */; + return _toStringVecLookupasStaticLookupSource_V10( + &m->basic.staking_nominate_V10.targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -4575,9 +4887,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* staking_set_payee_V10 - payee */; + return _toStringRewardDestination_V10( + &m->basic.staking_set_payee_V10.payee, outValue, outValueLen, pageIdx, pageCount); default: @@ -4585,9 +4897,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* staking_set_controller_V10 - controller */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.staking_set_controller_V10.controller, outValue, outValueLen, pageIdx, pageCount); default: @@ -4595,14 +4907,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - era */; - return _toStringEraIndex_V8( - &m->basic.staking_payout_stakers_V8.era, + case 1: /* staking_payout_stakers_V10 - era */; + return _toStringEraIndex_V10( + &m->basic.staking_payout_stakers_V10.era, outValue, outValueLen, pageIdx, pageCount); default: @@ -4610,9 +4922,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1555: /* module 6 call 19 */ switch (itemIdx) { - case 0: /* staking_rebond_V8 - amount */; + case 0: /* staking_rebond_V10 - amount */; return _toStringCompactBalance( - &m->basic.staking_rebond_V8.amount, + &m->basic.staking_rebond_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4620,14 +4932,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - proof */; + case 1: /* session_set_keys_V10 - proof */; return _toStringBytes( - &m->basic.session_set_keys_V8.proof, + &m->basic.session_set_keys_V10.proof, outValue, outValueLen, pageIdx, pageCount); default: @@ -4640,9 +4952,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6144: /* module 24 call 0 */ switch (itemIdx) { - case 0: /* utility_batch_V8 - calls */; + case 0: /* utility_batch_V10 - calls */; return _toStringVecCall( - &m->basic.utility_batch_V8.calls, + &m->basic.utility_batch_V10.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -4650,9 +4962,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6146: /* module 24 call 2 */ switch (itemIdx) { - case 0: /* utility_batch_all_V8 - calls */; + case 0: /* utility_batch_all_V10 - calls */; return _toStringVecCall( - &m->basic.utility_batch_all_V8.calls, + &m->basic.utility_batch_all_V10.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -4661,9 +4973,9 @@ parser_error_t _getMethod_ItemValue_V8( #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, + case 0: /* system_fill_block_V10 - ratio */; + return _toStringPerbill_V10( + &m->nested.system_fill_block_V10.ratio, outValue, outValueLen, pageIdx, pageCount); default: @@ -4671,9 +4983,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1: /* module 0 call 1 */ switch (itemIdx) { - case 0: /* system_remark_V8 - remark */; + case 0: /* system_remark_V10 - remark */; return _toStringVecu8( - &m->nested.system_remark_V8.remark, + &m->nested.system_remark_V10.remark, outValue, outValueLen, pageIdx, pageCount); default: @@ -4681,9 +4993,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 2: /* module 0 call 2 */ switch (itemIdx) { - case 0: /* system_set_heap_pages_V8 - pages */; + case 0: /* system_set_heap_pages_V10 - pages */; return _toStringu64( - &m->nested.system_set_heap_pages_V8.pages, + &m->nested.system_set_heap_pages_V10.pages, outValue, outValueLen, pageIdx, pageCount); default: @@ -4691,9 +5003,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3: /* module 0 call 3 */ switch (itemIdx) { - case 0: /* system_set_code_V8 - code */; + case 0: /* system_set_code_V10 - code */; return _toStringVecu8( - &m->nested.system_set_code_V8.code, + &m->nested.system_set_code_V10.code, outValue, outValueLen, pageIdx, pageCount); default: @@ -4701,9 +5013,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 4: /* module 0 call 4 */ switch (itemIdx) { - case 0: /* system_set_code_without_checks_V8 - code */; + case 0: /* system_set_code_without_checks_V10 - code */; return _toStringVecu8( - &m->nested.system_set_code_without_checks_V8.code, + &m->nested.system_set_code_without_checks_V10.code, outValue, outValueLen, pageIdx, pageCount); default: @@ -4711,9 +5023,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8: /* module 0 call 8 */ switch (itemIdx) { - case 0: /* system_remark_with_event_V8 - remark */; + case 0: /* system_remark_with_event_V10 - remark */; return _toStringVecu8( - &m->nested.system_remark_with_event_V8.remark, + &m->nested.system_remark_with_event_V10.remark, outValue, outValueLen, pageIdx, pageCount); default: @@ -4721,9 +5033,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 512: /* module 2 call 0 */ switch (itemIdx) { - case 0: /* timestamp_set_V8 - now */; + case 0: /* timestamp_set_V10 - now */; return _toStringCompactu64( - &m->basic.timestamp_set_V8.now, + &m->basic.timestamp_set_V10.now, outValue, outValueLen, pageIdx, pageCount); default: @@ -4731,9 +5043,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 768: /* module 3 call 0 */ switch (itemIdx) { - case 0: /* indices_claim_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_claim_V8.index, + case 0: /* indices_claim_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_claim_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4741,14 +5053,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 769: /* module 3 call 1 */ switch (itemIdx) { - case 0: /* indices_transfer_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.indices_transfer_V8.new_, + case 0: /* indices_transfer_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.indices_transfer_V10.new_, outValue, outValueLen, pageIdx, pageCount); - case 1: /* indices_transfer_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_transfer_V8.index, + case 1: /* indices_transfer_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_transfer_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4756,9 +5068,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 770: /* module 3 call 2 */ switch (itemIdx) { - case 0: /* indices_free_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_free_V8.index, + case 0: /* indices_free_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_free_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4766,19 +5078,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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_, + 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_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_force_transfer_V8.index, + 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_V8 - freeze */; + case 2: /* indices_force_transfer_V10 - freeze */; return _toStringbool( - &m->basic.indices_force_transfer_V8.freeze, + &m->basic.indices_force_transfer_V10.freeze, outValue, outValueLen, pageIdx, pageCount); default: @@ -4786,9 +5098,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 772: /* module 3 call 4 */ switch (itemIdx) { - case 0: /* indices_freeze_V8 - index */; - return _toStringAccountIndex_V8( - &m->basic.indices_freeze_V8.index, + case 0: /* indices_freeze_V10 - index */; + return _toStringAccountIndex_V10( + &m->basic.indices_freeze_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4796,19 +5108,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - new_free */; + case 1: /* balances_set_balance_V10 - new_free */; return _toStringCompactBalance( - &m->nested.balances_set_balance_V8.new_free, + &m->nested.balances_set_balance_V10.new_free, outValue, outValueLen, pageIdx, pageCount); - case 2: /* balances_set_balance_V8 - new_reserved */; + case 2: /* balances_set_balance_V10 - new_reserved */; return _toStringCompactBalance( - &m->nested.balances_set_balance_V8.new_reserved, + &m->nested.balances_set_balance_V10.new_reserved, outValue, outValueLen, pageIdx, pageCount); default: @@ -4816,14 +5128,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - amount */; + case 1: /* balances_force_unreserve_V10 - amount */; return _toStringBalance( - &m->basic.balances_force_unreserve_V8.amount, + &m->basic.balances_force_unreserve_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -4831,9 +5143,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1545: /* module 6 call 9 */ switch (itemIdx) { - case 0: /* staking_set_validator_count_V8 - new_ */; + case 0: /* staking_set_validator_count_V10 - new_ */; return _toStringCompactu32( - &m->basic.staking_set_validator_count_V8.new_, + &m->basic.staking_set_validator_count_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -4841,9 +5153,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1546: /* module 6 call 10 */ switch (itemIdx) { - case 0: /* staking_increase_validator_count_V8 - additional */; + case 0: /* staking_increase_validator_count_V10 - additional */; return _toStringCompactu32( - &m->basic.staking_increase_validator_count_V8.additional, + &m->basic.staking_increase_validator_count_V10.additional, outValue, outValueLen, pageIdx, pageCount); default: @@ -4861,14 +5173,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - num_slashing_spans */; + case 1: /* staking_force_unstake_V10 - num_slashing_spans */; return _toStringu32( - &m->basic.staking_force_unstake_V8.num_slashing_spans, + &m->basic.staking_force_unstake_V10.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -4881,14 +5193,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 1556: /* module 6 call 20 */ switch (itemIdx) { - case 0: /* staking_set_history_depth_V8 - new_history_depth */; + case 0: /* staking_set_history_depth_V10 - new_history_depth */; return _toStringCompactu32( - &m->basic.staking_set_history_depth_V8.new_history_depth, + &m->basic.staking_set_history_depth_V10.new_history_depth, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_set_history_depth_V8 - era_items_deleted */; + case 1: /* staking_set_history_depth_V10 - era_items_deleted */; return _toStringCompactu32( - &m->basic.staking_set_history_depth_V8.era_items_deleted, + &m->basic.staking_set_history_depth_V10.era_items_deleted, outValue, outValueLen, pageIdx, pageCount); default: @@ -4896,14 +5208,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - num_slashing_spans */; + case 1: /* staking_reap_stash_V10 - num_slashing_spans */; return _toStringu32( - &m->basic.staking_reap_stash_V8.num_slashing_spans, + &m->basic.staking_reap_stash_V10.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -4911,9 +5223,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 1558: /* module 6 call 22 */ switch (itemIdx) { - case 0: /* staking_kick_V8 - who */; - return _toStringVecLookupasStaticLookupSource_V8( - &m->basic.staking_kick_V8.who, + case 0: /* staking_kick_V10 - who */; + return _toStringVecLookupasStaticLookupSource_V10( + &m->basic.staking_kick_V10.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -4921,9 +5233,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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: @@ -4931,14 +5253,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 2562: /* module 10 call 2 */ switch (itemIdx) { - case 0: /* grandpa_note_stalled_V8 - delay */; + case 0: /* grandpa_note_stalled_V10 - delay */; return _toStringBlockNumber( - &m->basic.grandpa_note_stalled_V8.delay, + &m->basic.grandpa_note_stalled_V10.delay, outValue, outValueLen, pageIdx, pageCount); - case 1: /* grandpa_note_stalled_V8 - best_finalized_block_number */; + case 1: /* grandpa_note_stalled_V10 - best_finalized_block_number */; return _toStringBlockNumber( - &m->basic.grandpa_note_stalled_V8.best_finalized_block_number, + &m->basic.grandpa_note_stalled_V10.best_finalized_block_number, outValue, outValueLen, pageIdx, pageCount); default: @@ -4946,14 +5268,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 3329: /* module 13 call 1 */ switch (itemIdx) { - case 0: /* democracy_second_V8 - proposal */; + case 0: /* democracy_second_V10 - proposal */; return _toStringCompactu32( - &m->basic.democracy_second_V8.proposal, + &m->basic.democracy_second_V10.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* democracy_second_V8 - seconds_upper_bound */; + case 1: /* democracy_second_V10 - seconds_upper_bound */; return _toStringCompactu32( - &m->basic.democracy_second_V8.seconds_upper_bound, + &m->basic.democracy_second_V10.seconds_upper_bound, outValue, outValueLen, pageIdx, pageCount); default: @@ -4961,9 +5283,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* democracy_emergency_cancel_V10 - ref_index */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_emergency_cancel_V10.ref_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4971,9 +5293,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3337: /* module 13 call 9 */ switch (itemIdx) { - case 0: /* democracy_cancel_referendum_V8 - ref_index */; + case 0: /* democracy_cancel_referendum_V10 - ref_index */; return _toStringCompactu32( - &m->basic.democracy_cancel_referendum_V8.ref_index, + &m->basic.democracy_cancel_referendum_V10.ref_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -4981,9 +5303,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* democracy_cancel_queued_V10 - which */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_cancel_queued_V10.which, outValue, outValueLen, pageIdx, pageCount); default: @@ -5001,9 +5323,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3342: /* module 13 call 14 */ switch (itemIdx) { - case 0: /* democracy_note_preimage_V8 - encoded_proposal */; + case 0: /* democracy_note_preimage_V10 - encoded_proposal */; return _toStringBytes( - &m->basic.democracy_note_preimage_V8.encoded_proposal, + &m->basic.democracy_note_preimage_V10.encoded_proposal, outValue, outValueLen, pageIdx, pageCount); default: @@ -5011,9 +5333,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3343: /* module 13 call 15 */ switch (itemIdx) { - case 0: /* democracy_note_preimage_operational_V8 - encoded_proposal */; + case 0: /* democracy_note_preimage_operational_V10 - encoded_proposal */; return _toStringBytes( - &m->basic.democracy_note_preimage_operational_V8.encoded_proposal, + &m->basic.democracy_note_preimage_operational_V10.encoded_proposal, outValue, outValueLen, pageIdx, pageCount); default: @@ -5021,9 +5343,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3344: /* module 13 call 16 */ switch (itemIdx) { - case 0: /* democracy_note_imminent_preimage_V8 - encoded_proposal */; + case 0: /* democracy_note_imminent_preimage_V10 - encoded_proposal */; return _toStringBytes( - &m->basic.democracy_note_imminent_preimage_V8.encoded_proposal, + &m->basic.democracy_note_imminent_preimage_V10.encoded_proposal, outValue, outValueLen, pageIdx, pageCount); default: @@ -5031,9 +5353,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3345: /* module 13 call 17 */ switch (itemIdx) { - case 0: /* democracy_note_imminent_preimage_operational_V8 - encoded_proposal */; + case 0: /* democracy_note_imminent_preimage_operational_V10 - encoded_proposal */; return _toStringBytes( - &m->basic.democracy_note_imminent_preimage_operational_V8.encoded_proposal, + &m->basic.democracy_note_imminent_preimage_operational_V10.encoded_proposal, outValue, outValueLen, pageIdx, pageCount); default: @@ -5041,9 +5363,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* democracy_remove_vote_V10 - index */; + return _toStringReferendumIndex_V10( + &m->basic.democracy_remove_vote_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5051,9 +5373,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3352: /* module 13 call 24 */ switch (itemIdx) { - case 0: /* democracy_cancel_proposal_V8 - prop_index */; + case 0: /* democracy_cancel_proposal_V10 - prop_index */; return _toStringCompactu32( - &m->basic.democracy_cancel_proposal_V8.prop_index, + &m->basic.democracy_cancel_proposal_V10.prop_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5061,19 +5383,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 3587: /* module 14 call 3 */ switch (itemIdx) { - case 0: /* council_vote_V8 - proposal */; + case 0: /* council_vote_V10 - proposal */; return _toStringHash( - &m->basic.council_vote_V8.proposal, + &m->basic.council_vote_V10.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* council_vote_V8 - index */; + case 1: /* council_vote_V10 - index */; return _toStringCompactu32( - &m->basic.council_vote_V8.index, + &m->basic.council_vote_V10.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* council_vote_V8 - approve */; + case 2: /* council_vote_V10 - approve */; return _toStringbool( - &m->basic.council_vote_V8.approve, + &m->basic.council_vote_V10.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -5081,24 +5403,24 @@ parser_error_t _getMethod_ItemValue_V8( } case 3588: /* module 14 call 4 */ switch (itemIdx) { - case 0: /* council_close_V8 - proposal_hash */; + case 0: /* council_close_V10 - proposal_hash */; return _toStringHash( - &m->basic.council_close_V8.proposal_hash, + &m->basic.council_close_V10.proposal_hash, outValue, outValueLen, pageIdx, pageCount); - case 1: /* council_close_V8 - index */; + case 1: /* council_close_V10 - index */; return _toStringCompactu32( - &m->basic.council_close_V8.index, + &m->basic.council_close_V10.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* council_close_V8 - proposal_weight_bound */; + case 2: /* council_close_V10 - proposal_weight_bound */; return _toStringCompactu64( - &m->basic.council_close_V8.proposal_weight_bound, + &m->basic.council_close_V10.proposal_weight_bound, outValue, outValueLen, pageIdx, pageCount); - case 3: /* council_close_V8 - length_bound */; + case 3: /* council_close_V10 - length_bound */; return _toStringCompactu32( - &m->basic.council_close_V8.length_bound, + &m->basic.council_close_V10.length_bound, outValue, outValueLen, pageIdx, pageCount); default: @@ -5106,9 +5428,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3589: /* module 14 call 5 */ switch (itemIdx) { - case 0: /* council_disapprove_proposal_V8 - proposal_hash */; + case 0: /* council_disapprove_proposal_V10 - proposal_hash */; return _toStringHash( - &m->basic.council_disapprove_proposal_V8.proposal_hash, + &m->basic.council_disapprove_proposal_V10.proposal_hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -5116,9 +5438,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 3845: /* module 15 call 5 */ switch (itemIdx) { - case 0: /* technicalcommittee_disapprove_proposal_V8 - proposal_hash */; + case 0: /* technicalcommittee_disapprove_proposal_V10 - proposal_hash */; return _toStringHash( - &m->basic.technicalcommittee_disapprove_proposal_V8.proposal_hash, + &m->basic.technicalcommittee_disapprove_proposal_V10.proposal_hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -5131,9 +5453,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 4098: /* module 16 call 2 */ switch (itemIdx) { - case 0: /* phragmenelection_submit_candidacy_V8 - candidate_count */; + case 0: /* phragmenelection_submit_candidacy_V10 - candidate_count */; return _toStringCompactu32( - &m->basic.phragmenelection_submit_candidacy_V8.candidate_count, + &m->basic.phragmenelection_submit_candidacy_V10.candidate_count, outValue, outValueLen, pageIdx, pageCount); default: @@ -5141,14 +5463,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - has_replacement */; + case 1: /* phragmenelection_remove_member_V10 - has_replacement */; return _toStringbool( - &m->basic.phragmenelection_remove_member_V8.has_replacement, + &m->basic.phragmenelection_remove_member_V10.has_replacement, outValue, outValueLen, pageIdx, pageCount); default: @@ -5156,14 +5478,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 4101: /* module 16 call 5 */ switch (itemIdx) { - case 0: /* phragmenelection_clean_defunct_voters_V8 - num_voters */; + case 0: /* phragmenelection_clean_defunct_voters_V10 - num_voters */; return _toStringu32( - &m->basic.phragmenelection_clean_defunct_voters_V8.num_voters, + &m->basic.phragmenelection_clean_defunct_voters_V10.num_voters, outValue, outValueLen, pageIdx, pageCount); - case 1: /* phragmenelection_clean_defunct_voters_V8 - num_defunct */; + case 1: /* phragmenelection_clean_defunct_voters_V10 - num_defunct */; return _toStringu32( - &m->basic.phragmenelection_clean_defunct_voters_V8.num_defunct, + &m->basic.phragmenelection_clean_defunct_voters_V10.num_defunct, outValue, outValueLen, pageIdx, pageCount); default: @@ -5171,9 +5493,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* technicalmembership_add_member_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_add_member_V10.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -5181,9 +5503,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* technicalmembership_remove_member_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_remove_member_V10.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -5191,14 +5513,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - add */; - return _toStringAccountId_V8( - &m->basic.technicalmembership_swap_member_V8.add, + case 1: /* technicalmembership_swap_member_V10 - add */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_swap_member_V10.add, outValue, outValueLen, pageIdx, pageCount); default: @@ -5206,9 +5528,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* technicalmembership_reset_members_V10 - members */; + return _toStringVecAccountId_V10( + &m->basic.technicalmembership_reset_members_V10.members, outValue, outValueLen, pageIdx, pageCount); default: @@ -5216,9 +5538,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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_, + case 0: /* technicalmembership_change_key_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_change_key_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -5226,9 +5548,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* technicalmembership_set_prime_V10 - who */; + return _toStringAccountId_V10( + &m->basic.technicalmembership_set_prime_V10.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -5241,14 +5563,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 4608: /* module 18 call 0 */ switch (itemIdx) { - case 0: /* treasury_propose_spend_V8 - amount */; + case 0: /* treasury_propose_spend_V10 - amount */; return _toStringCompactBalance( - &m->basic.treasury_propose_spend_V8.amount, + &m->basic.treasury_propose_spend_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* treasury_propose_spend_V8 - beneficiary */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.treasury_propose_spend_V8.beneficiary, + case 1: /* treasury_propose_spend_V10 - beneficiary */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.treasury_propose_spend_V10.beneficiary, outValue, outValueLen, pageIdx, pageCount); default: @@ -5256,9 +5578,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 4609: /* module 18 call 1 */ switch (itemIdx) { - case 0: /* treasury_reject_proposal_V8 - proposal_id */; + case 0: /* treasury_reject_proposal_V10 - proposal_id */; return _toStringCompactu32( - &m->basic.treasury_reject_proposal_V8.proposal_id, + &m->basic.treasury_reject_proposal_V10.proposal_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5266,9 +5588,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 4610: /* module 18 call 2 */ switch (itemIdx) { - case 0: /* treasury_approve_proposal_V8 - proposal_id */; + case 0: /* treasury_approve_proposal_V10 - proposal_id */; return _toStringCompactu32( - &m->basic.treasury_approve_proposal_V8.proposal_id, + &m->basic.treasury_approve_proposal_V10.proposal_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5276,14 +5598,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 4864: /* module 19 call 0 */ switch (itemIdx) { - case 0: /* claims_claim_V8 - dest */; - return _toStringAccountId_V8( - &m->basic.claims_claim_V8.dest, + case 0: /* claims_claim_V10 - dest */; + return _toStringAccountId_V10( + &m->basic.claims_claim_V10.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* claims_claim_V8 - ethereum_signature */; - return _toStringEcdsaSignature_V8( - &m->basic.claims_claim_V8.ethereum_signature, + case 1: /* claims_claim_V10 - ethereum_signature */; + return _toStringEcdsaSignature_V10( + &m->basic.claims_claim_V10.ethereum_signature, outValue, outValueLen, pageIdx, pageCount); default: @@ -5291,19 +5613,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - ethereum_signature */; - return _toStringEcdsaSignature_V8( - &m->basic.claims_claim_attest_V8.ethereum_signature, + 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_V8 - statement */; + case 2: /* claims_claim_attest_V10 - statement */; return _toStringBytes( - &m->basic.claims_claim_attest_V8.statement, + &m->basic.claims_claim_attest_V10.statement, outValue, outValueLen, pageIdx, pageCount); default: @@ -5311,9 +5633,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 4867: /* module 19 call 3 */ switch (itemIdx) { - case 0: /* claims_attest_V8 - statement */; + case 0: /* claims_attest_V10 - statement */; return _toStringBytes( - &m->basic.claims_attest_V8.statement, + &m->basic.claims_attest_V10.statement, outValue, outValueLen, pageIdx, pageCount); default: @@ -5321,19 +5643,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - new_ */; - return _toStringEthereumAddress_V8( - &m->basic.claims_move_claim_V8.new_, + 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_V8 - maybe_preclaim */; - return _toStringOptionAccountId_V8( - &m->basic.claims_move_claim_V8.maybe_preclaim, + case 2: /* claims_move_claim_V10 - maybe_preclaim */; + return _toStringOptionAccountId_V10( + &m->basic.claims_move_claim_V10.maybe_preclaim, outValue, outValueLen, pageIdx, pageCount); default: @@ -5341,9 +5663,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* identity_add_registrar_V10 - account */; + return _toStringAccountId_V10( + &m->basic.identity_add_registrar_V10.account, outValue, outValueLen, pageIdx, pageCount); default: @@ -5356,14 +5678,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 6404: /* module 25 call 4 */ switch (itemIdx) { - case 0: /* identity_request_judgement_V8 - reg_index */; + case 0: /* identity_request_judgement_V10 - reg_index */; return _toStringCompactu32( - &m->basic.identity_request_judgement_V8.reg_index, + &m->basic.identity_request_judgement_V10.reg_index, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_request_judgement_V8 - max_fee */; + case 1: /* identity_request_judgement_V10 - max_fee */; return _toStringCompactu128( - &m->basic.identity_request_judgement_V8.max_fee, + &m->basic.identity_request_judgement_V10.max_fee, outValue, outValueLen, pageIdx, pageCount); default: @@ -5371,9 +5693,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* identity_cancel_request_V10 - reg_index */; + return _toStringRegistrarIndex_V10( + &m->basic.identity_cancel_request_V10.reg_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5381,14 +5703,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 6406: /* module 25 call 6 */ switch (itemIdx) { - case 0: /* identity_set_fee_V8 - index */; + case 0: /* identity_set_fee_V10 - index */; return _toStringCompactu32( - &m->basic.identity_set_fee_V8.index, + &m->basic.identity_set_fee_V10.index, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_set_fee_V8 - fee */; + case 1: /* identity_set_fee_V10 - fee */; return _toStringCompactu128( - &m->basic.identity_set_fee_V8.fee, + &m->basic.identity_set_fee_V10.fee, outValue, outValueLen, pageIdx, pageCount); default: @@ -5396,14 +5718,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 6407: /* module 25 call 7 */ switch (itemIdx) { - case 0: /* identity_set_account_id_V8 - index */; + case 0: /* identity_set_account_id_V10 - index */; return _toStringCompactu32( - &m->basic.identity_set_account_id_V8.index, + &m->basic.identity_set_account_id_V10.index, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_set_account_id_V8 - new_ */; - return _toStringAccountId_V8( - &m->basic.identity_set_account_id_V8.new_, + case 1: /* identity_set_account_id_V10 - new_ */; + return _toStringAccountId_V10( + &m->basic.identity_set_account_id_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -5411,9 +5733,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* identity_kill_identity_V10 - target */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.identity_kill_identity_V10.target, outValue, outValueLen, pageIdx, pageCount); default: @@ -5421,9 +5743,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* identity_remove_sub_V10 - sub */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.identity_remove_sub_V10.sub, outValue, outValueLen, pageIdx, pageCount); default: @@ -5436,9 +5758,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6656: /* module 26 call 0 */ switch (itemIdx) { - case 0: /* society_bid_V8 - amount */; + case 0: /* society_bid_V10 - amount */; return _toStringBalance( - &m->basic.society_bid_V8.amount, + &m->basic.society_bid_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -5446,9 +5768,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6657: /* module 26 call 1 */ switch (itemIdx) { - case 0: /* society_unbid_V8 - pos */; + case 0: /* society_unbid_V10 - pos */; return _toStringu32( - &m->basic.society_unbid_V8.pos, + &m->basic.society_unbid_V10.pos, outValue, outValueLen, pageIdx, pageCount); default: @@ -5456,19 +5778,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 6658: /* module 26 call 2 */ switch (itemIdx) { - case 0: /* society_vouch_V8 - who */; - return _toStringAccountId_V8( - &m->basic.society_vouch_V8.who, + case 0: /* society_vouch_V10 - who */; + return _toStringAccountId_V10( + &m->basic.society_vouch_V10.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* society_vouch_V8 - amount */; + case 1: /* society_vouch_V10 - amount */; return _toStringBalance( - &m->basic.society_vouch_V8.amount, + &m->basic.society_vouch_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* society_vouch_V8 - tip */; + case 2: /* society_vouch_V10 - tip */; return _toStringBalance( - &m->basic.society_vouch_V8.tip, + &m->basic.society_vouch_V10.tip, outValue, outValueLen, pageIdx, pageCount); default: @@ -5476,9 +5798,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6659: /* module 26 call 3 */ switch (itemIdx) { - case 0: /* society_unvouch_V8 - pos */; + case 0: /* society_unvouch_V10 - pos */; return _toStringu32( - &m->basic.society_unvouch_V8.pos, + &m->basic.society_unvouch_V10.pos, outValue, outValueLen, pageIdx, pageCount); default: @@ -5486,14 +5808,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 6660: /* module 26 call 4 */ switch (itemIdx) { - case 0: /* society_vote_V8 - candidate */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.society_vote_V8.candidate, + case 0: /* society_vote_V10 - candidate */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.society_vote_V10.candidate, outValue, outValueLen, pageIdx, pageCount); - case 1: /* society_vote_V8 - approve */; + case 1: /* society_vote_V10 - approve */; return _toStringbool( - &m->basic.society_vote_V8.approve, + &m->basic.society_vote_V10.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -5501,9 +5823,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6661: /* module 26 call 5 */ switch (itemIdx) { - case 0: /* society_defender_vote_V8 - approve */; + case 0: /* society_defender_vote_V10 - approve */; return _toStringbool( - &m->basic.society_defender_vote_V8.approve, + &m->basic.society_defender_vote_V10.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -5516,19 +5838,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 6663: /* module 26 call 7 */ switch (itemIdx) { - case 0: /* society_found_V8 - founder */; - return _toStringAccountId_V8( - &m->basic.society_found_V8.founder, + case 0: /* society_found_V10 - founder */; + return _toStringAccountId_V10( + &m->basic.society_found_V10.founder, outValue, outValueLen, pageIdx, pageCount); - case 1: /* society_found_V8 - max_members */; + case 1: /* society_found_V10 - max_members */; return _toStringu32( - &m->basic.society_found_V8.max_members, + &m->basic.society_found_V10.max_members, outValue, outValueLen, pageIdx, pageCount); - case 2: /* society_found_V8 - rules */; + case 2: /* society_found_V10 - rules */; return _toStringBytes( - &m->basic.society_found_V8.rules, + &m->basic.society_found_V10.rules, outValue, outValueLen, pageIdx, pageCount); default: @@ -5541,14 +5863,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - forgive */; + case 1: /* society_judge_suspended_member_V10 - forgive */; return _toStringbool( - &m->basic.society_judge_suspended_member_V8.forgive, + &m->basic.society_judge_suspended_member_V10.forgive, outValue, outValueLen, pageIdx, pageCount); default: @@ -5556,9 +5878,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 6667: /* module 26 call 11 */ switch (itemIdx) { - case 0: /* society_set_max_members_V8 - max */; + case 0: /* society_set_max_members_V10 - max */; return _toStringu32( - &m->basic.society_set_max_members_V8.max, + &m->basic.society_set_max_members_V10.max, outValue, outValueLen, pageIdx, pageCount); default: @@ -5566,14 +5888,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - rescuer */; - return _toStringAccountId_V8( - &m->basic.recovery_set_recovered_V8.rescuer, + case 1: /* recovery_set_recovered_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_set_recovered_V10.rescuer, outValue, outValueLen, pageIdx, pageCount); default: @@ -5581,9 +5903,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* recovery_initiate_recovery_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_initiate_recovery_V10.account, outValue, outValueLen, pageIdx, pageCount); default: @@ -5591,14 +5913,14 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - rescuer */; - return _toStringAccountId_V8( - &m->basic.recovery_vouch_recovery_V8.rescuer, + case 1: /* recovery_vouch_recovery_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_vouch_recovery_V10.rescuer, outValue, outValueLen, pageIdx, pageCount); default: @@ -5606,9 +5928,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* recovery_claim_recovery_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_claim_recovery_V10.account, outValue, outValueLen, pageIdx, pageCount); default: @@ -5616,9 +5938,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* recovery_close_recovery_V10 - rescuer */; + return _toStringAccountId_V10( + &m->basic.recovery_close_recovery_V10.rescuer, outValue, outValueLen, pageIdx, pageCount); default: @@ -5631,9 +5953,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* recovery_cancel_recovered_V10 - account */; + return _toStringAccountId_V10( + &m->basic.recovery_cancel_recovered_V10.account, outValue, outValueLen, pageIdx, pageCount); default: @@ -5646,9 +5968,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + case 0: /* vesting_vest_other_V10 - target */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.vesting_vest_other_V10.target, outValue, outValueLen, pageIdx, pageCount); default: @@ -5656,14 +5978,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 7172: /* module 28 call 4 */ switch (itemIdx) { - case 0: /* vesting_merge_schedules_V8 - schedule1_index */; + case 0: /* vesting_merge_schedules_V10 - schedule1_index */; return _toStringu32( - &m->basic.vesting_merge_schedules_V8.schedule1_index, + &m->basic.vesting_merge_schedules_V10.schedule1_index, outValue, outValueLen, pageIdx, pageCount); - case 1: /* vesting_merge_schedules_V8 - schedule2_index */; + case 1: /* vesting_merge_schedules_V10 - schedule2_index */; return _toStringu32( - &m->basic.vesting_merge_schedules_V8.schedule2_index, + &m->basic.vesting_merge_schedules_V10.schedule2_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5671,19 +5993,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 7680: /* module 30 call 0 */ switch (itemIdx) { - case 0: /* proxy_proxy_V8 - real */; - return _toStringAccountId_V8( - &m->nested.proxy_proxy_V8.real, + case 0: /* proxy_proxy_V10 - real */; + return _toStringAccountId_V10( + &m->nested.proxy_proxy_V10.real, outValue, outValueLen, pageIdx, pageCount); - case 1: /* proxy_proxy_V8 - force_proxy_type */; - return _toStringOptionProxyType_V8( - &m->nested.proxy_proxy_V8.force_proxy_type, + 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_V8 - call */; + case 2: /* proxy_proxy_V10 - call */; return _toStringCall( - &m->nested.proxy_proxy_V8.call, + &m->nested.proxy_proxy_V10.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -5691,19 +6013,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_add_proxy_V8.proxy_type, + 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_V8 - delay */; + case 2: /* proxy_add_proxy_V10 - delay */; return _toStringBlockNumber( - &m->basic.proxy_add_proxy_V8.delay, + &m->basic.proxy_add_proxy_V10.delay, outValue, outValueLen, pageIdx, pageCount); default: @@ -5711,19 +6033,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_remove_proxy_V8.proxy_type, + 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_V8 - delay */; + case 2: /* proxy_remove_proxy_V10 - delay */; return _toStringBlockNumber( - &m->basic.proxy_remove_proxy_V8.delay, + &m->basic.proxy_remove_proxy_V10.delay, outValue, outValueLen, pageIdx, pageCount); default: @@ -5736,19 +6058,19 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - delay */; + case 1: /* proxy_anonymous_V10 - delay */; return _toStringBlockNumber( - &m->basic.proxy_anonymous_V8.delay, + &m->basic.proxy_anonymous_V10.delay, outValue, outValueLen, pageIdx, pageCount); - case 2: /* proxy_anonymous_V8 - index */; + case 2: /* proxy_anonymous_V10 - index */; return _toStringu16( - &m->basic.proxy_anonymous_V8.index, + &m->basic.proxy_anonymous_V10.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5756,29 +6078,29 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - proxy_type */; - return _toStringProxyType_V8( - &m->basic.proxy_kill_anonymous_V8.proxy_type, + 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_V8 - index */; + case 2: /* proxy_kill_anonymous_V10 - index */; return _toStringu16( - &m->basic.proxy_kill_anonymous_V8.index, + &m->basic.proxy_kill_anonymous_V10.index, outValue, outValueLen, pageIdx, pageCount); - case 3: /* proxy_kill_anonymous_V8 - height */; + case 3: /* proxy_kill_anonymous_V10 - height */; return _toStringCompactu32( - &m->basic.proxy_kill_anonymous_V8.height, + &m->basic.proxy_kill_anonymous_V10.height, outValue, outValueLen, pageIdx, pageCount); - case 4: /* proxy_kill_anonymous_V8 - ext_index */; + case 4: /* proxy_kill_anonymous_V10 - ext_index */; return _toStringCompactu32( - &m->basic.proxy_kill_anonymous_V8.ext_index, + &m->basic.proxy_kill_anonymous_V10.ext_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -5786,24 +6108,39 @@ parser_error_t _getMethod_ItemValue_V8( } 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, + 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_V8 - real */; - return _toStringAccountId_V8( - &m->basic.proxy_proxy_announced_V8.real, + 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_V8 - force_proxy_type */; - return _toStringOptionProxyType_V8( - &m->basic.proxy_proxy_announced_V8.force_proxy_type, + 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 3: /* proxy_proxy_announced_V8 - call */; + case 1: /* multisig_as_multi_threshold_1_V10 - call */; return _toStringCall( - &m->basic.proxy_proxy_announced_V8.call, + &m->nested.multisig_as_multi_threshold_1_V10.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -5811,34 +6148,34 @@ parser_error_t _getMethod_ItemValue_V8( } case 7937: /* module 31 call 1 */ switch (itemIdx) { - case 0: /* multisig_as_multi_V8 - threshold */; + case 0: /* multisig_as_multi_V10 - threshold */; return _toStringu16( - &m->nested.multisig_as_multi_V8.threshold, + &m->nested.multisig_as_multi_V10.threshold, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_as_multi_V8 - other_signatories */; - return _toStringVecAccountId_V8( - &m->nested.multisig_as_multi_V8.other_signatories, + 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_V8 - maybe_timepoint */; - return _toStringOptionTimepoint_V8( - &m->nested.multisig_as_multi_V8.maybe_timepoint, + 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_V8 - call */; - return _toStringOpaqueCall_V8( - &m->nested.multisig_as_multi_V8.call, + 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_V8 - store_call */; + case 4: /* multisig_as_multi_V10 - store_call */; return _toStringbool( - &m->nested.multisig_as_multi_V8.store_call, + &m->nested.multisig_as_multi_V10.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, + case 5: /* multisig_as_multi_V10 - max_weight */; + return _toStringWeight_V10( + &m->nested.multisig_as_multi_V10.max_weight, outValue, outValueLen, pageIdx, pageCount); default: @@ -5846,29 +6183,29 @@ parser_error_t _getMethod_ItemValue_V8( } case 7938: /* module 31 call 2 */ switch (itemIdx) { - case 0: /* multisig_approve_as_multi_V8 - threshold */; + case 0: /* multisig_approve_as_multi_V10 - threshold */; return _toStringu16( - &m->nested.multisig_approve_as_multi_V8.threshold, + &m->nested.multisig_approve_as_multi_V10.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, + 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_V8 - maybe_timepoint */; - return _toStringOptionTimepoint_V8( - &m->nested.multisig_approve_as_multi_V8.maybe_timepoint, + 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_V8 - call_hash */; + case 3: /* multisig_approve_as_multi_V10 - call_hash */; return _toStringH256( - &m->nested.multisig_approve_as_multi_V8.call_hash, + &m->nested.multisig_approve_as_multi_V10.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, + 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: @@ -5876,24 +6213,64 @@ parser_error_t _getMethod_ItemValue_V8( } case 7939: /* module 31 call 3 */ switch (itemIdx) { - case 0: /* multisig_cancel_as_multi_V8 - threshold */; + case 0: /* multisig_cancel_as_multi_V10 - threshold */; return _toStringu16( - &m->nested.multisig_cancel_as_multi_V8.threshold, + &m->nested.multisig_cancel_as_multi_V10.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, + 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_V8 - timepoint */; - return _toStringTimepoint_V8( - &m->nested.multisig_cancel_as_multi_V8.timepoint, + 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_V8 - call_hash */; + case 3: /* multisig_cancel_as_multi_V10 - call_hash */; return _toStringH256( - &m->nested.multisig_cancel_as_multi_V8.call_hash, + &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: @@ -5901,14 +6278,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 8960: /* module 35 call 0 */ switch (itemIdx) { - case 0: /* bounties_propose_bounty_V8 - amount */; + case 0: /* bounties_propose_bounty_V10 - amount */; return _toStringCompactBalance( - &m->basic.bounties_propose_bounty_V8.amount, + &m->basic.bounties_propose_bounty_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* bounties_propose_bounty_V8 - description */; + case 1: /* bounties_propose_bounty_V10 - description */; return _toStringBytes( - &m->basic.bounties_propose_bounty_V8.description, + &m->basic.bounties_propose_bounty_V10.description, outValue, outValueLen, pageIdx, pageCount); default: @@ -5916,9 +6293,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8961: /* module 35 call 1 */ switch (itemIdx) { - case 0: /* bounties_approve_bounty_V8 - bounty_id */; + case 0: /* bounties_approve_bounty_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_approve_bounty_V8.bounty_id, + &m->basic.bounties_approve_bounty_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5926,19 +6303,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 8962: /* module 35 call 2 */ switch (itemIdx) { - case 0: /* bounties_propose_curator_V8 - bounty_id */; + case 0: /* bounties_propose_curator_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_propose_curator_V8.bounty_id, + &m->basic.bounties_propose_curator_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* bounties_propose_curator_V8 - curator */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.bounties_propose_curator_V8.curator, + 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_V8 - fee */; + case 2: /* bounties_propose_curator_V10 - fee */; return _toStringCompactBalance( - &m->basic.bounties_propose_curator_V8.fee, + &m->basic.bounties_propose_curator_V10.fee, outValue, outValueLen, pageIdx, pageCount); default: @@ -5946,9 +6323,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8963: /* module 35 call 3 */ switch (itemIdx) { - case 0: /* bounties_unassign_curator_V8 - bounty_id */; + case 0: /* bounties_unassign_curator_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_unassign_curator_V8.bounty_id, + &m->basic.bounties_unassign_curator_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5956,9 +6333,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8964: /* module 35 call 4 */ switch (itemIdx) { - case 0: /* bounties_accept_curator_V8 - bounty_id */; + case 0: /* bounties_accept_curator_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_accept_curator_V8.bounty_id, + &m->basic.bounties_accept_curator_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5966,14 +6343,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 8965: /* module 35 call 5 */ switch (itemIdx) { - case 0: /* bounties_award_bounty_V8 - bounty_id */; + case 0: /* bounties_award_bounty_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_award_bounty_V8.bounty_id, + &m->basic.bounties_award_bounty_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* bounties_award_bounty_V8 - beneficiary */; - return _toStringLookupasStaticLookupSource_V8( - &m->basic.bounties_award_bounty_V8.beneficiary, + case 1: /* bounties_award_bounty_V10 - beneficiary */; + return _toStringLookupasStaticLookupSource_V10( + &m->basic.bounties_award_bounty_V10.beneficiary, outValue, outValueLen, pageIdx, pageCount); default: @@ -5981,9 +6358,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8966: /* module 35 call 6 */ switch (itemIdx) { - case 0: /* bounties_claim_bounty_V8 - bounty_id */; + case 0: /* bounties_claim_bounty_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_claim_bounty_V8.bounty_id, + &m->basic.bounties_claim_bounty_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -5991,9 +6368,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 8967: /* module 35 call 7 */ switch (itemIdx) { - case 0: /* bounties_close_bounty_V8 - bounty_id */; + case 0: /* bounties_close_bounty_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_close_bounty_V8.bounty_id, + &m->basic.bounties_close_bounty_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -6001,14 +6378,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 8968: /* module 35 call 8 */ switch (itemIdx) { - case 0: /* bounties_extend_bounty_expiry_V8 - bounty_id */; + case 0: /* bounties_extend_bounty_expiry_V10 - bounty_id */; return _toStringCompactu32( - &m->basic.bounties_extend_bounty_expiry_V8.bounty_id, + &m->basic.bounties_extend_bounty_expiry_V10.bounty_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* bounties_extend_bounty_expiry_V8 - remark */; + case 1: /* bounties_extend_bounty_expiry_V10 - remark */; return _toStringBytes( - &m->basic.bounties_extend_bounty_expiry_V8.remark, + &m->basic.bounties_extend_bounty_expiry_V10.remark, outValue, outValueLen, pageIdx, pageCount); default: @@ -6016,14 +6393,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 9216: /* module 36 call 0 */ switch (itemIdx) { - case 0: /* tips_report_awesome_V8 - reason */; + case 0: /* tips_report_awesome_V10 - reason */; return _toStringBytes( - &m->basic.tips_report_awesome_V8.reason, + &m->basic.tips_report_awesome_V10.reason, outValue, outValueLen, pageIdx, pageCount); - case 1: /* tips_report_awesome_V8 - who */; - return _toStringAccountId_V8( - &m->basic.tips_report_awesome_V8.who, + case 1: /* tips_report_awesome_V10 - who */; + return _toStringAccountId_V10( + &m->basic.tips_report_awesome_V10.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -6031,9 +6408,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 9217: /* module 36 call 1 */ switch (itemIdx) { - case 0: /* tips_retract_tip_V8 - hash */; + case 0: /* tips_retract_tip_V10 - hash */; return _toStringHash( - &m->basic.tips_retract_tip_V8.hash, + &m->basic.tips_retract_tip_V10.hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -6041,19 +6418,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 9218: /* module 36 call 2 */ switch (itemIdx) { - case 0: /* tips_tip_new_V8 - reason */; + case 0: /* tips_tip_new_V10 - reason */; return _toStringBytes( - &m->basic.tips_tip_new_V8.reason, + &m->basic.tips_tip_new_V10.reason, outValue, outValueLen, pageIdx, pageCount); - case 1: /* tips_tip_new_V8 - who */; - return _toStringAccountId_V8( - &m->basic.tips_tip_new_V8.who, + 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_V8 - tip_value */; + case 2: /* tips_tip_new_V10 - tip_value */; return _toStringCompactu128( - &m->basic.tips_tip_new_V8.tip_value, + &m->basic.tips_tip_new_V10.tip_value, outValue, outValueLen, pageIdx, pageCount); default: @@ -6061,14 +6438,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 9219: /* module 36 call 3 */ switch (itemIdx) { - case 0: /* tips_tip_V8 - hash */; + case 0: /* tips_tip_V10 - hash */; return _toStringHash( - &m->basic.tips_tip_V8.hash, + &m->basic.tips_tip_V10.hash, outValue, outValueLen, pageIdx, pageCount); - case 1: /* tips_tip_V8 - tip_value */; + case 1: /* tips_tip_V10 - tip_value */; return _toStringCompactu128( - &m->basic.tips_tip_V8.tip_value, + &m->basic.tips_tip_V10.tip_value, outValue, outValueLen, pageIdx, pageCount); default: @@ -6076,9 +6453,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 9220: /* module 36 call 4 */ switch (itemIdx) { - case 0: /* tips_close_tip_V8 - hash */; + case 0: /* tips_close_tip_V10 - hash */; return _toStringHash( - &m->basic.tips_close_tip_V8.hash, + &m->basic.tips_close_tip_V10.hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -6086,9 +6463,24 @@ parser_error_t _getMethod_ItemValue_V8( } case 9221: /* module 36 call 5 */ switch (itemIdx) { - case 0: /* tips_slash_tip_V8 - hash */; + case 0: /* tips_slash_tip_V10 - hash */; return _toStringHash( - &m->basic.tips_slash_tip_V8.hash, + &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: @@ -6096,14 +6488,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 9728: /* module 38 call 0 */ switch (itemIdx) { - case 0: /* gilt_place_bid_V8 - amount */; + case 0: /* gilt_place_bid_V10 - amount */; return _toStringCompactBalance( - &m->basic.gilt_place_bid_V8.amount, + &m->basic.gilt_place_bid_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* gilt_place_bid_V8 - duration */; + case 1: /* gilt_place_bid_V10 - duration */; return _toStringu32( - &m->basic.gilt_place_bid_V8.duration, + &m->basic.gilt_place_bid_V10.duration, outValue, outValueLen, pageIdx, pageCount); default: @@ -6111,14 +6503,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 9729: /* module 38 call 1 */ switch (itemIdx) { - case 0: /* gilt_retract_bid_V8 - amount */; + case 0: /* gilt_retract_bid_V10 - amount */; return _toStringCompactBalance( - &m->basic.gilt_retract_bid_V8.amount, + &m->basic.gilt_retract_bid_V10.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* gilt_retract_bid_V8 - duration */; + case 1: /* gilt_retract_bid_V10 - duration */; return _toStringu32( - &m->basic.gilt_retract_bid_V8.duration, + &m->basic.gilt_retract_bid_V10.duration, outValue, outValueLen, pageIdx, pageCount); default: @@ -6126,9 +6518,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 9984: /* module 39 call 0 */ switch (itemIdx) { - case 0: /* bagslist_rebag_V8 - dislocated */; - return _toStringAccountId_V8( - &m->basic.bagslist_rebag_V8.dislocated, + 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: @@ -6136,9 +6538,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13056: /* module 51 call 0 */ switch (itemIdx) { - case 0: /* configuration_set_validation_upgrade_frequency_V8 - new_ */; + case 0: /* configuration_set_validation_upgrade_cooldown_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_validation_upgrade_frequency_V8.new_, + &m->basic.configuration_set_validation_upgrade_cooldown_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6146,9 +6548,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13057: /* module 51 call 1 */ switch (itemIdx) { - case 0: /* configuration_set_validation_upgrade_delay_V8 - new_ */; + case 0: /* configuration_set_validation_upgrade_delay_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_validation_upgrade_delay_V8.new_, + &m->basic.configuration_set_validation_upgrade_delay_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6156,9 +6558,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13058: /* module 51 call 2 */ switch (itemIdx) { - case 0: /* configuration_set_code_retention_period_V8 - new_ */; + case 0: /* configuration_set_code_retention_period_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_code_retention_period_V8.new_, + &m->basic.configuration_set_code_retention_period_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6166,9 +6568,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13059: /* module 51 call 3 */ switch (itemIdx) { - case 0: /* configuration_set_max_code_size_V8 - new_ */; + case 0: /* configuration_set_max_code_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_code_size_V8.new_, + &m->basic.configuration_set_max_code_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6176,9 +6578,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13060: /* module 51 call 4 */ switch (itemIdx) { - case 0: /* configuration_set_max_pov_size_V8 - new_ */; + case 0: /* configuration_set_max_pov_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_pov_size_V8.new_, + &m->basic.configuration_set_max_pov_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6186,9 +6588,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13061: /* module 51 call 5 */ switch (itemIdx) { - case 0: /* configuration_set_max_head_data_size_V8 - new_ */; + case 0: /* configuration_set_max_head_data_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_head_data_size_V8.new_, + &m->basic.configuration_set_max_head_data_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6196,9 +6598,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13062: /* module 51 call 6 */ switch (itemIdx) { - case 0: /* configuration_set_parathread_cores_V8 - new_ */; + case 0: /* configuration_set_parathread_cores_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_parathread_cores_V8.new_, + &m->basic.configuration_set_parathread_cores_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6206,9 +6608,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13063: /* module 51 call 7 */ switch (itemIdx) { - case 0: /* configuration_set_parathread_retries_V8 - new_ */; + case 0: /* configuration_set_parathread_retries_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_parathread_retries_V8.new_, + &m->basic.configuration_set_parathread_retries_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6216,9 +6618,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13064: /* module 51 call 8 */ switch (itemIdx) { - case 0: /* configuration_set_group_rotation_frequency_V8 - new_ */; + case 0: /* configuration_set_group_rotation_frequency_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_group_rotation_frequency_V8.new_, + &m->basic.configuration_set_group_rotation_frequency_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6226,9 +6628,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13065: /* module 51 call 9 */ switch (itemIdx) { - case 0: /* configuration_set_chain_availability_period_V8 - new_ */; + case 0: /* configuration_set_chain_availability_period_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_chain_availability_period_V8.new_, + &m->basic.configuration_set_chain_availability_period_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6236,9 +6638,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13066: /* module 51 call 10 */ switch (itemIdx) { - case 0: /* configuration_set_thread_availability_period_V8 - new_ */; + case 0: /* configuration_set_thread_availability_period_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_thread_availability_period_V8.new_, + &m->basic.configuration_set_thread_availability_period_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6246,9 +6648,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13067: /* module 51 call 11 */ switch (itemIdx) { - case 0: /* configuration_set_scheduling_lookahead_V8 - new_ */; + case 0: /* configuration_set_scheduling_lookahead_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_scheduling_lookahead_V8.new_, + &m->basic.configuration_set_scheduling_lookahead_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6256,9 +6658,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13068: /* module 51 call 12 */ switch (itemIdx) { - case 0: /* configuration_set_max_validators_per_core_V8 - new_ */; + case 0: /* configuration_set_max_validators_per_core_V10 - new_ */; return _toStringOptionu32( - &m->basic.configuration_set_max_validators_per_core_V8.new_, + &m->basic.configuration_set_max_validators_per_core_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6266,9 +6668,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 13069: /* module 51 call 13 */ switch (itemIdx) { - case 0: /* configuration_set_max_validators_V8 - new_ */; + case 0: /* configuration_set_max_validators_V10 - new_ */; return _toStringOptionu32( - &m->basic.configuration_set_max_validators_V8.new_, + &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: @@ -6276,9 +6688,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13071: /* module 51 call 15 */ switch (itemIdx) { - case 0: /* configuration_set_dispute_post_conclusion_acceptance_period_V8 - new_ */; + case 0: /* configuration_set_dispute_post_conclusion_acceptance_period_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_dispute_post_conclusion_acceptance_period_V8.new_, + &m->basic.configuration_set_dispute_post_conclusion_acceptance_period_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6286,9 +6698,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13072: /* module 51 call 16 */ switch (itemIdx) { - case 0: /* configuration_set_dispute_max_spam_slots_V8 - new_ */; + case 0: /* configuration_set_dispute_max_spam_slots_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_dispute_max_spam_slots_V8.new_, + &m->basic.configuration_set_dispute_max_spam_slots_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6296,9 +6708,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13073: /* module 51 call 17 */ switch (itemIdx) { - case 0: /* configuration_set_dispute_conclusion_by_time_out_period_V8 - new_ */; + case 0: /* configuration_set_dispute_conclusion_by_time_out_period_V10 - new_ */; return _toStringBlockNumber( - &m->basic.configuration_set_dispute_conclusion_by_time_out_period_V8.new_, + &m->basic.configuration_set_dispute_conclusion_by_time_out_period_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6306,9 +6718,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13074: /* module 51 call 18 */ switch (itemIdx) { - case 0: /* configuration_set_no_show_slots_V8 - new_ */; + case 0: /* configuration_set_no_show_slots_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_no_show_slots_V8.new_, + &m->basic.configuration_set_no_show_slots_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6316,9 +6728,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13075: /* module 51 call 19 */ switch (itemIdx) { - case 0: /* configuration_set_n_delay_tranches_V8 - new_ */; + case 0: /* configuration_set_n_delay_tranches_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_n_delay_tranches_V8.new_, + &m->basic.configuration_set_n_delay_tranches_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6326,9 +6738,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13076: /* module 51 call 20 */ switch (itemIdx) { - case 0: /* configuration_set_zeroth_delay_tranche_width_V8 - new_ */; + case 0: /* configuration_set_zeroth_delay_tranche_width_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_zeroth_delay_tranche_width_V8.new_, + &m->basic.configuration_set_zeroth_delay_tranche_width_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6336,9 +6748,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13077: /* module 51 call 21 */ switch (itemIdx) { - case 0: /* configuration_set_needed_approvals_V8 - new_ */; + case 0: /* configuration_set_needed_approvals_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_needed_approvals_V8.new_, + &m->basic.configuration_set_needed_approvals_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6346,9 +6758,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13078: /* module 51 call 22 */ switch (itemIdx) { - case 0: /* configuration_set_relay_vrf_modulo_samples_V8 - new_ */; + case 0: /* configuration_set_relay_vrf_modulo_samples_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_relay_vrf_modulo_samples_V8.new_, + &m->basic.configuration_set_relay_vrf_modulo_samples_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6356,9 +6768,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13079: /* module 51 call 23 */ switch (itemIdx) { - case 0: /* configuration_set_max_upward_queue_count_V8 - new_ */; + case 0: /* configuration_set_max_upward_queue_count_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_upward_queue_count_V8.new_, + &m->basic.configuration_set_max_upward_queue_count_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6366,9 +6778,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13080: /* module 51 call 24 */ switch (itemIdx) { - case 0: /* configuration_set_max_upward_queue_size_V8 - new_ */; + case 0: /* configuration_set_max_upward_queue_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_upward_queue_size_V8.new_, + &m->basic.configuration_set_max_upward_queue_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6376,9 +6788,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13081: /* module 51 call 25 */ switch (itemIdx) { - case 0: /* configuration_set_max_downward_message_size_V8 - new_ */; + case 0: /* configuration_set_max_downward_message_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_downward_message_size_V8.new_, + &m->basic.configuration_set_max_downward_message_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6386,9 +6798,9 @@ parser_error_t _getMethod_ItemValue_V8( } 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_, + 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: @@ -6396,9 +6808,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13083: /* module 51 call 27 */ switch (itemIdx) { - case 0: /* configuration_set_max_upward_message_size_V8 - new_ */; + case 0: /* configuration_set_max_upward_message_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_upward_message_size_V8.new_, + &m->basic.configuration_set_max_upward_message_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6406,9 +6818,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13084: /* module 51 call 28 */ switch (itemIdx) { - case 0: /* configuration_set_max_upward_message_num_per_candidate_V8 - new_ */; + case 0: /* configuration_set_max_upward_message_num_per_candidate_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_max_upward_message_num_per_candidate_V8.new_, + &m->basic.configuration_set_max_upward_message_num_per_candidate_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6416,9 +6828,19 @@ parser_error_t _getMethod_ItemValue_V8( } case 13085: /* module 51 call 29 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_open_request_ttl_V8 - new_ */; + case 0: /* configuration_set_hrmp_open_request_ttl_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_open_request_ttl_V8.new_, + &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: @@ -6426,9 +6848,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13087: /* module 51 call 31 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_recipient_deposit_V8 - new_ */; + case 0: /* configuration_set_hrmp_recipient_deposit_V10 - new_ */; return _toStringBalance( - &m->basic.configuration_set_hrmp_recipient_deposit_V8.new_, + &m->basic.configuration_set_hrmp_recipient_deposit_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6436,9 +6858,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13088: /* module 51 call 32 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_capacity_V8 - new_ */; + case 0: /* configuration_set_hrmp_channel_max_capacity_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_capacity_V8.new_, + &m->basic.configuration_set_hrmp_channel_max_capacity_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6446,9 +6868,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13089: /* module 51 call 33 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_total_size_V8 - new_ */; + case 0: /* configuration_set_hrmp_channel_max_total_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_total_size_V8.new_, + &m->basic.configuration_set_hrmp_channel_max_total_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6456,9 +6878,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13090: /* module 51 call 34 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parachain_inbound_channels_V8 - new_ */; + case 0: /* configuration_set_hrmp_max_parachain_inbound_channels_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_max_parachain_inbound_channels_V8.new_, + &m->basic.configuration_set_hrmp_max_parachain_inbound_channels_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6466,9 +6888,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13091: /* module 51 call 35 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parathread_inbound_channels_V8 - new_ */; + case 0: /* configuration_set_hrmp_max_parathread_inbound_channels_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_max_parathread_inbound_channels_V8.new_, + &m->basic.configuration_set_hrmp_max_parathread_inbound_channels_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6476,9 +6898,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13092: /* module 51 call 36 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_channel_max_message_size_V8 - new_ */; + case 0: /* configuration_set_hrmp_channel_max_message_size_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_channel_max_message_size_V8.new_, + &m->basic.configuration_set_hrmp_channel_max_message_size_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6486,9 +6908,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13093: /* module 51 call 37 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parachain_outbound_channels_V8 - new_ */; + case 0: /* configuration_set_hrmp_max_parachain_outbound_channels_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_max_parachain_outbound_channels_V8.new_, + &m->basic.configuration_set_hrmp_max_parachain_outbound_channels_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6496,9 +6918,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13094: /* module 51 call 38 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_parathread_outbound_channels_V8 - new_ */; + case 0: /* configuration_set_hrmp_max_parathread_outbound_channels_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_max_parathread_outbound_channels_V8.new_, + &m->basic.configuration_set_hrmp_max_parathread_outbound_channels_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6506,9 +6928,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 13095: /* module 51 call 39 */ switch (itemIdx) { - case 0: /* configuration_set_hrmp_max_message_num_per_candidate_V8 - new_ */; + case 0: /* configuration_set_hrmp_max_message_num_per_candidate_V10 - new_ */; return _toStringu32( - &m->basic.configuration_set_hrmp_max_message_num_per_candidate_V8.new_, + &m->basic.configuration_set_hrmp_max_message_num_per_candidate_V10.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -6516,9 +6938,49 @@ parser_error_t _getMethod_ItemValue_V8( } 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_, + 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: @@ -6526,9 +6988,9 @@ parser_error_t _getMethod_ItemValue_V8( } case 14592: /* module 57 call 0 */ switch (itemIdx) { - case 0: /* initializer_force_approve_V8 - up_to */; + case 0: /* initializer_force_approve_V10 - up_to */; return _toStringBlockNumber( - &m->basic.initializer_force_approve_V8.up_to, + &m->basic.initializer_force_approve_V10.up_to, outValue, outValueLen, pageIdx, pageCount); default: @@ -6536,11 +6998,21 @@ parser_error_t _getMethod_ItemValue_V8( } 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; } @@ -6556,14 +7028,14 @@ parser_error_t _getMethod_ItemValue_V8( } case 18432: /* module 72 call 0 */ switch (itemIdx) { - case 0: /* auctions_new_auction_V8 - duration */; + case 0: /* auctions_new_auction_V10 - duration */; return _toStringCompactu32( - &m->basic.auctions_new_auction_V8.duration, + &m->basic.auctions_new_auction_V10.duration, outValue, outValueLen, pageIdx, pageCount); - case 1: /* auctions_new_auction_V8 - lease_period_index */; + case 1: /* auctions_new_auction_V10 - lease_period_index */; return _toStringCompactu32( - &m->basic.auctions_new_auction_V8.lease_period_index, + &m->basic.auctions_new_auction_V10.lease_period_index, outValue, outValueLen, pageIdx, pageCount); default: @@ -6571,29 +7043,29 @@ parser_error_t _getMethod_ItemValue_V8( } case 18433: /* module 72 call 1 */ switch (itemIdx) { - case 0: /* auctions_bid_V8 - para */; + case 0: /* auctions_bid_V10 - para */; return _toStringCompactu32( - &m->basic.auctions_bid_V8.para, + &m->basic.auctions_bid_V10.para, outValue, outValueLen, pageIdx, pageCount); - case 1: /* auctions_bid_V8 - auction_index */; + case 1: /* auctions_bid_V10 - auction_index */; return _toStringCompactu32( - &m->basic.auctions_bid_V8.auction_index, + &m->basic.auctions_bid_V10.auction_index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* auctions_bid_V8 - first_slot */; + case 2: /* auctions_bid_V10 - first_slot */; return _toStringCompactu32( - &m->basic.auctions_bid_V8.first_slot, + &m->basic.auctions_bid_V10.first_slot, outValue, outValueLen, pageIdx, pageCount); - case 3: /* auctions_bid_V8 - last_slot */; + case 3: /* auctions_bid_V10 - last_slot */; return _toStringCompactu32( - &m->basic.auctions_bid_V8.last_slot, + &m->basic.auctions_bid_V10.last_slot, outValue, outValueLen, pageIdx, pageCount); - case 4: /* auctions_bid_V8 - amount */; + case 4: /* auctions_bid_V10 - amount */; return _toStringCompactBalance( - &m->basic.auctions_bid_V8.amount, + &m->basic.auctions_bid_V10.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -6612,7 +7084,7 @@ parser_error_t _getMethod_ItemValue_V8( return parser_ok; } -bool _getMethod_ItemIsExpert_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) +bool _getMethod_ItemIsExpert_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -6644,7 +7116,7 @@ bool _getMethod_ItemIsExpert_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t item } } -bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) +bool _getMethod_IsNestingSupported_V10(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -6678,6 +7150,7 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 @@ -6753,6 +7226,10 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 @@ -6768,10 +7245,12 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 13056: // Configuration:Set validation upgrade frequency + 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 @@ -6785,6 +7264,7 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 @@ -6800,6 +7280,7 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 @@ -6810,6 +7291,10 @@ bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx) 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 diff --git a/app/src/substrate/substrate_dispatch_V8.h b/app/src/substrate/substrate_dispatch_V10.h similarity index 59% rename from app/src/substrate/substrate_dispatch_V8.h rename to app/src/substrate/substrate_dispatch_V10.h index 96152e37..11d32215 100644 --- a/app/src/substrate/substrate_dispatch_V8.h +++ b/app/src/substrate/substrate_dispatch_V10.h @@ -22,27 +22,27 @@ extern "C" { #include "parser_impl.h" #include "stdbool.h" #include "substrate_functions.h" -#include "substrate_functions_V8.h" +#include "substrate_functions_V10.h" #include #include -parser_error_t _readMethod_V8(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V8_t* method); +parser_error_t _readMethod_V10(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V10_t* method); -const char* _getMethod_ModuleName_V8(uint8_t moduleIdx); +const char* _getMethod_ModuleName_V10(uint8_t moduleIdx); -const char* _getMethod_Name_V8(uint8_t moduleIdx, uint8_t callIdx); +const char* _getMethod_Name_V10(uint8_t moduleIdx, uint8_t callIdx); -const char* _getMethod_ItemName_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); +const char* _getMethod_ItemName_V10(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); -uint8_t _getMethod_NumItems_V8(uint8_t moduleIdx, uint8_t callIdx); +uint8_t _getMethod_NumItems_V10(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, +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_V8(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); -bool _getMethod_IsNestingSupported_V8(uint8_t moduleIdx, uint8_t callIdx); +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 } 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_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.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_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_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_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 } diff --git a/app/src/substrate/substrate_types_V8.c b/app/src/substrate/substrate_types_V10.c similarity index 55% rename from app/src/substrate/substrate_types_V8.c rename to app/src/substrate/substrate_types_V10.c index a2b4b6d9..e7d9cfb9 100644 --- a/app/src/substrate/substrate_types_V8.c +++ b/app/src/substrate/substrate_types_V10.c @@ -16,7 +16,7 @@ #include "bignum.h" #include "coin.h" #include "parser_impl.h" -#include "substrate_dispatch_V8.h" +#include "substrate_dispatch_V10.h" #include "substrate_strings.h" #include @@ -24,186 +24,193 @@ #include #include -parser_error_t _readAccountId_V8(parser_context_t* c, pd_AccountId_V8_t* v) { +parser_error_t _readAccountId_V10(parser_context_t* c, pd_AccountId_V10_t* v) { GEN_DEF_READARRAY(32) } -parser_error_t _readAccountIndex_V8(parser_context_t* c, pd_AccountIndex_V8_t* v) +parser_error_t _readAccountIndex_V10(parser_context_t* c, pd_AccountIndex_V10_t* v) { - return _readUInt32(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; } -parser_error_t _readAccountVoteBalanceOf_V8(parser_context_t* c, pd_AccountVoteBalanceOf_V8_t* v) +parser_error_t _readAccountVoteBalanceOf_V10(parser_context_t* c, pd_AccountVoteBalanceOf_V10_t* v) { return parser_not_supported; } -parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V8(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v) +parser_error_t _readAuthorityIdasRuntimeAppPublicSignature_V10(parser_context_t* c, pd_AuthorityIdasRuntimeAppPublicSignature_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxEquivocationProofHashBlockNumber_V8(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V8_t* v) +parser_error_t _readBoxCallOrHashOfT_V10(parser_context_t* c, pd_BoxCallOrHashOfT_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxEquivocationProofHeader_V8(parser_context_t* c, pd_BoxEquivocationProofHeader_V8_t* v) +parser_error_t _readBoxEquivocationProofHashBlockNumber_V10(parser_context_t* c, pd_BoxEquivocationProofHashBlockNumber_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V8(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v) +parser_error_t _readBoxEquivocationProofHeader_V10(parser_context_t* c, pd_BoxEquivocationProofHeader_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxMultiLocation_V8(parser_context_t* c, pd_BoxMultiLocation_V8_t* v) +parser_error_t _readBoxIdentityInfoMaxAdditionalFields_V10(parser_context_t* c, pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxPalletsOrigin_V8(parser_context_t* c, pd_BoxPalletsOrigin_V8_t* v) +parser_error_t _readBoxMultiLocation_V10(parser_context_t* c, pd_BoxMultiLocation_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxRawSolutionSolutionOfT_V8(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V8_t* v) +parser_error_t _readBoxPalletsOrigin_V10(parser_context_t* c, pd_BoxPalletsOrigin_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxTasConfigIProposal_V8(parser_context_t* c, pd_BoxTasConfigIProposal_V8_t* v) +parser_error_t _readBoxRawSolutionSolutionOfT_V10(parser_context_t* c, pd_BoxRawSolutionSolutionOfT_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxVersionedMultiAssets_V8(parser_context_t* c, pd_BoxVersionedMultiAssets_V8_t* v) +parser_error_t _readBoxTasConfigIProposal_V10(parser_context_t* c, pd_BoxTasConfigIProposal_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxVersionedMultiLocation_V8(parser_context_t* c, pd_BoxVersionedMultiLocation_V8_t* v) +parser_error_t _readBoxVersionedMultiAssets_V10(parser_context_t* c, pd_BoxVersionedMultiAssets_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxVersionedXcmTasSysConfigCall_V8(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V8_t* v) +parser_error_t _readBoxVersionedMultiLocation_V10(parser_context_t* c, pd_BoxVersionedMultiLocation_V10_t* v) { return parser_not_supported; } -parser_error_t _readBoxVersionedXcmTuple_V8(parser_context_t* c, pd_BoxVersionedXcmTuple_V8_t* v) +parser_error_t _readBoxVersionedXcmTasSysConfigCall_V10(parser_context_t* c, pd_BoxVersionedXcmTasSysConfigCall_V10_t* v) { return parser_not_supported; } -parser_error_t _readCallHashOf_V8(parser_context_t* c, pd_CallHashOf_V8_t* v) { +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_V8(parser_context_t* c, pd_CompactAccountIndex_V8_t* v) +parser_error_t _readCompactAccountIndex_V10(parser_context_t* c, pd_CompactAccountIndex_V10_t* v) { return _readCompactInt(c, &v->value); } -parser_error_t _readCompactPerBill_V8(parser_context_t* c, pd_CompactPerBill_V8_t* v) +parser_error_t _readCompactPerBill_V10(parser_context_t* c, pd_CompactPerBill_V10_t* v) { return _readCompactInt(c, &v->value); } -parser_error_t _readConviction_V8(parser_context_t* c, pd_Conviction_V8_t* v) +parser_error_t _readConviction_V10(parser_context_t* c, pd_Conviction_V10_t* v) { - CHECK_INPUT() - + 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) { +parser_error_t _readEcdsaSignature_V10(parser_context_t* c, pd_EcdsaSignature_V10_t* v) { GEN_DEF_READARRAY(65) } -parser_error_t _readElectionScore_V8(parser_context_t* c, pd_ElectionScore_V8_t* v) +parser_error_t _readElectionScore_V10(parser_context_t* c, pd_ElectionScore_V10_t* v) { return parser_not_supported; } -parser_error_t _readEraIndex_V8(parser_context_t* c, pd_EraIndex_V8_t* v) +parser_error_t _readEraIndex_V10(parser_context_t* c, pd_EraIndex_V10_t* v) { - return _readUInt32(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; } -parser_error_t _readEthereumAddress_V8(parser_context_t* c, pd_EthereumAddress_V8_t* v) { +parser_error_t _readEthereumAddress_V10(parser_context_t* c, pd_EthereumAddress_V10_t* v) { GEN_DEF_READARRAY(20) } -parser_error_t _readHeadData_V8(parser_context_t* c, pd_HeadData_V8_t* v) +parser_error_t _readHeadData_V10(parser_context_t* c, pd_HeadData_V10_t* v) { return parser_not_supported; } -parser_error_t _readHeartbeatBlockNumber_V8(parser_context_t* c, pd_HeartbeatBlockNumber_V8_t* v) +parser_error_t _readHeartbeatBlockNumber_V10(parser_context_t* c, pd_HeartbeatBlockNumber_V10_t* v) { return parser_not_supported; } -parser_error_t _readHrmpChannelId_V8(parser_context_t* c, pd_HrmpChannelId_V8_t* v) +parser_error_t _readHrmpChannelId_V10(parser_context_t* c, pd_HrmpChannelId_V10_t* v) { return parser_not_supported; } -parser_error_t _readIdentityFields_V8(parser_context_t* c, pd_IdentityFields_V8_t* v) +parser_error_t _readIdentityFields_V10(parser_context_t* c, pd_IdentityFields_V10_t* v) { return parser_not_supported; } -parser_error_t _readJudgementBalanceOfT_V8(parser_context_t* c, pd_JudgementBalanceOfT_V8_t* v) +parser_error_t _readJudgementBalanceOfT_V10(parser_context_t* c, pd_JudgementBalanceOfT_V10_t* v) { return parser_not_supported; } -parser_error_t _readJudgement_V8(parser_context_t* c, pd_Judgement_V8_t* v) +parser_error_t _readJudgement_V10(parser_context_t* c, pd_Judgement_V10_t* v) { return parser_not_supported; } -parser_error_t _readKeyOwnerProof_V8(parser_context_t* c, pd_KeyOwnerProof_V8_t* v) +parser_error_t _readKeyOwnerProof_V10(parser_context_t* c, pd_KeyOwnerProof_V10_t* v) { return parser_not_supported; } -parser_error_t _readKeyValue_V8(parser_context_t* c, pd_KeyValue_V8_t* v) { +parser_error_t _readKeyValue_V10(parser_context_t* c, pd_KeyValue_V10_t* v) { GEN_DEF_READARRAY(32) } -parser_error_t _readKey_V8(parser_context_t* c, pd_Key_V8_t* v) { +parser_error_t _readKey_V10(parser_context_t* c, pd_Key_V10_t* v) { GEN_DEF_READARRAY(32) } -parser_error_t _readKeys_V8(parser_context_t* c, pd_Keys_V8_t* v) { +parser_error_t _readKeys_V10(parser_context_t* c, pd_Keys_V10_t* v) { GEN_DEF_READARRAY(6 * 32) } -parser_error_t _readLeasePeriodOfT_V8(parser_context_t* c, pd_LeasePeriodOfT_V8_t* v) +parser_error_t _readLeasePeriodOfT_V10(parser_context_t* c, pd_LeasePeriodOfT_V10_t* v) { return parser_not_supported; } -parser_error_t _readLookupasStaticLookupSource_V8(parser_context_t* c, pd_LookupasStaticLookupSource_V8_t* v) +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_V8(c, &v->id)) + CHECK_ERROR(_readAccountId_V10(c, &v->id)) break; case 1: // Index - CHECK_ERROR(_readCompactAccountIndex_V8(c, &v->index)) + CHECK_ERROR(_readCompactAccountIndex_V10(c, &v->index)) break; case 2: // Raw CHECK_ERROR(_readBytes(c, &v->raw)) @@ -219,27 +226,29 @@ parser_error_t _readLookupasStaticLookupSource_V8(parser_context_t* c, pd_Lookup return parser_ok; } -parser_error_t _readMemberCount_V8(parser_context_t* c, pd_MemberCount_V8_t* v) +parser_error_t _readMemberCount_V10(parser_context_t* c, pd_MemberCount_V10_t* v) { - return _readUInt32(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; } -parser_error_t _readMultiSignature_V8(parser_context_t* c, pd_MultiSignature_V8_t* v) +parser_error_t _readMultiSignature_V10(parser_context_t* c, pd_MultiSignature_V10_t* v) { return parser_not_supported; } -parser_error_t _readMultiSigner_V8(parser_context_t* c, pd_MultiSigner_V8_t* v) +parser_error_t _readMultiSigner_V10(parser_context_t* c, pd_MultiSigner_V10_t* v) { return parser_not_supported; } -parser_error_t _readNextConfigDescriptor_V8(parser_context_t* c, pd_NextConfigDescriptor_V8_t* v) +parser_error_t _readNextConfigDescriptor_V10(parser_context_t* c, pd_NextConfigDescriptor_V10_t* v) { return parser_not_supported; } -parser_error_t _readOpaqueCall_V8(parser_context_t* c, pd_OpaqueCall_V8_t* v) +parser_error_t _readOpaqueCall_V10(parser_context_t* c, pd_OpaqueCall_V10_t* v) { // Encoded as Byte[], array size comes first uint8_t size; @@ -247,274 +256,295 @@ parser_error_t _readOpaqueCall_V8(parser_context_t* c, pd_OpaqueCall_V8_t* v) return _readCall(c, &v->call); } -parser_error_t _readOverweightIndex_V8(parser_context_t* c, pd_OverweightIndex_V8_t* v) +parser_error_t _readOverweightIndex_V10(parser_context_t* c, pd_OverweightIndex_V10_t* v) { return parser_not_supported; } -parser_error_t _readParaId_V8(parser_context_t* c, pd_ParaId_V8_t* v) +parser_error_t _readParaId_V10(parser_context_t* c, pd_ParaId_V10_t* v) { return parser_not_supported; } -parser_error_t _readParachainsInherentDataHeader_V8(parser_context_t* c, pd_ParachainsInherentDataHeader_V8_t* v) +parser_error_t _readParachainsInherentDataHeader_V10(parser_context_t* c, pd_ParachainsInherentDataHeader_V10_t* v) { return parser_not_supported; } -parser_error_t _readPerbill_V8(parser_context_t* c, pd_Perbill_V8_t* v) +parser_error_t _readPerbill_V10(parser_context_t* c, pd_Perbill_V10_t* v) { - return _readUInt32(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; } -parser_error_t _readPercent_V8(parser_context_t* c, pd_Percent_V8_t* v) +parser_error_t _readPercent_V10(parser_context_t* c, pd_Percent_V10_t* v) { return _readCompactInt(c, &v->value); } -parser_error_t _readProxyType_V8(parser_context_t* c, pd_ProxyType_V8_t* v) +parser_error_t _readProxyType_V10(parser_context_t* c, pd_ProxyType_V10_t* v) { - CHECK_INPUT() - + 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) +parser_error_t _readPvfCheckStatement_V10(parser_context_t* c, pd_PvfCheckStatement_V10_t* v) { - return _readUInt32(c, &v->value); + return parser_not_supported; } -parser_error_t _readRegistrarIndex_V8(parser_context_t* c, pd_RegistrarIndex_V8_t* v) +parser_error_t _readReferendumIndex_V10(parser_context_t* c, pd_ReferendumIndex_V10_t* v) { - return _readUInt32(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; } -parser_error_t _readRenouncing_V8(parser_context_t* c, pd_Renouncing_V8_t* v) +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_V8(parser_context_t* c, pd_RewardDestination_V8_t* v) +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_V8(parser_context_t* c, pd_SessionIndex_V8_t* v) +parser_error_t _readSessionIndex_V10(parser_context_t* c, pd_SessionIndex_V10_t* v) { return _readUInt32(c, &v->value); } -parser_error_t _readSolutionOrSnapshotSize_V8(parser_context_t* c, pd_SolutionOrSnapshotSize_V8_t* v) +parser_error_t _readSolutionOrSnapshotSize_V10(parser_context_t* c, pd_SolutionOrSnapshotSize_V10_t* v) { return parser_not_supported; } -parser_error_t _readStatementKind_V8(parser_context_t* c, pd_StatementKind_V8_t* v) +parser_error_t _readStatementKind_V10(parser_context_t* c, pd_StatementKind_V10_t* v) { return parser_not_supported; } -parser_error_t _readSupportsAccountId_V8(parser_context_t* c, pd_SupportsAccountId_V8_t* v) +parser_error_t _readSupportsAccountId_V10(parser_context_t* c, pd_SupportsAccountId_V10_t* v) { return parser_not_supported; } -parser_error_t _readTimepoint_V8(parser_context_t* c, pd_Timepoint_V8_t* v) +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_V8(parser_context_t* c, pd_TupleAccountIdData_V8_t* v) +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 _readTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v) +parser_error_t _readValidationCodeHash_V10(parser_context_t* c, pd_ValidationCodeHash_V10_t* v) { return parser_not_supported; } -parser_error_t _readValidationCode_V8(parser_context_t* c, pd_ValidationCode_V8_t* v) +parser_error_t _readValidationCode_V10(parser_context_t* c, pd_ValidationCode_V10_t* v) { return parser_not_supported; } -parser_error_t _readValidatorPrefs_V8(parser_context_t* c, pd_ValidatorPrefs_V8_t* v) +parser_error_t _readValidatorPrefs_V10(parser_context_t* c, pd_ValidatorPrefs_V10_t* v) { CHECK_INPUT(); - CHECK_ERROR(_readCompactPerBill_V8(c, &v->commission)); + CHECK_ERROR(_readCompactPerBill_V10(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) +parser_error_t _readValidatorSignature_V10(parser_context_t* c, pd_ValidatorSignature_V10_t* v) { return parser_not_supported; } -parser_error_t _readWeightLimit_V8(parser_context_t* c, pd_WeightLimit_V8_t* v) +parser_error_t _readVestingInfoBalanceOfTBlockNumber_V10(parser_context_t* c, pd_VestingInfoBalanceOfTBlockNumber_V10_t* v) { - return _readUInt64(c, &v->value); + return parser_not_supported; } -parser_error_t _readWeight_V8(parser_context_t* c, pd_Weight_V8_t* v) +parser_error_t _readWeightLimit_V10(parser_context_t* c, pd_WeightLimit_V10_t* v) { - return _readUInt64(c, &v->value); + CHECK_INPUT(); + CHECK_ERROR(_readUInt64(c, &v->value)) + return parser_ok; } -parser_error_t _readXcmVersion_V8(parser_context_t* c, pd_XcmVersion_V8_t* v) +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_V8(parser_context_t* c, pd_schedulePeriodBlockNumber_V8_t* v) +parser_error_t _readschedulePeriodBlockNumber_V10(parser_context_t* c, pd_schedulePeriodBlockNumber_V10_t* v) { return parser_not_supported; } -parser_error_t _readschedulePriority_V8(parser_context_t* c, pd_schedulePriority_V8_t* v) +parser_error_t _readschedulePriority_V10(parser_context_t* c, pd_schedulePriority_V10_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 _readVecAccountId_V10(parser_context_t* c, pd_VecAccountId_V10_t* v) { + GEN_DEF_READVECTOR(AccountId_V10) } -parser_error_t _readVecKeyValue_V8(parser_context_t* c, pd_VecKeyValue_V8_t* v) { - GEN_DEF_READVECTOR(KeyValue_V8) +parser_error_t _readVecKeyValue_V10(parser_context_t* c, pd_VecKeyValue_V10_t* v) { + GEN_DEF_READVECTOR(KeyValue_V10) } -parser_error_t _readVecKey_V8(parser_context_t* c, pd_VecKey_V8_t* v) { - GEN_DEF_READVECTOR(Key_V8) +parser_error_t _readVecKey_V10(parser_context_t* c, pd_VecKey_V10_t* v) { + GEN_DEF_READVECTOR(Key_V10) } -parser_error_t _readVecLookupasStaticLookupSource_V8(parser_context_t* c, pd_VecLookupasStaticLookupSource_V8_t* v) { - GEN_DEF_READVECTOR(LookupasStaticLookupSource_V8) +parser_error_t _readVecLookupasStaticLookupSource_V10(parser_context_t* c, pd_VecLookupasStaticLookupSource_V10_t* v) { + GEN_DEF_READVECTOR(LookupasStaticLookupSource_V10) } -parser_error_t _readVecTupleAccountIdData_V8(parser_context_t* c, pd_VecTupleAccountIdData_V8_t* v) { - GEN_DEF_READVECTOR(TupleAccountIdData_V8) +parser_error_t _readVecTupleAccountIdData_V10(parser_context_t* c, pd_VecTupleAccountIdData_V10_t* v) { + GEN_DEF_READVECTOR(TupleAccountIdData_V10) } -parser_error_t _readOptionAccountId_V8(parser_context_t* c, pd_OptionAccountId_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readAccountId_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionElectionScore_V8(parser_context_t* c, pd_OptionElectionScore_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readElectionScore_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionMultiSignature_V8(parser_context_t* c, pd_OptionMultiSignature_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readMultiSignature_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionMultiSigner_V8(parser_context_t* c, pd_OptionMultiSigner_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readMultiSigner_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionPercent_V8(parser_context_t* c, pd_OptionPercent_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readPercent_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionProxyType_V8(parser_context_t* c, pd_OptionProxyType_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readProxyType_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionReferendumIndex_V8(parser_context_t* c, pd_OptionReferendumIndex_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readReferendumIndex_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionStatementKind_V8(parser_context_t* c, pd_OptionStatementKind_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readStatementKind_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionTimepoint_V8(parser_context_t* c, pd_OptionTimepoint_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readTimepoint_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionTupleBalanceOfTBalanceOfTBlockNumber_V8(parser_context_t* c, pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readTupleBalanceOfTBalanceOfTBlockNumber_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionXcmVersion_V8(parser_context_t* c, pd_OptionXcmVersion_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readXcmVersion_V10(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionschedulePeriodBlockNumber_V8(parser_context_t* c, pd_OptionschedulePeriodBlockNumber_V8_t* v) +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_V8(c, &v->contained)) + CHECK_ERROR(_readschedulePeriodBlockNumber_V10(c, &v->contained)) } return parser_ok; } @@ -523,8 +553,8 @@ parser_error_t _readOptionschedulePeriodBlockNumber_V8(parser_context_t* c, pd_O /////////////////////////////////// /////////////////////////////////// -parser_error_t _toStringAccountId_V8( - const pd_AccountId_V8_t* v, +parser_error_t _toStringAccountId_V10( + const pd_AccountId_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -533,8 +563,8 @@ parser_error_t _toStringAccountId_V8( return _toStringPubkeyAsAddress(v->_ptr, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringAccountIndex_V8( - const pd_AccountIndex_V8_t* v, +parser_error_t _toStringAccountIndex_V10( + const pd_AccountIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -543,8 +573,19 @@ parser_error_t _toStringAccountIndex_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringAccountVoteBalanceOf_V8( - const pd_AccountVoteBalanceOf_V8_t* v, +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, @@ -554,8 +595,8 @@ parser_error_t _toStringAccountVoteBalanceOf_V8( return parser_print_not_supported; } -parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V8( - const pd_AuthorityIdasRuntimeAppPublicSignature_V8_t* v, +parser_error_t _toStringBoxCallOrHashOfT_V10( + const pd_BoxCallOrHashOfT_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -565,8 +606,8 @@ parser_error_t _toStringAuthorityIdasRuntimeAppPublicSignature_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V8( - const pd_BoxEquivocationProofHashBlockNumber_V8_t* v, +parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V10( + const pd_BoxEquivocationProofHashBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -576,8 +617,8 @@ parser_error_t _toStringBoxEquivocationProofHashBlockNumber_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxEquivocationProofHeader_V8( - const pd_BoxEquivocationProofHeader_V8_t* v, +parser_error_t _toStringBoxEquivocationProofHeader_V10( + const pd_BoxEquivocationProofHeader_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -587,8 +628,8 @@ parser_error_t _toStringBoxEquivocationProofHeader_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V8( - const pd_BoxIdentityInfoMaxAdditionalFields_V8_t* v, +parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V10( + const pd_BoxIdentityInfoMaxAdditionalFields_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -598,8 +639,8 @@ parser_error_t _toStringBoxIdentityInfoMaxAdditionalFields_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxMultiLocation_V8( - const pd_BoxMultiLocation_V8_t* v, +parser_error_t _toStringBoxMultiLocation_V10( + const pd_BoxMultiLocation_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -609,8 +650,8 @@ parser_error_t _toStringBoxMultiLocation_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxPalletsOrigin_V8( - const pd_BoxPalletsOrigin_V8_t* v, +parser_error_t _toStringBoxPalletsOrigin_V10( + const pd_BoxPalletsOrigin_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -620,8 +661,8 @@ parser_error_t _toStringBoxPalletsOrigin_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxRawSolutionSolutionOfT_V8( - const pd_BoxRawSolutionSolutionOfT_V8_t* v, +parser_error_t _toStringBoxRawSolutionSolutionOfT_V10( + const pd_BoxRawSolutionSolutionOfT_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -631,8 +672,8 @@ parser_error_t _toStringBoxRawSolutionSolutionOfT_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxTasConfigIProposal_V8( - const pd_BoxTasConfigIProposal_V8_t* v, +parser_error_t _toStringBoxTasConfigIProposal_V10( + const pd_BoxTasConfigIProposal_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -642,8 +683,8 @@ parser_error_t _toStringBoxTasConfigIProposal_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxVersionedMultiAssets_V8( - const pd_BoxVersionedMultiAssets_V8_t* v, +parser_error_t _toStringBoxVersionedMultiAssets_V10( + const pd_BoxVersionedMultiAssets_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -653,8 +694,8 @@ parser_error_t _toStringBoxVersionedMultiAssets_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxVersionedMultiLocation_V8( - const pd_BoxVersionedMultiLocation_V8_t* v, +parser_error_t _toStringBoxVersionedMultiLocation_V10( + const pd_BoxVersionedMultiLocation_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -664,8 +705,8 @@ parser_error_t _toStringBoxVersionedMultiLocation_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V8( - const pd_BoxVersionedXcmTasSysConfigCall_V8_t* v, +parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V10( + const pd_BoxVersionedXcmTasSysConfigCall_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -675,8 +716,8 @@ parser_error_t _toStringBoxVersionedXcmTasSysConfigCall_V8( return parser_print_not_supported; } -parser_error_t _toStringBoxVersionedXcmTuple_V8( - const pd_BoxVersionedXcmTuple_V8_t* v, +parser_error_t _toStringBoxVersionedXcmTuple_V10( + const pd_BoxVersionedXcmTuple_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -686,8 +727,8 @@ parser_error_t _toStringBoxVersionedXcmTuple_V8( return parser_print_not_supported; } -parser_error_t _toStringCallHashOf_V8( - const pd_CallHashOf_V8_t* v, +parser_error_t _toStringCallHashOf_V10( + const pd_CallHashOf_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -695,8 +736,8 @@ parser_error_t _toStringCallHashOf_V8( GEN_DEF_TOSTRING_ARRAY(32) } -parser_error_t _toStringCompactAccountIndex_V8( - const pd_CompactAccountIndex_V8_t* v, +parser_error_t _toStringCompactAccountIndex_V10( + const pd_CompactAccountIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -705,8 +746,8 @@ parser_error_t _toStringCompactAccountIndex_V8( return _toStringCompactInt(&v->value, 0, "", "", outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringCompactPerBill_V8( - const pd_CompactPerBill_V8_t* v, +parser_error_t _toStringCompactPerBill_V10( + const pd_CompactPerBill_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -716,8 +757,8 @@ parser_error_t _toStringCompactPerBill_V8( return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringConviction_V8( - const pd_Conviction_V8_t* v, +parser_error_t _toStringConviction_V10( + const pd_Conviction_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -752,8 +793,8 @@ parser_error_t _toStringConviction_V8( return parser_ok; } -parser_error_t _toStringEcdsaSignature_V8( - const pd_EcdsaSignature_V8_t* v, +parser_error_t _toStringEcdsaSignature_V10( + const pd_EcdsaSignature_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -761,8 +802,8 @@ parser_error_t _toStringEcdsaSignature_V8( GEN_DEF_TOSTRING_ARRAY(65) } -parser_error_t _toStringElectionScore_V8( - const pd_ElectionScore_V8_t* v, +parser_error_t _toStringElectionScore_V10( + const pd_ElectionScore_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -772,8 +813,8 @@ parser_error_t _toStringElectionScore_V8( return parser_print_not_supported; } -parser_error_t _toStringEraIndex_V8( - const pd_EraIndex_V8_t* v, +parser_error_t _toStringEraIndex_V10( + const pd_EraIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -782,8 +823,8 @@ parser_error_t _toStringEraIndex_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringEthereumAddress_V8( - const pd_EthereumAddress_V8_t* v, +parser_error_t _toStringEthereumAddress_V10( + const pd_EthereumAddress_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -791,8 +832,8 @@ parser_error_t _toStringEthereumAddress_V8( GEN_DEF_TOSTRING_ARRAY(20) } -parser_error_t _toStringHeadData_V8( - const pd_HeadData_V8_t* v, +parser_error_t _toStringHeadData_V10( + const pd_HeadData_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -802,8 +843,8 @@ parser_error_t _toStringHeadData_V8( return parser_print_not_supported; } -parser_error_t _toStringHeartbeatBlockNumber_V8( - const pd_HeartbeatBlockNumber_V8_t* v, +parser_error_t _toStringHeartbeatBlockNumber_V10( + const pd_HeartbeatBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -813,8 +854,8 @@ parser_error_t _toStringHeartbeatBlockNumber_V8( return parser_print_not_supported; } -parser_error_t _toStringHrmpChannelId_V8( - const pd_HrmpChannelId_V8_t* v, +parser_error_t _toStringHrmpChannelId_V10( + const pd_HrmpChannelId_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -824,8 +865,8 @@ parser_error_t _toStringHrmpChannelId_V8( return parser_print_not_supported; } -parser_error_t _toStringIdentityFields_V8( - const pd_IdentityFields_V8_t* v, +parser_error_t _toStringIdentityFields_V10( + const pd_IdentityFields_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -835,8 +876,8 @@ parser_error_t _toStringIdentityFields_V8( return parser_print_not_supported; } -parser_error_t _toStringJudgementBalanceOfT_V8( - const pd_JudgementBalanceOfT_V8_t* v, +parser_error_t _toStringJudgementBalanceOfT_V10( + const pd_JudgementBalanceOfT_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -846,8 +887,8 @@ parser_error_t _toStringJudgementBalanceOfT_V8( return parser_print_not_supported; } -parser_error_t _toStringJudgement_V8( - const pd_Judgement_V8_t* v, +parser_error_t _toStringJudgement_V10( + const pd_Judgement_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -857,8 +898,8 @@ parser_error_t _toStringJudgement_V8( return parser_print_not_supported; } -parser_error_t _toStringKeyOwnerProof_V8( - const pd_KeyOwnerProof_V8_t* v, +parser_error_t _toStringKeyOwnerProof_V10( + const pd_KeyOwnerProof_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -868,8 +909,8 @@ parser_error_t _toStringKeyOwnerProof_V8( return parser_print_not_supported; } -parser_error_t _toStringKeyValue_V8( - const pd_KeyValue_V8_t* v, +parser_error_t _toStringKeyValue_V10( + const pd_KeyValue_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -880,8 +921,8 @@ parser_error_t _toStringKeyValue_V8( return parser_print_not_supported; } -parser_error_t _toStringKey_V8( - const pd_Key_V8_t* v, +parser_error_t _toStringKey_V10( + const pd_Key_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -892,8 +933,8 @@ parser_error_t _toStringKey_V8( return parser_print_not_supported; } -parser_error_t _toStringKeys_V8( - const pd_Keys_V8_t* v, +parser_error_t _toStringKeys_V10( + const pd_Keys_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -901,8 +942,8 @@ parser_error_t _toStringKeys_V8( GEN_DEF_TOSTRING_ARRAY(6 * 32) } -parser_error_t _toStringLeasePeriodOfT_V8( - const pd_LeasePeriodOfT_V8_t* v, +parser_error_t _toStringLeasePeriodOfT_V10( + const pd_LeasePeriodOfT_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -912,8 +953,8 @@ parser_error_t _toStringLeasePeriodOfT_V8( return parser_print_not_supported; } -parser_error_t _toStringLookupasStaticLookupSource_V8( - const pd_LookupasStaticLookupSource_V8_t* v, +parser_error_t _toStringLookupasStaticLookupSource_V10( + const pd_LookupasStaticLookupSource_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -922,10 +963,10 @@ parser_error_t _toStringLookupasStaticLookupSource_V8( CLEAN_AND_CHECK() switch (v->value) { case 0: // Id - CHECK_ERROR(_toStringAccountId_V8(&v->id, outValue, outValueLen, pageIdx, pageCount)) + CHECK_ERROR(_toStringAccountId_V10(&v->id, outValue, outValueLen, pageIdx, pageCount)) break; case 1: // Index - CHECK_ERROR(_toStringCompactAccountIndex_V8(&v->index, outValue, outValueLen, pageIdx, pageCount)) + CHECK_ERROR(_toStringCompactAccountIndex_V10(&v->index, outValue, outValueLen, pageIdx, pageCount)) break; case 2: // Raw CHECK_ERROR(_toStringBytes(&v->raw, outValue, outValueLen, pageIdx, pageCount)) @@ -945,8 +986,8 @@ parser_error_t _toStringLookupasStaticLookupSource_V8( return parser_ok; } -parser_error_t _toStringMemberCount_V8( - const pd_MemberCount_V8_t* v, +parser_error_t _toStringMemberCount_V10( + const pd_MemberCount_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -955,8 +996,8 @@ parser_error_t _toStringMemberCount_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringMultiSignature_V8( - const pd_MultiSignature_V8_t* v, +parser_error_t _toStringMultiSignature_V10( + const pd_MultiSignature_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -966,8 +1007,8 @@ parser_error_t _toStringMultiSignature_V8( return parser_print_not_supported; } -parser_error_t _toStringMultiSigner_V8( - const pd_MultiSigner_V8_t* v, +parser_error_t _toStringMultiSigner_V10( + const pd_MultiSigner_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -977,8 +1018,8 @@ parser_error_t _toStringMultiSigner_V8( return parser_print_not_supported; } -parser_error_t _toStringNextConfigDescriptor_V8( - const pd_NextConfigDescriptor_V8_t* v, +parser_error_t _toStringNextConfigDescriptor_V10( + const pd_NextConfigDescriptor_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -988,8 +1029,8 @@ parser_error_t _toStringNextConfigDescriptor_V8( return parser_print_not_supported; } -parser_error_t _toStringOpaqueCall_V8( - const pd_OpaqueCall_V8_t* v, +parser_error_t _toStringOpaqueCall_V10( + const pd_OpaqueCall_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -998,8 +1039,8 @@ parser_error_t _toStringOpaqueCall_V8( return _toStringCall(&v->call, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringOverweightIndex_V8( - const pd_OverweightIndex_V8_t* v, +parser_error_t _toStringOverweightIndex_V10( + const pd_OverweightIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1009,8 +1050,8 @@ parser_error_t _toStringOverweightIndex_V8( return parser_print_not_supported; } -parser_error_t _toStringParaId_V8( - const pd_ParaId_V8_t* v, +parser_error_t _toStringParaId_V10( + const pd_ParaId_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1020,8 +1061,8 @@ parser_error_t _toStringParaId_V8( return parser_print_not_supported; } -parser_error_t _toStringParachainsInherentDataHeader_V8( - const pd_ParachainsInherentDataHeader_V8_t* v, +parser_error_t _toStringParachainsInherentDataHeader_V10( + const pd_ParachainsInherentDataHeader_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1031,8 +1072,8 @@ parser_error_t _toStringParachainsInherentDataHeader_V8( return parser_print_not_supported; } -parser_error_t _toStringPerbill_V8( - const pd_Perbill_V8_t* v, +parser_error_t _toStringPerbill_V10( + const pd_Perbill_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1054,8 +1095,8 @@ parser_error_t _toStringPerbill_V8( return parser_ok; } -parser_error_t _toStringPercent_V8( - const pd_Percent_V8_t* v, +parser_error_t _toStringPercent_V10( + const pd_Percent_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1065,8 +1106,8 @@ parser_error_t _toStringPercent_V8( return _toStringCompactInt(&v->value, 7, "%", "", outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringProxyType_V8( - const pd_ProxyType_V8_t* v, +parser_error_t _toStringProxyType_V10( + const pd_ProxyType_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1095,8 +1136,19 @@ parser_error_t _toStringProxyType_V8( return parser_ok; } -parser_error_t _toStringReferendumIndex_V8( - const pd_ReferendumIndex_V8_t* v, +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, @@ -1105,8 +1157,8 @@ parser_error_t _toStringReferendumIndex_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringRegistrarIndex_V8( - const pd_RegistrarIndex_V8_t* v, +parser_error_t _toStringRegistrarIndex_V10( + const pd_RegistrarIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1115,8 +1167,8 @@ parser_error_t _toStringRegistrarIndex_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringRenouncing_V8( - const pd_Renouncing_V8_t* v, +parser_error_t _toStringRenouncing_V10( + const pd_Renouncing_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1126,8 +1178,8 @@ parser_error_t _toStringRenouncing_V8( return parser_print_not_supported; } -parser_error_t _toStringRewardDestination_V8( - const pd_RewardDestination_V8_t* v, +parser_error_t _toStringRewardDestination_V10( + const pd_RewardDestination_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1153,8 +1205,8 @@ parser_error_t _toStringRewardDestination_V8( return parser_ok; } -parser_error_t _toStringSessionIndex_V8( - const pd_SessionIndex_V8_t* v, +parser_error_t _toStringSessionIndex_V10( + const pd_SessionIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1163,8 +1215,8 @@ parser_error_t _toStringSessionIndex_V8( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringSolutionOrSnapshotSize_V8( - const pd_SolutionOrSnapshotSize_V8_t* v, +parser_error_t _toStringSolutionOrSnapshotSize_V10( + const pd_SolutionOrSnapshotSize_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1174,8 +1226,8 @@ parser_error_t _toStringSolutionOrSnapshotSize_V8( return parser_print_not_supported; } -parser_error_t _toStringStatementKind_V8( - const pd_StatementKind_V8_t* v, +parser_error_t _toStringStatementKind_V10( + const pd_StatementKind_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1185,8 +1237,8 @@ parser_error_t _toStringStatementKind_V8( return parser_print_not_supported; } -parser_error_t _toStringSupportsAccountId_V8( - const pd_SupportsAccountId_V8_t* v, +parser_error_t _toStringSupportsAccountId_V10( + const pd_SupportsAccountId_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1196,8 +1248,8 @@ parser_error_t _toStringSupportsAccountId_V8( return parser_print_not_supported; } -parser_error_t _toStringTimepoint_V8( - const pd_Timepoint_V8_t* v, +parser_error_t _toStringTimepoint_V10( + const pd_Timepoint_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1205,12 +1257,16 @@ parser_error_t _toStringTimepoint_V8( { CLEAN_AND_CHECK() - // Index + count pages + // 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 = pages[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; } @@ -1221,7 +1277,6 @@ parser_error_t _toStringTimepoint_V8( } pageIdx -= pages[0]; - ////// if (pageIdx < pages[1]) { CHECK_ERROR(_toStringu32(&v->index, outValue, outValueLen, pageIdx, &pages[1])) return parser_ok; @@ -1230,8 +1285,8 @@ parser_error_t _toStringTimepoint_V8( return parser_display_idx_out_of_range; } -parser_error_t _toStringTupleAccountIdData_V8( - const pd_TupleAccountIdData_V8_t* v, +parser_error_t _toStringTupleAccountIdData_V10( + const pd_TupleAccountIdData_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1241,8 +1296,8 @@ parser_error_t _toStringTupleAccountIdData_V8( return parser_print_not_supported; } -parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, +parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1252,8 +1307,8 @@ parser_error_t _toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( return parser_print_not_supported; } -parser_error_t _toStringValidationCode_V8( - const pd_ValidationCode_V8_t* v, +parser_error_t _toStringValidationCodeHash_V10( + const pd_ValidationCodeHash_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1263,17 +1318,29 @@ parser_error_t _toStringValidationCode_V8( return parser_print_not_supported; } -parser_error_t _toStringValidatorPrefs_V8( - const pd_ValidatorPrefs_V8_t* v, +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_V8(&v->commission, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringCompactPerBill_V10(&v->commission, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringbool(&v->blocked, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -1286,7 +1353,7 @@ parser_error_t _toStringValidatorPrefs_V8( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringCompactPerBill_V8(&v->commission, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringCompactPerBill_V10(&v->commission, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -1299,8 +1366,19 @@ parser_error_t _toStringValidatorPrefs_V8( return parser_display_idx_out_of_range; } -parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V8( - const pd_VestingInfoBalanceOfTBlockNumber_V8_t* v, +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, @@ -1310,8 +1388,8 @@ parser_error_t _toStringVestingInfoBalanceOfTBlockNumber_V8( return parser_print_not_supported; } -parser_error_t _toStringWeightLimit_V8( - const pd_WeightLimit_V8_t* v, +parser_error_t _toStringWeightLimit_V10( + const pd_WeightLimit_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1320,8 +1398,8 @@ parser_error_t _toStringWeightLimit_V8( return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringWeight_V8( - const pd_Weight_V8_t* v, +parser_error_t _toStringWeight_V10( + const pd_Weight_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1330,8 +1408,8 @@ parser_error_t _toStringWeight_V8( return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringXcmVersion_V8( - const pd_XcmVersion_V8_t* v, +parser_error_t _toStringXcmVersion_V10( + const pd_XcmVersion_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1341,8 +1419,8 @@ parser_error_t _toStringXcmVersion_V8( return parser_print_not_supported; } -parser_error_t _toStringschedulePeriodBlockNumber_V8( - const pd_schedulePeriodBlockNumber_V8_t* v, +parser_error_t _toStringschedulePeriodBlockNumber_V10( + const pd_schedulePeriodBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1352,8 +1430,8 @@ parser_error_t _toStringschedulePeriodBlockNumber_V8( return parser_print_not_supported; } -parser_error_t _toStringschedulePriority_V8( - const pd_schedulePriority_V8_t* v, +parser_error_t _toStringschedulePriority_V10( + const pd_schedulePriority_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1363,58 +1441,58 @@ parser_error_t _toStringschedulePriority_V8( return parser_print_not_supported; } -parser_error_t _toStringVecAccountId_V8( - const pd_VecAccountId_V8_t* v, +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_V8); + GEN_DEF_TOSTRING_VECTOR(AccountId_V10); } -parser_error_t _toStringVecKeyValue_V8( - const pd_VecKeyValue_V8_t* v, +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_V8); + GEN_DEF_TOSTRING_VECTOR(KeyValue_V10); } -parser_error_t _toStringVecKey_V8( - const pd_VecKey_V8_t* v, +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_V8); + GEN_DEF_TOSTRING_VECTOR(Key_V10); } -parser_error_t _toStringVecLookupasStaticLookupSource_V8( - const pd_VecLookupasStaticLookupSource_V8_t* v, +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_V8); + GEN_DEF_TOSTRING_VECTOR(LookupasStaticLookupSource_V10); } -parser_error_t _toStringVecTupleAccountIdData_V8( - const pd_VecTupleAccountIdData_V8_t* v, +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_V8); + GEN_DEF_TOSTRING_VECTOR(TupleAccountIdData_V10); } -parser_error_t _toStringOptionAccountId_V8( - const pd_OptionAccountId_V8_t* v, +parser_error_t _toStringOptionAccountId_V10( + const pd_OptionAccountId_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1424,7 +1502,7 @@ parser_error_t _toStringOptionAccountId_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringAccountId_V8( + CHECK_ERROR(_toStringAccountId_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1434,8 +1512,8 @@ parser_error_t _toStringOptionAccountId_V8( return parser_ok; } -parser_error_t _toStringOptionElectionScore_V8( - const pd_OptionElectionScore_V8_t* v, +parser_error_t _toStringOptionElectionScore_V10( + const pd_OptionElectionScore_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1445,7 +1523,7 @@ parser_error_t _toStringOptionElectionScore_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringElectionScore_V8( + CHECK_ERROR(_toStringElectionScore_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1455,8 +1533,8 @@ parser_error_t _toStringOptionElectionScore_V8( return parser_ok; } -parser_error_t _toStringOptionMultiSignature_V8( - const pd_OptionMultiSignature_V8_t* v, +parser_error_t _toStringOptionMultiSignature_V10( + const pd_OptionMultiSignature_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1466,7 +1544,7 @@ parser_error_t _toStringOptionMultiSignature_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringMultiSignature_V8( + CHECK_ERROR(_toStringMultiSignature_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1476,8 +1554,8 @@ parser_error_t _toStringOptionMultiSignature_V8( return parser_ok; } -parser_error_t _toStringOptionMultiSigner_V8( - const pd_OptionMultiSigner_V8_t* v, +parser_error_t _toStringOptionMultiSigner_V10( + const pd_OptionMultiSigner_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1487,7 +1565,7 @@ parser_error_t _toStringOptionMultiSigner_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringMultiSigner_V8( + CHECK_ERROR(_toStringMultiSigner_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1497,8 +1575,8 @@ parser_error_t _toStringOptionMultiSigner_V8( return parser_ok; } -parser_error_t _toStringOptionPercent_V8( - const pd_OptionPercent_V8_t* v, +parser_error_t _toStringOptionPercent_V10( + const pd_OptionPercent_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1508,7 +1586,7 @@ parser_error_t _toStringOptionPercent_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringPercent_V8( + CHECK_ERROR(_toStringPercent_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1518,8 +1596,8 @@ parser_error_t _toStringOptionPercent_V8( return parser_ok; } -parser_error_t _toStringOptionProxyType_V8( - const pd_OptionProxyType_V8_t* v, +parser_error_t _toStringOptionProxyType_V10( + const pd_OptionProxyType_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1529,7 +1607,7 @@ parser_error_t _toStringOptionProxyType_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringProxyType_V8( + CHECK_ERROR(_toStringProxyType_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1539,8 +1617,8 @@ parser_error_t _toStringOptionProxyType_V8( return parser_ok; } -parser_error_t _toStringOptionReferendumIndex_V8( - const pd_OptionReferendumIndex_V8_t* v, +parser_error_t _toStringOptionReferendumIndex_V10( + const pd_OptionReferendumIndex_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1550,7 +1628,7 @@ parser_error_t _toStringOptionReferendumIndex_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringReferendumIndex_V8( + CHECK_ERROR(_toStringReferendumIndex_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1560,8 +1638,8 @@ parser_error_t _toStringOptionReferendumIndex_V8( return parser_ok; } -parser_error_t _toStringOptionStatementKind_V8( - const pd_OptionStatementKind_V8_t* v, +parser_error_t _toStringOptionStatementKind_V10( + const pd_OptionStatementKind_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1571,7 +1649,7 @@ parser_error_t _toStringOptionStatementKind_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringStatementKind_V8( + CHECK_ERROR(_toStringStatementKind_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1581,8 +1659,8 @@ parser_error_t _toStringOptionStatementKind_V8( return parser_ok; } -parser_error_t _toStringOptionTimepoint_V8( - const pd_OptionTimepoint_V8_t* v, +parser_error_t _toStringOptionTimepoint_V10( + const pd_OptionTimepoint_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1592,7 +1670,7 @@ parser_error_t _toStringOptionTimepoint_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringTimepoint_V8( + CHECK_ERROR(_toStringTimepoint_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1602,8 +1680,8 @@ parser_error_t _toStringOptionTimepoint_V8( return parser_ok; } -parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V8( - const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t* v, +parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V10( + const pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1613,7 +1691,7 @@ parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringTupleBalanceOfTBalanceOfTBlockNumber_V8( + CHECK_ERROR(_toStringTupleBalanceOfTBalanceOfTBlockNumber_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1623,8 +1701,8 @@ parser_error_t _toStringOptionTupleBalanceOfTBalanceOfTBlockNumber_V8( return parser_ok; } -parser_error_t _toStringOptionXcmVersion_V8( - const pd_OptionXcmVersion_V8_t* v, +parser_error_t _toStringOptionXcmVersion_V10( + const pd_OptionXcmVersion_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1634,7 +1712,7 @@ parser_error_t _toStringOptionXcmVersion_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringXcmVersion_V8( + CHECK_ERROR(_toStringXcmVersion_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); @@ -1644,8 +1722,8 @@ parser_error_t _toStringOptionXcmVersion_V8( return parser_ok; } -parser_error_t _toStringOptionschedulePeriodBlockNumber_V8( - const pd_OptionschedulePeriodBlockNumber_V8_t* v, +parser_error_t _toStringOptionschedulePeriodBlockNumber_V10( + const pd_OptionschedulePeriodBlockNumber_V10_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1655,7 +1733,7 @@ parser_error_t _toStringOptionschedulePeriodBlockNumber_V8( *pageCount = 1; if (v->some > 0) { - CHECK_ERROR(_toStringschedulePeriodBlockNumber_V8( + CHECK_ERROR(_toStringschedulePeriodBlockNumber_V10( &v->contained, outValue, outValueLen, pageIdx, pageCount)); diff --git a/app/src/substrate/substrate_types_V8.h b/app/src/substrate/substrate_types_V10.h similarity index 64% rename from app/src/substrate/substrate_types_V8.h rename to app/src/substrate/substrate_types_V10.h index c854e89a..f04144c4 100644 --- a/app/src/substrate/substrate_types_V8.h +++ b/app/src/substrate/substrate_types_V10.h @@ -28,400 +28,420 @@ extern "C" { typedef struct { const uint8_t* _ptr; -} pd_AccountId_V8_t; +} pd_AccountId_V10_t; typedef struct { compactInt_t value; -} pd_CompactAccountIndex_V8_t; +} pd_CompactAccountIndex_V10_t; typedef struct { compactInt_t value; -} pd_CompactPerBill_V8_t; +} pd_CompactPerBill_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ElectionScore_V8_t; +} pd_ElectionScore_V10_t; typedef struct { const uint8_t* _ptr; -} pd_KeyValue_V8_t; +} pd_KeyValue_V10_t; typedef struct { const uint8_t* _ptr; -} pd_Key_V8_t; +} pd_Key_V10_t; typedef struct { uint8_t value; union { - pd_AccountId_V8_t id; - pd_CompactAccountIndex_V8_t index; + pd_AccountId_V10_t id; + pd_CompactAccountIndex_V10_t index; pd_Bytes_t raw; const uint8_t* _ptr; }; -} pd_LookupasStaticLookupSource_V8_t; +} pd_LookupasStaticLookupSource_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_MultiSignature_V8_t; +} pd_MultiSignature_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_MultiSigner_V8_t; +} pd_MultiSigner_V10_t; typedef struct { compactInt_t value; -} pd_Percent_V8_t; +} pd_Percent_V10_t; typedef struct { uint8_t value; -} pd_ProxyType_V8_t; +} pd_ProxyType_V10_t; typedef struct { uint32_t value; -} pd_ReferendumIndex_V8_t; +} pd_ReferendumIndex_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_StatementKind_V8_t; +} pd_StatementKind_V10_t; typedef struct { pd_BlockNumber_t height; uint32_t index; -} pd_Timepoint_V8_t; +} pd_Timepoint_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_TupleAccountIdData_V8_t; +} pd_TupleAccountIdData_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t; +} pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_XcmVersion_V8_t; +} pd_XcmVersion_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_schedulePeriodBlockNumber_V8_t; +} pd_schedulePeriodBlockNumber_V10_t; typedef struct { pd_Call_t call; -} pd_OpaqueCall_V8_t; +} pd_OpaqueCall_V10_t; typedef struct { uint8_t some; - pd_Timepoint_V8_t contained; -} pd_OptionTimepoint_V8_t; + pd_Timepoint_V10_t contained; +} pd_OptionTimepoint_V10_t; typedef struct { - pd_CompactPerBill_V8_t commission; + pd_CompactPerBill_V10_t commission; pd_bool_t blocked; -} pd_ValidatorPrefs_V8_t; +} pd_ValidatorPrefs_V10_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecLookupasStaticLookupSource_V8_t; +} pd_VecLookupasStaticLookupSource_V10_t; typedef struct { uint32_t value; -} pd_AccountIndex_V8_t; +} pd_AccountIndex_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_AccountVoteBalanceOf_V8_t; +} pd_AccountVoteBalanceOf_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_AuthorityIdasRuntimeAppPublicSignature_V8_t; +} pd_AuthorityIdasRuntimeAppPublicSignature_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxEquivocationProofHashBlockNumber_V8_t; +} pd_BoxCallOrHashOfT_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxEquivocationProofHeader_V8_t; +} pd_BoxEquivocationProofHashBlockNumber_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxIdentityInfoMaxAdditionalFields_V8_t; +} pd_BoxEquivocationProofHeader_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxMultiLocation_V8_t; +} pd_BoxIdentityInfoMaxAdditionalFields_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxPalletsOrigin_V8_t; +} pd_BoxMultiLocation_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxRawSolutionSolutionOfT_V8_t; +} pd_BoxPalletsOrigin_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxTasConfigIProposal_V8_t; +} pd_BoxRawSolutionSolutionOfT_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedMultiAssets_V8_t; +} pd_BoxTasConfigIProposal_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedMultiLocation_V8_t; +} pd_BoxVersionedMultiAssets_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedXcmTasSysConfigCall_V8_t; +} pd_BoxVersionedMultiLocation_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_BoxVersionedXcmTuple_V8_t; +} 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_V8_t; +} pd_CallHashOf_V10_t; typedef struct { uint8_t value; -} pd_Conviction_V8_t; +} pd_Conviction_V10_t; typedef struct { const uint8_t* _ptr; -} pd_EcdsaSignature_V8_t; +} pd_EcdsaSignature_V10_t; typedef struct { uint32_t value; -} pd_EraIndex_V8_t; +} pd_EraIndex_V10_t; typedef struct { const uint8_t* _ptr; -} pd_EthereumAddress_V8_t; +} pd_EthereumAddress_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HeadData_V8_t; +} pd_HeadData_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HeartbeatBlockNumber_V8_t; +} pd_HeartbeatBlockNumber_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_HrmpChannelId_V8_t; +} pd_HrmpChannelId_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_IdentityFields_V8_t; +} pd_IdentityFields_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_JudgementBalanceOfT_V8_t; +} pd_JudgementBalanceOfT_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_Judgement_V8_t; +} pd_Judgement_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_KeyOwnerProof_V8_t; +} pd_KeyOwnerProof_V10_t; typedef struct { const uint8_t* _ptr; -} pd_Keys_V8_t; +} pd_Keys_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_LeasePeriodOfT_V8_t; +} pd_LeasePeriodOfT_V10_t; typedef struct { uint32_t value; -} pd_MemberCount_V8_t; +} pd_MemberCount_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_NextConfigDescriptor_V8_t; +} pd_NextConfigDescriptor_V10_t; typedef struct { uint8_t some; - pd_AccountId_V8_t contained; -} pd_OptionAccountId_V8_t; + pd_AccountId_V10_t contained; +} pd_OptionAccountId_V10_t; typedef struct { uint8_t some; - pd_ElectionScore_V8_t contained; -} pd_OptionElectionScore_V8_t; + pd_ElectionScore_V10_t contained; +} pd_OptionElectionScore_V10_t; typedef struct { uint8_t some; - pd_MultiSignature_V8_t contained; -} pd_OptionMultiSignature_V8_t; + pd_MultiSignature_V10_t contained; +} pd_OptionMultiSignature_V10_t; typedef struct { uint8_t some; - pd_MultiSigner_V8_t contained; -} pd_OptionMultiSigner_V8_t; + pd_MultiSigner_V10_t contained; +} pd_OptionMultiSigner_V10_t; typedef struct { uint8_t some; - pd_Percent_V8_t contained; -} pd_OptionPercent_V8_t; + pd_Percent_V10_t contained; +} pd_OptionPercent_V10_t; typedef struct { uint8_t some; - pd_ProxyType_V8_t contained; -} pd_OptionProxyType_V8_t; + pd_ProxyType_V10_t contained; +} pd_OptionProxyType_V10_t; typedef struct { uint8_t some; - pd_ReferendumIndex_V8_t contained; -} pd_OptionReferendumIndex_V8_t; + pd_ReferendumIndex_V10_t contained; +} pd_OptionReferendumIndex_V10_t; typedef struct { uint8_t some; - pd_StatementKind_V8_t contained; -} pd_OptionStatementKind_V8_t; + pd_StatementKind_V10_t contained; +} pd_OptionStatementKind_V10_t; typedef struct { uint8_t some; - pd_TupleBalanceOfTBalanceOfTBlockNumber_V8_t contained; -} pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V8_t; + pd_TupleBalanceOfTBalanceOfTBlockNumber_V10_t contained; +} pd_OptionTupleBalanceOfTBalanceOfTBlockNumber_V10_t; typedef struct { uint8_t some; - pd_XcmVersion_V8_t contained; -} pd_OptionXcmVersion_V8_t; + pd_XcmVersion_V10_t contained; +} pd_OptionXcmVersion_V10_t; typedef struct { uint8_t some; - pd_schedulePeriodBlockNumber_V8_t contained; -} pd_OptionschedulePeriodBlockNumber_V8_t; + pd_schedulePeriodBlockNumber_V10_t contained; +} pd_OptionschedulePeriodBlockNumber_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_OverweightIndex_V8_t; +} pd_OverweightIndex_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ParaId_V8_t; +} pd_ParaId_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ParachainsInherentDataHeader_V8_t; +} pd_ParachainsInherentDataHeader_V10_t; typedef struct { uint32_t value; -} pd_Perbill_V8_t; +} 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_V8_t; +} pd_RegistrarIndex_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_Renouncing_V8_t; +} pd_Renouncing_V10_t; typedef struct { uint8_t value; -} pd_RewardDestination_V8_t; +} pd_RewardDestination_V10_t; typedef struct { uint32_t value; -} pd_SessionIndex_V8_t; +} 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_SolutionOrSnapshotSize_V8_t; +} pd_ValidationCodeHash_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_SupportsAccountId_V8_t; +} pd_ValidationCode_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_ValidationCode_V8_t; +} pd_ValidatorSignature_V10_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecAccountId_V8_t; +} pd_VecAccountId_V10_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecKeyValue_V8_t; +} pd_VecKeyValue_V10_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecKey_V8_t; +} pd_VecKey_V10_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecTupleAccountIdData_V8_t; +} pd_VecTupleAccountIdData_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_VestingInfoBalanceOfTBlockNumber_V8_t; +} pd_VestingInfoBalanceOfTBlockNumber_V10_t; typedef struct { uint64_t value; -} pd_WeightLimit_V8_t; +} pd_WeightLimit_V10_t; typedef struct { uint64_t value; -} pd_Weight_V8_t; +} pd_Weight_V10_t; typedef struct { // TODO: Not implemented uint8_t _NOT_IMPLEMENTED__DO_NOT_USE; -} pd_schedulePriority_V8_t; +} pd_schedulePriority_V10_t; #ifdef __cplusplus } 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 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) 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 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 diff --git a/docs/zondax.jpg b/docs/zondax.jpg deleted file mode 100644 index 8dbcff85..00000000 Binary files a/docs/zondax.jpg and /dev/null differ diff --git a/docs/zondax_dark.png b/docs/zondax_dark.png new file mode 100644 index 00000000..a6c22dfb Binary files /dev/null and b/docs/zondax_dark.png differ diff --git a/docs/zondax_light.png b/docs/zondax_light.png new file mode 100644 index 00000000..181ce342 Binary files /dev/null and b/docs/zondax_light.png differ 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", 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", diff --git a/tests_zemu/snapshots/s-mainmenu/00004.png b/tests_zemu/snapshots/s-mainmenu/00004.png index 00eaf775..52a0d9f1 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00004.png and b/tests_zemu/snapshots/s-mainmenu/00004.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00008.png b/tests_zemu/snapshots/s-mainmenu/00008.png index a4fbbac9..70a85494 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00008.png and b/tests_zemu/snapshots/s-mainmenu/00008.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00009.png b/tests_zemu/snapshots/s-mainmenu/00009.png index 70a85494..f61bb5f5 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00009.png and b/tests_zemu/snapshots/s-mainmenu/00009.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00010.png b/tests_zemu/snapshots/s-mainmenu/00010.png index f61bb5f5..52a0d9f1 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00010.png and b/tests_zemu/snapshots/s-mainmenu/00010.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00011.png b/tests_zemu/snapshots/s-mainmenu/00011.png index 00eaf775..296c2c4c 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00011.png and b/tests_zemu/snapshots/s-mainmenu/00011.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00012.png b/tests_zemu/snapshots/s-mainmenu/00012.png index 296c2c4c..505a1d3a 100644 Binary files a/tests_zemu/snapshots/s-mainmenu/00012.png and b/tests_zemu/snapshots/s-mainmenu/00012.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00001.png b/tests_zemu/snapshots/s-set-keys/00001.png index 5102301d..b84b96a5 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00001.png and b/tests_zemu/snapshots/s-set-keys/00001.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00002.png b/tests_zemu/snapshots/s-set-keys/00002.png index e4315908..a7376021 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00002.png and b/tests_zemu/snapshots/s-set-keys/00002.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00003.png b/tests_zemu/snapshots/s-set-keys/00003.png index e6cce807..c567f962 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00003.png and b/tests_zemu/snapshots/s-set-keys/00003.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00004.png b/tests_zemu/snapshots/s-set-keys/00004.png index b3eb281f..481712b9 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00004.png and b/tests_zemu/snapshots/s-set-keys/00004.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00005.png b/tests_zemu/snapshots/s-set-keys/00005.png index 42395937..f12d8eb4 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00005.png and b/tests_zemu/snapshots/s-set-keys/00005.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00006.png b/tests_zemu/snapshots/s-set-keys/00006.png index 6a16e351..032bd8e2 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00006.png and b/tests_zemu/snapshots/s-set-keys/00006.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00007.png b/tests_zemu/snapshots/s-set-keys/00007.png index 8f7d6338..5eb66404 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00007.png and b/tests_zemu/snapshots/s-set-keys/00007.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00008.png b/tests_zemu/snapshots/s-set-keys/00008.png index 848bb83c..ae4b2433 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00008.png and b/tests_zemu/snapshots/s-set-keys/00008.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00009.png b/tests_zemu/snapshots/s-set-keys/00009.png index 5b504037..e145bf54 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00009.png and b/tests_zemu/snapshots/s-set-keys/00009.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00010.png b/tests_zemu/snapshots/s-set-keys/00010.png index 6125ba47..fefc5c02 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00010.png and b/tests_zemu/snapshots/s-set-keys/00010.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00011.png b/tests_zemu/snapshots/s-set-keys/00011.png index 5eeca4ca..f850a36b 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00011.png and b/tests_zemu/snapshots/s-set-keys/00011.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00012.png b/tests_zemu/snapshots/s-set-keys/00012.png index 3219ab3a..4352e846 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00012.png and b/tests_zemu/snapshots/s-set-keys/00012.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00013.png b/tests_zemu/snapshots/s-set-keys/00013.png index 787c898a..b7fa1b90 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00013.png and b/tests_zemu/snapshots/s-set-keys/00013.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00014.png b/tests_zemu/snapshots/s-set-keys/00014.png index f3a14ca6..3cea3c79 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00014.png and b/tests_zemu/snapshots/s-set-keys/00014.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00015.png b/tests_zemu/snapshots/s-set-keys/00015.png index 46f9e480..87fdb454 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00015.png and b/tests_zemu/snapshots/s-set-keys/00015.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00016.png b/tests_zemu/snapshots/s-set-keys/00016.png index a4d490ea..006c26ab 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00016.png and b/tests_zemu/snapshots/s-set-keys/00016.png differ diff --git a/tests_zemu/snapshots/s-set-keys/00017.png b/tests_zemu/snapshots/s-set-keys/00017.png index dd32ea41..505a1d3a 100644 Binary files a/tests_zemu/snapshots/s-set-keys/00017.png and b/tests_zemu/snapshots/s-set-keys/00017.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject/00004.png b/tests_zemu/snapshots/s-show_address_reject/00004.png index 006c26ab..505a1d3a 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject/00004.png and b/tests_zemu/snapshots/s-show_address_reject/00004.png differ 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 7f2ca0d7..00000000 Binary files a/tests_zemu/snapshots/s-show_address_reject/00005.png and /dev/null differ 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 ef76636e..00000000 Binary files a/tests_zemu/snapshots/s-show_address_reject/00007.png and /dev/null differ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00004.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00004.png index 006c26ab..505a1d3a 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00004.png and b/tests_zemu/snapshots/s-show_address_reject_sr25519/00004.png differ 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 eabc4ec8..00000000 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00005.png and /dev/null differ 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 ef76636e..00000000 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00007.png and /dev/null differ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00008.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00008.png deleted file mode 100644 index 505a1d3a..00000000 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00008.png and /dev/null differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00001.png b/tests_zemu/snapshots/s-sign_basic_expert/00001.png index 2a9a9a07..96d935e4 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00001.png and b/tests_zemu/snapshots/s-sign_basic_expert/00001.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00002.png b/tests_zemu/snapshots/s-sign_basic_expert/00002.png index dbed7e49..5141a7a8 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00002.png and b/tests_zemu/snapshots/s-sign_basic_expert/00002.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00003.png b/tests_zemu/snapshots/s-sign_basic_expert/00003.png index 5a01e99d..ba5a7642 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00003.png and b/tests_zemu/snapshots/s-sign_basic_expert/00003.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00004.png b/tests_zemu/snapshots/s-sign_basic_expert/00004.png index 367960a9..80157d25 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00004.png and b/tests_zemu/snapshots/s-sign_basic_expert/00004.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00005.png b/tests_zemu/snapshots/s-sign_basic_expert/00005.png index ee31a8da..367960a9 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00005.png and b/tests_zemu/snapshots/s-sign_basic_expert/00005.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00006.png b/tests_zemu/snapshots/s-sign_basic_expert/00006.png index 6e8c3a45..e3b38158 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00006.png and b/tests_zemu/snapshots/s-sign_basic_expert/00006.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00007.png b/tests_zemu/snapshots/s-sign_basic_expert/00007.png index 258dd897..3cea3c79 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00007.png and b/tests_zemu/snapshots/s-sign_basic_expert/00007.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00008.png b/tests_zemu/snapshots/s-sign_basic_expert/00008.png index f90a44a6..87fdb454 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00008.png and b/tests_zemu/snapshots/s-sign_basic_expert/00008.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00009.png b/tests_zemu/snapshots/s-sign_basic_expert/00009.png index 317b3b42..258dd897 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00009.png and b/tests_zemu/snapshots/s-sign_basic_expert/00009.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00010.png b/tests_zemu/snapshots/s-sign_basic_expert/00010.png index 2818fe84..f90a44a6 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00010.png and b/tests_zemu/snapshots/s-sign_basic_expert/00010.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00011.png b/tests_zemu/snapshots/s-sign_basic_expert/00011.png index 006c26ab..317b3b42 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00011.png and b/tests_zemu/snapshots/s-sign_basic_expert/00011.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert/00012.png b/tests_zemu/snapshots/s-sign_basic_expert/00012.png index 505a1d3a..2818fe84 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert/00012.png and b/tests_zemu/snapshots/s-sign_basic_expert/00012.png differ 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 2a9a9a07..96d935e4 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00001.png and b/tests_zemu/snapshots/s-sign_basic_normal/00001.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00002.png b/tests_zemu/snapshots/s-sign_basic_normal/00002.png index dbed7e49..5141a7a8 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00002.png and b/tests_zemu/snapshots/s-sign_basic_normal/00002.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00003.png b/tests_zemu/snapshots/s-sign_basic_normal/00003.png index 5a01e99d..ba5a7642 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00003.png and b/tests_zemu/snapshots/s-sign_basic_normal/00003.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00004.png b/tests_zemu/snapshots/s-sign_basic_normal/00004.png index 6e8c3a45..80157d25 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00004.png and b/tests_zemu/snapshots/s-sign_basic_normal/00004.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00005.png b/tests_zemu/snapshots/s-sign_basic_normal/00005.png index 006c26ab..3cea3c79 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00005.png and b/tests_zemu/snapshots/s-sign_basic_normal/00005.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal/00006.png b/tests_zemu/snapshots/s-sign_basic_normal/00006.png index 505a1d3a..87fdb454 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal/00006.png and b/tests_zemu/snapshots/s-sign_basic_normal/00006.png differ 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 070b811f..6d9371a8 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00001.png and b/tests_zemu/snapshots/s-sign_large_nomination/00001.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00002.png b/tests_zemu/snapshots/s-sign_large_nomination/00002.png index 374189e3..a4da0ec3 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00002.png and b/tests_zemu/snapshots/s-sign_large_nomination/00002.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00003.png b/tests_zemu/snapshots/s-sign_large_nomination/00003.png index f4e5642c..dc22410e 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00003.png and b/tests_zemu/snapshots/s-sign_large_nomination/00003.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00004.png b/tests_zemu/snapshots/s-sign_large_nomination/00004.png index 67744c10..866a5c2f 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00004.png and b/tests_zemu/snapshots/s-sign_large_nomination/00004.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00005.png b/tests_zemu/snapshots/s-sign_large_nomination/00005.png index 6e8c3a45..2bbafd5a 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00005.png and b/tests_zemu/snapshots/s-sign_large_nomination/00005.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00006.png b/tests_zemu/snapshots/s-sign_large_nomination/00006.png index 006c26ab..44e3b8b1 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00006.png and b/tests_zemu/snapshots/s-sign_large_nomination/00006.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00007.png b/tests_zemu/snapshots/s-sign_large_nomination/00007.png index 505a1d3a..01dbf26a 100644 Binary files a/tests_zemu/snapshots/s-sign_large_nomination/00007.png and b/tests_zemu/snapshots/s-sign_large_nomination/00007.png differ 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 00000000..d99a5ea7 Binary files /dev/null and b/tests_zemu/snapshots/s-sign_large_nomination/00008.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00009.png b/tests_zemu/snapshots/s-sign_large_nomination/00009.png new file mode 100644 index 00000000..3cea3c79 Binary files /dev/null and b/tests_zemu/snapshots/s-sign_large_nomination/00009.png differ diff --git a/tests_zemu/snapshots/s-sign_large_nomination/00010.png b/tests_zemu/snapshots/s-sign_large_nomination/00010.png new file mode 100644 index 00000000..87fdb454 Binary files /dev/null and b/tests_zemu/snapshots/s-sign_large_nomination/00010.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00006.png b/tests_zemu/snapshots/s-sign_large_nomination/00011.png similarity index 100% rename from tests_zemu/snapshots/s-show_address_reject_sr25519/00006.png rename to tests_zemu/snapshots/s-sign_large_nomination/00011.png diff --git a/tests_zemu/snapshots/s-set-keys/00019.png b/tests_zemu/snapshots/s-sign_large_nomination/00012.png similarity index 100% rename from tests_zemu/snapshots/s-set-keys/00019.png rename to tests_zemu/snapshots/s-sign_large_nomination/00012.png diff --git a/tests_zemu/snapshots/x-mainmenu/00004.png b/tests_zemu/snapshots/x-mainmenu/00004.png index 712eec41..7a12cffd 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00004.png and b/tests_zemu/snapshots/x-mainmenu/00004.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00008.png b/tests_zemu/snapshots/x-mainmenu/00008.png index 3922fb6c..86e715d1 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00008.png and b/tests_zemu/snapshots/x-mainmenu/00008.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00009.png b/tests_zemu/snapshots/x-mainmenu/00009.png index 86e715d1..1adff7ee 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00009.png and b/tests_zemu/snapshots/x-mainmenu/00009.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00010.png b/tests_zemu/snapshots/x-mainmenu/00010.png index 1adff7ee..7a12cffd 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00010.png and b/tests_zemu/snapshots/x-mainmenu/00010.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00011.png b/tests_zemu/snapshots/x-mainmenu/00011.png index 712eec41..e10e0049 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00011.png and b/tests_zemu/snapshots/x-mainmenu/00011.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00012.png b/tests_zemu/snapshots/x-mainmenu/00012.png index e10e0049..81ae2b72 100644 Binary files a/tests_zemu/snapshots/x-mainmenu/00012.png and b/tests_zemu/snapshots/x-mainmenu/00012.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00001.png b/tests_zemu/snapshots/x-set-keys/00001.png index bbfd1fc1..b67f82c5 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00001.png and b/tests_zemu/snapshots/x-set-keys/00001.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00002.png b/tests_zemu/snapshots/x-set-keys/00002.png index 8b2ab4d3..74d31a5d 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00002.png and b/tests_zemu/snapshots/x-set-keys/00002.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00003.png b/tests_zemu/snapshots/x-set-keys/00003.png index 7c5b9554..2bdf3da5 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00003.png and b/tests_zemu/snapshots/x-set-keys/00003.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00004.png b/tests_zemu/snapshots/x-set-keys/00004.png index ad15a88f..2b19ee33 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00004.png and b/tests_zemu/snapshots/x-set-keys/00004.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00005.png b/tests_zemu/snapshots/x-set-keys/00005.png index 0716f831..9381536e 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00005.png and b/tests_zemu/snapshots/x-set-keys/00005.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00006.png b/tests_zemu/snapshots/x-set-keys/00006.png index edf7b929..a6b23c47 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00006.png and b/tests_zemu/snapshots/x-set-keys/00006.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00007.png b/tests_zemu/snapshots/x-set-keys/00007.png index 2660b83e..19edca8a 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00007.png and b/tests_zemu/snapshots/x-set-keys/00007.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00008.png b/tests_zemu/snapshots/x-set-keys/00008.png index 160bc679..81d5b71a 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00008.png and b/tests_zemu/snapshots/x-set-keys/00008.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00009.png b/tests_zemu/snapshots/x-set-keys/00009.png index c24b652b..ec5fcd08 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00009.png and b/tests_zemu/snapshots/x-set-keys/00009.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00010.png b/tests_zemu/snapshots/x-set-keys/00010.png index cade37e8..9aac67d5 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00010.png and b/tests_zemu/snapshots/x-set-keys/00010.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00011.png b/tests_zemu/snapshots/x-set-keys/00011.png index f5212356..aa6b3f9f 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00011.png and b/tests_zemu/snapshots/x-set-keys/00011.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00012.png b/tests_zemu/snapshots/x-set-keys/00012.png index 2872458a..1e4be699 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00012.png and b/tests_zemu/snapshots/x-set-keys/00012.png differ diff --git a/tests_zemu/snapshots/x-set-keys/00013.png b/tests_zemu/snapshots/x-set-keys/00013.png index 58c69747..81ae2b72 100644 Binary files a/tests_zemu/snapshots/x-set-keys/00013.png and b/tests_zemu/snapshots/x-set-keys/00013.png differ diff --git a/tests_zemu/snapshots/x-show_address/00001.png b/tests_zemu/snapshots/x-show_address/00001.png index dea87ae3..c1fcf03d 100644 Binary files a/tests_zemu/snapshots/x-show_address/00001.png and b/tests_zemu/snapshots/x-show_address/00001.png differ diff --git a/tests_zemu/snapshots/x-show_address_reject/00001.png b/tests_zemu/snapshots/x-show_address_reject/00001.png index dea87ae3..c1fcf03d 100644 Binary files a/tests_zemu/snapshots/x-show_address_reject/00001.png and b/tests_zemu/snapshots/x-show_address_reject/00001.png differ diff --git a/tests_zemu/snapshots/x-show_address_reject/00004.png b/tests_zemu/snapshots/x-show_address_reject/00004.png index 1e4be699..81ae2b72 100644 Binary files a/tests_zemu/snapshots/x-show_address_reject/00004.png and b/tests_zemu/snapshots/x-show_address_reject/00004.png differ 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 dea87ae3..00000000 Binary files a/tests_zemu/snapshots/x-show_address_reject/00005.png and /dev/null differ diff --git a/tests_zemu/snapshots/x-show_address_reject/00007.png b/tests_zemu/snapshots/x-show_address_reject/00007.png deleted file mode 100644 index d9b5efc5..00000000 Binary files a/tests_zemu/snapshots/x-show_address_reject/00007.png and /dev/null differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00001.png b/tests_zemu/snapshots/x-sign_basic_expert/00001.png index 3b59abd7..dd500bf2 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00001.png and b/tests_zemu/snapshots/x-sign_basic_expert/00001.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00002.png b/tests_zemu/snapshots/x-sign_basic_expert/00002.png index 7248ef5b..666abde0 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00002.png and b/tests_zemu/snapshots/x-sign_basic_expert/00002.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00003.png b/tests_zemu/snapshots/x-sign_basic_expert/00003.png index 9d49c168..dd141cb8 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00003.png and b/tests_zemu/snapshots/x-sign_basic_expert/00003.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00004.png b/tests_zemu/snapshots/x-sign_basic_expert/00004.png index 44c82da1..cd304eb9 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00004.png and b/tests_zemu/snapshots/x-sign_basic_expert/00004.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00005.png b/tests_zemu/snapshots/x-sign_basic_expert/00005.png index e37de40d..30276c34 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00005.png and b/tests_zemu/snapshots/x-sign_basic_expert/00005.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00006.png b/tests_zemu/snapshots/x-sign_basic_expert/00006.png index df2f1d51..b18c07ca 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00006.png and b/tests_zemu/snapshots/x-sign_basic_expert/00006.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00007.png b/tests_zemu/snapshots/x-sign_basic_expert/00007.png index 3be69375..9aac67d5 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00007.png and b/tests_zemu/snapshots/x-sign_basic_expert/00007.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00008.png b/tests_zemu/snapshots/x-sign_basic_expert/00008.png index 974b4585..aa6b3f9f 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00008.png and b/tests_zemu/snapshots/x-sign_basic_expert/00008.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00009.png b/tests_zemu/snapshots/x-sign_basic_expert/00009.png index f8d8c4fc..a780e255 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00009.png and b/tests_zemu/snapshots/x-sign_basic_expert/00009.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00010.png b/tests_zemu/snapshots/x-sign_basic_expert/00010.png index af0b9a26..37c45c00 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00010.png and b/tests_zemu/snapshots/x-sign_basic_expert/00010.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00011.png b/tests_zemu/snapshots/x-sign_basic_expert/00011.png index 1e4be699..23f3ddf7 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00011.png and b/tests_zemu/snapshots/x-sign_basic_expert/00011.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_expert/00012.png b/tests_zemu/snapshots/x-sign_basic_expert/00012.png index 81ae2b72..f8e2e170 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_expert/00012.png and b/tests_zemu/snapshots/x-sign_basic_expert/00012.png differ 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 3b59abd7..dd500bf2 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00001.png and b/tests_zemu/snapshots/x-sign_basic_normal/00001.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00002.png b/tests_zemu/snapshots/x-sign_basic_normal/00002.png index 7248ef5b..666abde0 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00002.png and b/tests_zemu/snapshots/x-sign_basic_normal/00002.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00003.png b/tests_zemu/snapshots/x-sign_basic_normal/00003.png index 9d49c168..dd141cb8 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00003.png and b/tests_zemu/snapshots/x-sign_basic_normal/00003.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00004.png b/tests_zemu/snapshots/x-sign_basic_normal/00004.png index df2f1d51..cd304eb9 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00004.png and b/tests_zemu/snapshots/x-sign_basic_normal/00004.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00005.png b/tests_zemu/snapshots/x-sign_basic_normal/00005.png index 1e4be699..9aac67d5 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00005.png and b/tests_zemu/snapshots/x-sign_basic_normal/00005.png differ diff --git a/tests_zemu/snapshots/x-sign_basic_normal/00006.png b/tests_zemu/snapshots/x-sign_basic_normal/00006.png index 81ae2b72..aa6b3f9f 100644 Binary files a/tests_zemu/snapshots/x-sign_basic_normal/00006.png and b/tests_zemu/snapshots/x-sign_basic_normal/00006.png differ 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 951f157b..db3406ed 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00001.png and b/tests_zemu/snapshots/x-sign_large_nomination/00001.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00002.png b/tests_zemu/snapshots/x-sign_large_nomination/00002.png index cf0b0630..7a2ba7f8 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00002.png and b/tests_zemu/snapshots/x-sign_large_nomination/00002.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00003.png b/tests_zemu/snapshots/x-sign_large_nomination/00003.png index 9a44f5b2..e3808831 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00003.png and b/tests_zemu/snapshots/x-sign_large_nomination/00003.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00004.png b/tests_zemu/snapshots/x-sign_large_nomination/00004.png index df2f1d51..f653fff1 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00004.png and b/tests_zemu/snapshots/x-sign_large_nomination/00004.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00005.png b/tests_zemu/snapshots/x-sign_large_nomination/00005.png index 1e4be699..67135d53 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00005.png and b/tests_zemu/snapshots/x-sign_large_nomination/00005.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00006.png b/tests_zemu/snapshots/x-sign_large_nomination/00006.png index 81ae2b72..9aac67d5 100644 Binary files a/tests_zemu/snapshots/x-sign_large_nomination/00006.png and b/tests_zemu/snapshots/x-sign_large_nomination/00006.png differ diff --git a/tests_zemu/snapshots/x-sign_large_nomination/00007.png b/tests_zemu/snapshots/x-sign_large_nomination/00007.png new file mode 100644 index 00000000..aa6b3f9f Binary files /dev/null and b/tests_zemu/snapshots/x-sign_large_nomination/00007.png differ 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 00000000..1e4be699 Binary files /dev/null and b/tests_zemu/snapshots/x-sign_large_nomination/00008.png differ 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 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/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 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' +