diff --git a/.github/workflows/guidelines_enforcer.yml b/.github/workflows/guidelines_enforcer.yml index 98fce17d..451e9403 100644 --- a/.github/workflows/guidelines_enforcer.yml +++ b/.github/workflows/guidelines_enforcer.yml @@ -19,27 +19,6 @@ on: pull_request: jobs: - setup_and_install: - name: Setup Python and Install Dependencies - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v5 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - - name: Create and activate virtual environment - run: | - python -m venv venv - source venv/bin/activate - - name: Install dependencies - run: | - pip install --upgrade pip - make deps - guidelines_enforcer: name: Call Ledger guidelines_enforcer - needs: setup_and_install - uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_guidelines_enforcer.yml@v1 - with: - python-version: '3.10' + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_guidelines_enforcer.yml@v1 \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c697b0fb..0486d986 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -84,16 +84,6 @@ jobs: run: | SUBSTRATE_PARSER_FULL=1 SUPPORT_SR25519=1 make - size_nano_s: - needs: build_ledger - runs-on: ubuntu-latest - env: - NANOS_LIMIT_SIZE: 136 - steps: - - run: | - echo "LNS app size: ${{needs.build_ledger.outputs.size}} KiB" - [ ${{needs.build_ledger.outputs.size}} -le $NANOS_LIMIT_SIZE ] - test_zemu: runs-on: ubuntu-latest steps: @@ -126,77 +116,90 @@ jobs: name: snapshots-tmp path: tests_zemu/snapshots-tmp/ - build_package_nanos: - needs: [configure, build, build_ledger, test_zemu] - if: ${{ github.ref == 'refs/heads/main' }} - runs-on: ubuntu-latest - container: - image: zondax/ledger-app-builder:latest - options: --user ${{ needs.configure.outputs.uid_gid }} - env: - BOLOS_SDK: /opt/nanos-secure-sdk - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: true - - name: Install deps - run: pip install ledgerblue +# Comment out nanoS build, the device is not supported anymore. +# The github workflow for the latest supported version is running in nanos.yml - - name: Build NanoS - shell: bash -l {0} - run: | - make SUBSTRATE_PARSER_FULL=0 PRODUCTION_BUILD=0 - mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos.sh - - name: Set tag - id: nanos_light - run: echo "tag_name=$(./app/pkg/installer_nanos.sh version)" >> $GITHUB_OUTPUT - - name: Create or Update Release (1) - id: create_release_0 - uses: softprops/action-gh-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - files: ./app/pkg/installer_nanos.sh - tag_name: ${{ steps.nanos_light.outputs.tag_name }} - draft: false - prerelease: false +# size_nano_s: +# needs: build_ledger +# runs-on: ubuntu-latest +# env: +# NANOS_LIMIT_SIZE: 136 +# steps: +# - run: | +# echo "LNS app size: ${{needs.build_ledger.outputs.size}} KiB" +# [ ${{needs.build_ledger.outputs.size}} -le $NANOS_LIMIT_SIZE ] - build_package_nanos_xl: - needs: [configure, build, build_ledger, test_zemu] - if: ${{ github.ref == 'refs/heads/main' }} - runs-on: ubuntu-latest - container: - image: zondax/ledger-app-builder:latest - options: --user ${{ needs.configure.outputs.uid_gid }} - env: - BOLOS_SDK: /opt/nanos-secure-sdk - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: true - - name: Install deps - run: pip install ledgerblue +# build_package_nanos: +# needs: [configure, build, build_ledger, test_zemu] +# if: ${{ github.ref == 'refs/heads/main' }} +# runs-on: ubuntu-latest +# container: +# image: zondax/ledger-app-builder:latest +# options: --user ${{ needs.configure.outputs.uid_gid }} +# env: +# BOLOS_SDK: /opt/nanos-secure-sdk +# steps: +# - name: Checkout +# uses: actions/checkout@v4 +# with: +# submodules: true +# - name: Install deps +# run: pip install ledgerblue +# +# - name: Build NanoS +# shell: bash -l {0} +# run: | +# make SUBSTRATE_PARSER_FULL=0 PRODUCTION_BUILD=0 +# mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos.sh +# - name: Set tag +# id: nanos_light +# run: echo "tag_name=$(./app/pkg/installer_nanos.sh version)" >> $GITHUB_OUTPUT +# - name: Create or Update Release (1) +# id: create_release_0 +# uses: softprops/action-gh-release@v1 +# env: +# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token +# with: +# files: ./app/pkg/installer_nanos.sh +# tag_name: ${{ steps.nanos_light.outputs.tag_name }} +# draft: false +# prerelease: false - - name: Build NanoS XL - shell: bash -l {0} - run: | - make SUBSTRATE_PARSER_FULL=1 PRODUCTION_BUILD=0 - mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos_xl.sh - - name: Set tag - id: nanos_xl - run: echo "tag_name=$(./app/pkg/installer_nanos_xl.sh version)" >> $GITHUB_OUTPUT - - name: Update Release - id: update_release_1 - uses: softprops/action-gh-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - files: ./app/pkg/installer_nanos_xl.sh - tag_name: ${{ steps.nanos_xl.outputs.tag_name }} - draft: false - prerelease: false +# build_package_nanos_xl: +# needs: [configure, build, build_ledger, test_zemu] +# if: ${{ github.ref == 'refs/heads/main' }} +# runs-on: ubuntu-latest +# container: +# image: zondax/ledger-app-builder:latest +# options: --user ${{ needs.configure.outputs.uid_gid }} +# env: +# BOLOS_SDK: /opt/nanos-secure-sdk +# steps: +# - name: Checkout +# uses: actions/checkout@v4 +# with: +# submodules: true +# - name: Install deps +# run: pip install ledgerblue +# +# - name: Build NanoS XL +# shell: bash -l {0} +# run: | +# make SUBSTRATE_PARSER_FULL=1 PRODUCTION_BUILD=0 +# mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos_xl.sh +# - name: Set tag +# id: nanos_xl +# run: echo "tag_name=$(./app/pkg/installer_nanos_xl.sh version)" >> $GITHUB_OUTPUT +# - name: Update Release +# id: update_release_1 +# uses: softprops/action-gh-release@v1 +# env: +# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token +# with: +# files: ./app/pkg/installer_nanos_xl.sh +# tag_name: ${{ steps.nanos_xl.outputs.tag_name }} +# draft: false +# prerelease: false build_package_nanosp: needs: [configure, build, build_ledger, test_zemu] diff --git a/.github/workflows/nanos.yml b/.github/workflows/nanos.yml new file mode 100644 index 00000000..0530a392 --- /dev/null +++ b/.github/workflows/nanos.yml @@ -0,0 +1,140 @@ +name: Build_NanoS +on: + workflow_dispatch: + push: + pull_request: + branches: + - main + - develop + - master # for safety reasons + - dev # for safety reasons + +jobs: + configure: + runs-on: ubuntu-latest + outputs: + uid_gid: ${{ steps.get-user.outputs.uid_gid }} + steps: + - id: get-user + run: echo "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT + + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: 'v104.63001.3' + submodules: true + - name: Install deps + run: | + python -m venv venv + source venv/bin/activate + make deps + + build_ledger: + needs: configure + runs-on: ubuntu-latest + container: + image: zondax/ledger-app-builder:latest + options: --user ${{ needs.configure.outputs.uid_gid }} + env: + BOLOS_SDK: /opt/nanos-secure-sdk + outputs: + size: ${{steps.build.outputs.size}} + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: 'v104.63001.3' + submodules: true + - name: Build Standard app + id: build + shell: bash -l {0} + run: | + SUBSTRATE_PARSER_FULL=1 make + echo "size=$(python3 deps/ledger-zxlib/scripts/getSize.py s)" >> $GITHUB_OUTPUT + + size_nano_s: + needs: build_ledger + runs-on: ubuntu-latest + env: + NANOS_LIMIT_SIZE: 136 + steps: + - run: | + echo "LNS app size: ${{needs.build_ledger.outputs.size}} KiB" + [ ${{needs.build_ledger.outputs.size}} -le $NANOS_LIMIT_SIZE ] + + build_package_nanos: + needs: [configure, build, build_ledger] + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + container: + image: zondax/ledger-app-builder:latest + options: --user ${{ needs.configure.outputs.uid_gid }} + env: + BOLOS_SDK: /opt/nanos-secure-sdk + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: 'v104.63001.3' + submodules: true + - name: Install deps + run: pip install ledgerblue + + - name: Build NanoS + shell: bash -l {0} + run: | + make SUBSTRATE_PARSER_FULL=0 PRODUCTION_BUILD=0 + mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos.sh + - name: Set tag + id: nanos_light + run: echo "tag_name=$(./app/pkg/installer_nanos.sh version)" >> $GITHUB_OUTPUT + - name: Create or Update Release (1) + id: create_release_0 + uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + files: ./app/pkg/installer_nanos.sh + tag_name: ${{ steps.nanos_light.outputs.tag_name }} + draft: false + prerelease: false + + build_package_nanos_xl: + needs: [configure, build, build_ledger] + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + container: + image: zondax/ledger-app-builder:latest + options: --user ${{ needs.configure.outputs.uid_gid }} + env: + BOLOS_SDK: /opt/nanos-secure-sdk + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: 'v104.63001.3' + submodules: true + - name: Install deps + run: pip install ledgerblue + + - name: Build NanoS XL + shell: bash -l {0} + run: | + make SUBSTRATE_PARSER_FULL=1 PRODUCTION_BUILD=0 + mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos_xl.sh + - name: Set tag + id: nanos_xl + run: echo "tag_name=$(./app/pkg/installer_nanos_xl.sh version)" >> $GITHUB_OUTPUT + - name: Update Release + id: update_release_1 + uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + files: ./app/pkg/installer_nanos_xl.sh + tag_name: ${{ steps.nanos_xl.outputs.tag_name }} + draft: false + prerelease: false diff --git a/.gitignore b/.gitignore index 83bd8507..c1cf3014 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ tests_zemu/yarn.lock tests_tools/target fuzz-*.log /scan-build +.venv \ No newline at end of file diff --git a/README.md b/README.md index 55a6ac62..b8739201 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Please: - **Do not use in production** - **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** -# Polymesh 4.6003001.x +# Polymesh 7.7000000.x ## System @@ -187,89 +187,64 @@ Please: ## MultiSig -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------- | -| Create multisig | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecSignatoryAccountId`signers
`u64`sigs_required
| -| Create or approve proposal as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create or approve proposal as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create proposal as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create proposal as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Approve as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Approve as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Reject as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Reject as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Accept multisig signer as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`\_auth_id
| -| Accept multisig signer as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Add multisig signer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`signer
| -| Remove multisig signer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`signer
| -| Add multisig signers via creator | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`VecSignatoryAccountId`signers
| -| Remove multisig signers via creator | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`VecSignatoryAccountId`signers
| -| Change sigs required | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`sigs_required
| -| Make multisig secondary | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| -| Make multisig primary | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Optionu64`optional_cdd_auth_id
| -| Execute scheduled proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
`IdentityId`multisig_did
`Weight`\_proposal_weight
| -| Change sigs required via creator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig_account
`u64`signatures_required
| -| Remove creator controls | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig_account
| - -## Bridge - -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------- | ------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------- | -| Change controller | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`controller
| -| Change admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`admin
| -| Change timelock | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`timelock
| -| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Change bridge limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`amount
`BlockNumber`duration
| -| Change bridge exempted | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecTupleIdentityIdbool`exempted
| -| Force handle bridge tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BridgeTxAccountId`bridge_tx
| -| Batch propose bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Propose bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Handle bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Freeze txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Unfreeze txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Handle scheduled bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Add freeze admin | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`freeze_admin
| -| Remove freeze admin | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`freeze_admin
| -| Remove txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Create multisig | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
`u64`sigs_required
`OptionPermissions`permissions
| +| Create proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoxTasConfigProposal`proposal
`OptionMoment`expiry
| +| Approve | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
`OptionWeight`max_weight
| +| Reject | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| +| Accept multisig signer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Add multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Add multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Change sigs required | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`sigs_required
| +| Change sigs required via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`signatures_required
| +| Add admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`admin_did
| +| Remove admin via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Remove payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Remove payer via payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Approve join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`auth_id
| +| Join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| ## Staking -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------------------------------------------------------------------- | -| Bond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
`CompactBalance`amount
`RewardDestination`payee
| -| Bond extra | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Unbond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`num_slashing_spans
| -| Validate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ValidatorPrefs`prefs
| -| Nominate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`targets
| -| Chill | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Set payee | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `RewardDestination`payee
| -| Set controller | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
| -| Set validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new\_
| -| Increase validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`additional
| -| Scale validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Percent`factor
| -| Add permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`Optionu32`intended_count
| -| Remove permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
| -| Validate cdd expiry nominators | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`targets
| -| Set commission cap | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new_cap
| -| Set min bond threshold | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`new_value
| -| Force no eras | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Force new era | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Set invulnerables | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`invulnerables
| -| Force unstake | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| -| Force new era always | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Cancel deferred slash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `EraIndex`era
`Vecu32`slash_indices
| -| Payout stakers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| -| Rebond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Set history depth | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new_history_depth
`Compactu32`era_items_deleted
| -| Reap stash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| -| Submit election solution | | | | | `VecValidatorIndex`winners
`CompactAssignments`compact
`ElectionScore`score
`EraIndex`era
`ElectionSize`size
| -| Submit election solution unsigned | | | | | `VecValidatorIndex`winners
`CompactAssignments`compact
`ElectionScore`score
`EraIndex`era
`ElectionSize`size
| -| Payout stakers by system | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| -| Change slashing allowed for | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SlashingSwitch`slashing_switch
| -| Update permissioned validator intended count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`u32`new_intended_count
| -| Chill from governance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`VecAccountId`stash_keys
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
`CompactBalance`amount
`RewardDestination`payee
| +| Bond extra | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Unbond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`num_slashing_spans
| +| Validate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ValidatorPrefs`prefs
| +| Nominate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`targets
| +| Chill | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set payee | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `RewardDestination`payee
| +| Set controller | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
| +| Set validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new\_
| +| Increase validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`additional
| +| Scale validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Percent`factor
| +| Force no eras | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Force new era | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set invulnerables | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`invulnerables
| +| Force unstake | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Force new era always | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Cancel deferred slash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `EraIndex`era
`Vecu32`slash_indices
| +| Payout stakers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Rebond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Reap stash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Kick | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`who
| +| Set staking configs | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ConfigOpBalanceOfT`min_nominator_bond
`ConfigOpBalanceOfT`min_validator_bond
`ConfigOpu32`max_nominator_count
`ConfigOpu32`max_validator_count
`ConfigOpPercent`chill_threshold
`ConfigOpPerbill`min_commission
| +| Chill other | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`controller
| +| Force apply min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
| +| Set min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new\_
| +| Add permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`Optionu32`intended_count
| +| Remove permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
| +| Validate cdd expiry nominators | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`targets
| +| Payout stakers by system | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Change slashing allowed for | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SlashingSwitch`slashing_switch
| +| Update permissioned validator intended count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`u32`new_intended_count
| +| Chill from governance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`VecAccountId`stash_keys
| +| Set commission cap | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new_cap
| ## Session @@ -292,89 +267,99 @@ Please: | --------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------ | | Heartbeat | | | | | `HeartbeatBlockNumber`heartbeat
`AuthorityIdasRuntimeAppPublicSignature`signature
| +## Sudo + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ------------------ | ------- | --------------------------------------------------- | +| Sudo | | | :heavy_check_mark: | | `Call`call
| +| Sudo unchecked weight | | | :heavy_check_mark: | | `Call`call
`Weight`\_weight
| +| Set key | | | :heavy_check_mark: | | `LookupasStaticLookupSource`new\_
| +| Sudo as | | | :heavy_check_mark: | | `LookupasStaticLookupSource`who
`Call`call
| + ## Asset -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------------------- | ------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Register ticker | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Accept ticker transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Accept asset ownership transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Create asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetName`name
`Ticker`ticker
`bool`divisible
`AssetType`asset_type
`VecAssetIdentifier`identifiers
`OptionFundingRoundName`funding_round
| -| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Rename asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`AssetName`name
| -| Issue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| -| Redeem | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`BalanceNoSymbol`amount
| -| Make divisible | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Add documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocument`docs
`Ticker`ticker
| -| Remove documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocumentId`ids
`Ticker`ticker
| -| Set funding round | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`FundingRoundName`name
| -| Update identifiers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecAssetIdentifier`asset_identifiers
| -| Controller transfer | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioId`from_portfolio
| -| Register custom asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`ty
| -| Create asset with custom type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetName`name
`Ticker`ticker
`bool`divisible
`Vecu8`custom_asset_type
`VecAssetIdentifier`identifiers
`OptionFundingRoundName`funding_round
| -| Set asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`key
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| -| Set asset metadata details | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`key
`AssetMetadataValueDetailMoment`detail
| -| Register and set local asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataName`name
`AssetMetadataSpec`spec
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| -| Register asset metadata local type | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataName`name
`AssetMetadataSpec`spec
| -| Register asset metadata global type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetMetadataName`name
`AssetMetadataSpec`spec
| -| Redeem from portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioKind`portfolio
| -| Update asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetType`asset_type
| -| Remove local metadata key | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataLocalKey`local_key
| -| Remove metadata value | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`metadata_key
| -| Exempt ticker affirmation | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Remove ticker affirmation exemption | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Pre approve ticker | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Remove ticker pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Add mandatory mediators | | | :heavy_check_mark: | | `Ticker`ticker
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| -| Remove mandatory mediators | | | :heavy_check_mark: | | `Ticker`ticker
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Register unique ticker | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| +| Accept ticker transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Accept asset ownership transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Create asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetName`asset_name
`bool`divisible
`AssetType`asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Rename asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`AssetName`asset_name
| +| Issue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Redeem | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Make divisible | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocument`docs
`AssetId`asset_id
| +| Remove documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocumentId`docs_id
`AssetId`asset_id
| +| Set funding round | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`FundingRoundName`founding_round_name
| +| Update identifiers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecAssetIdentifier`asset_identifiers
| +| Controller transfer | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioId`from_portfolio
| +| Register custom asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`ty
| +| Create asset with custom type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetName`asset_name
`bool`divisible
`Vecu8`custom_asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Set asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`key
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Set asset metadata details | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`key
`AssetMetadataValueDetailMoment`detail
| +| Register and set local asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Register asset metadata local type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Register asset metadata global type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Update asset type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetType`asset_type
| +| Remove local metadata key | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataLocalKey`local_key
| +| Remove metadata value | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`metadata_key
| +| Exempt asset affirmation | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset affirmation exemption | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Pre approve asset | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Add mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Remove mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Link ticker to asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| +| Unlink ticker from asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| ## CapitalDistribution -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------- | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Distribute | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionPortfolioNumber`portfolio
`Ticker`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| -| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Push benefit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`IdentityId`holder
| -| Reclaim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Remove distribution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Distribute | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| +| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Push benefit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`IdentityId`holder
| +| Reclaim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Remove distribution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| ## Checkpoint -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------- | ------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------- | -| Create checkpoint | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Set schedules max complexity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`max_complexity
| -| Create schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ScheduleCheckpoints`schedule
| -| Remove schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ScheduleId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------- | +| Create checkpoint | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Set schedules max complexity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`max_complexity
| +| Create schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleCheckpoints`schedule
| +| Remove schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleId`id
| ## ComplianceManager -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------------------------------- | -| Add compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecCondition`sender_conditions
`VecCondition`receiver_conditions
| -| Remove compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`u32`id
| -| Replace asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecComplianceRequirement`asset_compliance
| -| Reset asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Pause asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Resume asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Add default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`TrustedIssuer`issuer
| -| Remove default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`IdentityId`issuer
| -| Change compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ComplianceRequirement`new_req
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------ | +| Add compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecCondition`sender_conditions
`VecCondition`receiver_conditions
| +| Remove compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`u32`id
| +| Replace asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecComplianceRequirement`asset_compliance
| +| Reset asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Pause asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Resume asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TrustedIssuer`issuer
| +| Remove default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`issuer
| +| Change compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ComplianceRequirement`new_req
| ## CorporateAction -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------------------- | ------ | --------- | ------------------ | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Set max details length | | | :heavy_check_mark: | :heavy_check_mark: | `u32`length
| -| Set default targets | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`TargetIdentities`targets
| -| Set default withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`Tax`tax
| -| Set did withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`IdentityId`taxed_did
`OptionTax`tax
| -| Initiate corporate action | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`CAKind`kind
`Moment`decl_date
`OptionRecordDateSpec`record_date
`CADetails`details
`OptionTargetIdentities`targets
`OptionTax`default_withholding_tax
`OptionVecTupleIdentityIdTax`withholding_tax
| -| Link ca doc | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`id
`VecDocumentId`docs
| -| Remove ca | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Change record date | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionRecordDateSpec`record_date
| -| Initiate corporate action and distribute | | | :heavy_check_mark: | :heavy_check_mark: | `InitiateCorporateActionArgs`ca_args
`OptionPortfolioNumber`portfolio
`Ticker`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------------------- | ------ | --------- | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Set max details length | | | :heavy_check_mark: | :heavy_check_mark: | `u32`length
| +| Set default targets | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TargetIdentities`targets
| +| Set default withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`Tax`tax
| +| Set did withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`taxed_did
`OptionTax`tax
| +| Initiate corporate action | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`CAKind`kind
`Moment`decl_date
`OptionRecordDateSpec`record_date
`CADetails`details
`OptionTargetIdentities`targets
`OptionTax`default_withholding_tax
`OptionVecTupleIdentityIdTax`withholding_tax
| +| Link ca doc | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`id
`VecDocumentId`docs
| +| Remove ca | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Change record date | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionRecordDateSpec`record_date
| +| Initiate corporate action and distribute | | | :heavy_check_mark: | :heavy_check_mark: | `InitiateCorporateActionArgs`ca_args
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| ## CorporateBallot @@ -389,25 +374,25 @@ Please: ## Pips -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | -| Set prune historical pips | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`prune
| -| Set min proposal deposit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`deposit
| -| Set default enactment period | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`duration
| -| Set pending pip expiry | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| -| Set max pip skip count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SkippedCount`max
| -| Set active pip limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`limit
| -| Propose | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Proposal`proposal
`Balance`deposit
`OptionUrl`url
`OptionPipDescription`description
| -| Vote | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`bool`aye_or_nay
`Balance`deposit
| -| Approve committee proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Reject proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Prune proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Reschedule execution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`OptionBlockNumber`until
| -| Clear snapshot | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Snapshot | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Enact snapshot results | | | :heavy_check_mark: | :heavy_check_mark: | `VecTuplePipIdSnapshotResult`results
| -| Execute scheduled pip | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Expire scheduled pip | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`did
`PipId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------------------ | --------- | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Set prune historical pips | | | :heavy_check_mark: | :heavy_check_mark: | `bool`prune
| +| Set min proposal deposit | | | :heavy_check_mark: | :heavy_check_mark: | `Balance`deposit
| +| Set default enactment period | | | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`duration
| +| Set pending pip expiry | | | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Set max pip skip count | | | :heavy_check_mark: | :heavy_check_mark: | `SkippedCount`max
| +| Set active pip limit | | | :heavy_check_mark: | :heavy_check_mark: | `u32`limit
| +| Propose | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `Proposal`proposal
`Balance`deposit
`OptionUrl`url
`OptionPipDescription`description
| +| Vote | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`bool`aye_or_nay
`Balance`deposit
| +| Approve committee proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reject proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Prune proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reschedule execution | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`OptionBlockNumber`until
| +| Clear snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Enact snapshot results | | | :heavy_check_mark: | :heavy_check_mark: | `VecTuplePipIdSnapshotResult`results
| +| Execute scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Expire scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`did
`PipId`id
| ## Portfolio @@ -419,8 +404,8 @@ Please: | Quit portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`pid
| | Accept portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| | Move portfolio funds | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioId`from
`PortfolioId`to
`VecFund`funds
| -| Pre approve portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`PortfolioId`portfolio_id
| -| Remove portfolio pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`PortfolioId`portfolio_id
| +| Pre approve portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| +| Remove portfolio pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| | Allow identity to create portfolios | | | :heavy_check_mark: | | `IdentityId`trusted_identity
| | Revoke create portfolios permission | | | :heavy_check_mark: | | `IdentityId`identity
| | Create custody portfolio | | | :heavy_check_mark: | | `IdentityId`portfolio_owner_id
`PortfolioName`portfolio_name
| @@ -445,52 +430,52 @@ Please: ## Settlement -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Create venue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueDetails`details
`VecAccountId`signers
`VenueType`typ
| -| Update venue details | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueDetails`details
| -| Update venue type | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueType`typ
| -| Affirm with receipts | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
| -| Set venue filtering | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`bool`enabled
| -| Allow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecVenueId`venues
| -| Disallow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecVenueId`venues
| -| Update venue signers | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VecAccountId`signers
`bool`add_signers
| -| Execute manual instruction | | :heavy_check_mark: | :heavy_check_mark: | | `InstructionId`id
`OptionPortfolioId`portfolio
`u32`fungible_transfers
`u32`nfts_transfers
`u32`offchain_transfers
`OptionWeight`weight_limit
| -| Add instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
| -| Add and affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
| -| Affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| -| Withdraw affirmation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| -| Reject instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`PortfolioId`portfolio
| -| Execute scheduled instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`Weight`weight_limit
| -| Affirm with receipts with count | | | :heavy_check_mark: | | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Affirm instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Reject instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`PortfolioId`portfolio
`OptionAssetCount`number_of_assets
| -| Withdraw affirmation with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Add instruction with mediators | | | :heavy_check_mark: | | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| -| Add and affirm with mediators | | | :heavy_check_mark: | | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| -| Affirm instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionMoment`expiry
| -| Withdraw affirmation as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
| -| Reject instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionAssetCount`number_of_assets
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Create venue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueDetails`details
`VecAccountId`signers
`VenueType`typ
| +| Update venue details | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueDetails`details
| +| Update venue type | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueType`typ
| +| Affirm with receipts | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
| +| Set venue filtering | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`bool`enabled
| +| Allow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Disallow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Update venue signers | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VecAccountId`signers
`bool`add_signers
| +| Execute manual instruction | | :heavy_check_mark: | :heavy_check_mark: | | `InstructionId`id
`OptionPortfolioId`portfolio
`u32`fungible_transfers
`u32`nfts_transfers
`u32`offchain_transfers
`OptionWeight`weight_limit
| +| Add instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
| +| Add and affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
| +| Affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Withdraw affirmation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Reject instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`PortfolioId`portfolio
| +| Execute scheduled instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`Weight`weight_limit
| +| Affirm with receipts with count | | | :heavy_check_mark: | | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Affirm instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Reject instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`PortfolioId`portfolio
`OptionAssetCount`number_of_assets
| +| Withdraw affirmation with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Add instruction with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Add and affirm with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Affirm instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionMoment`expiry
| +| Withdraw affirmation as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
| +| Reject instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionAssetCount`number_of_assets
| ## Statistics | Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | | ----------------------------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------------ | -| Set active asset stats | | | | | `AssetScope`asset
`BTreeSetStatType`stat_types
| -| Batch update asset stats | | | | | `AssetScope`asset
`StatType`stat_type
`BTreeSetStatUpdate`values
| -| Set asset transfer compliance | | | | | `AssetScope`asset
`BTreeSetTransferCondition`transfer_conditions
| +| Set active asset stats | | | | | `AssetId`asset_id
`BTreeSetStatType`stat_types
| +| Batch update asset stats | | | | | `AssetId`asset_id
`StatType`stat_type
`BTreeSetStatUpdate`values
| +| Set asset transfer compliance | | | | | `AssetId`asset_id
`BTreeSetTransferCondition`transfer_conditions
| | Set entities exempt | | | | | `bool`is_exempt
`TransferConditionExemptKey`exempt_key
`BTreeSetIdentityId`entities
| ## Sto -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------ | ------ | ------------------ | ------------------ | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Create fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`offering_portfolio
`Ticker`offering_asset
`PortfolioId`raising_portfolio
`Ticker`raising_asset
`VecPriceTier`tiers
`VenueId`venue_id
`OptionMoment`start
`OptionMoment`end
`BalanceNoSymbol`minimum_investment
`FundraiserName`fundraiser_name
| -| Invest | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`investment_portfolio
`PortfolioId`funding_portfolio
`Ticker`offering_asset
`FundraiserId`id
`BalanceNoSymbol`purchase_amount
`OptionBalance`max_price
`OptionReceiptDetails`receipt
| -| Freeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| -| Unfreeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| -| Modify fundraiser window | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
`Moment`start
`OptionMoment`end
| -| Stop | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Create fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`offering_portfolio
`AssetId`offering_asset
`PortfolioId`raising_portfolio
`AssetId`raising_asset
`VecPriceTier`tiers
`VenueId`venue_id
`OptionMoment`start
`OptionMoment`end
`BalanceNoSymbol`minimum_investment
`FundraiserName`fundraiser_name
| +| Invest | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`investment_portfolio
`PortfolioId`funding_portfolio
`AssetId`offering_asset
`FundraiserId`id
`BalanceNoSymbol`purchase_amount
`OptionBalance`max_price
`OptionReceiptDetails`receipt
| +| Freeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Unfreeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Modify fundraiser window | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
`Moment`start
`OptionMoment`end
| +| Stop | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| ## Treasury @@ -501,18 +486,15 @@ Please: ## Utility -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------- | -| Batch | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| Relay tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target
`OffChainSignature`signature
`UniqueCall`call
| -| Batch all | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| Dispatch as | | :heavy_check_mark: | :heavy_check_mark: | | `BoxPalletsOrigin`as_origin
`Call`call
| -| Force batch | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| With weight | | :heavy_check_mark: | :heavy_check_mark: | | `Call`call
`Weight`weight
| -| Batch old | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| Batch atomic | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| Batch optimistic | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| As derivative | | :heavy_check_mark: | :heavy_check_mark: | | `u16`index
`Call`call
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------- | +| Batch | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Relay tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target
`OffChainSignature`signature
`UniqueCall`call
| +| Batch all | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Dispatch as | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoxPalletsOrigin`as_origin
`Call`call
| +| Force batch | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| With weight | | :heavy_check_mark: | :heavy_check_mark: | | `Call`call
`Weight`weight
| +| As derivative | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u16`index
`Call`call
| ## Base @@ -521,16 +503,16 @@ Please: ## ExternalAgents -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------------ | ------ | ------------------ | ------------------ | ------- | --------------------------------------------------------------------------------------------------- | -| Create group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
| -| Set group permissions | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AGId`id
`ExtrinsicPermissions`perms
| -| Remove agent | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`IdentityId`agent
| -| Abdicate | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Change group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`IdentityId`agent
`AgentGroup`group
| -| Accept become agent | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| -| Create group and add auth | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
`IdentityId`target
`OptionMoment`expiry
| -| Create and change custom group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
`IdentityId`agent
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------ | +| Create group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
| +| Set group permissions | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AGId`id
`ExtrinsicPermissions`perms
| +| Remove agent | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
| +| Abdicate | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Change group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
`AgentGroup`group
| +| Accept become agent | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| +| Create group and add auth | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`target
`OptionMoment`expiry
| +| Create and change custom group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`agent
| ## Relayer @@ -579,20 +561,28 @@ Please: ## Nft -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| --------------------- | ------ | ------------------ | ------------------ | ------- | -------------------------------------------------------------------------------------------------------------- | -| Create nft collection | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`OptionNonFungibleType`nft_type
`VecAssetMetadataKey`collection_keys
| -| Issue nft | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`VecNFTMetadataAttribute`nft_metadata_attributes
`PortfolioKind`portfolio_kind
| -| Redeem nft | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`NFTId`nft_id
`PortfolioKind`portfolio_kind
| -| Controller transfer | | | :heavy_check_mark: | | `Ticker`ticker
`NFTs`nfts
`PortfolioId`source_portfolio
`PortfolioKind`callers_portfolio_kind
| - -## StateTrieMigration - -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------- | ------ | --------- | ---------------- | ------- | -------------------------------------------------------------------------------------- | -| Control auto migration | | | | | `OptionMigrationLimits`maybe_config
| -| Continue migrate | | | | | `MigrationLimits`limits
`u32`real_size_upper
`MigrationTaskT`witness_task
| -| Migrate custom top | | | | | `VecVecu8`keys
`u32`witness_size
| -| Migrate custom child | | | | | `Vecu8`root
`VecVecu8`child_keys
`u32`total_size
| -| Set signed max limits | | | | | `MigrationLimits`limits
| -| Force set progress | | | | | `ProgressOfT`progress_top
`ProgressOfT`progress_child
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------- | +| Create nft collection | | :heavy_check_mark: | :heavy_check_mark: | | `OptionAssetId`asset_id
`OptionNonFungibleType`nft_type
`VecAssetMetadataKey`collection_keys
| +| Issue nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`VecNFTMetadataAttribute`nft_metadata_attributes
`PortfolioKind`portfolio_kind
| +| Redeem nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`NFTId`nft_id
`PortfolioKind`portfolio_kind
`Optionu8`number_of_keys
| +| Controller transfer | | | :heavy_check_mark: | | `NFTs`nfts
`PortfolioId`source_portfolio
`PortfolioKind`callers_portfolio_kind
| + +## ElectionProviderMultiPhase + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------ | +| Submit unsigned | | :heavy_check_mark: | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
`SolutionOrSnapshotSize`witness
| +| Set minimum untrusted score | | | :heavy_check_mark: | | `OptionElectionScore`maybe_next_score
| +| Set emergency election result | | | :heavy_check_mark: | | `SupportsAccountId`supports
| +| Submit | | | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
| +| Governance fallback | | | :heavy_check_mark: | | `Optionu32`maybe_max_voters
`Optionu32`maybe_max_targets
| + +## TestUtils + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ---------------- | ------- | --------------------------------------------- | +| Register did | | | | | `VecSecondaryKeyAccountId`secondary_keys
| +| Mock cdd register did | | | | | `AccountId`target_account
| +| Get my did | | | | | | +| Get cdd of | | | | | `AccountId`of
| diff --git a/app/Makefile.version b/app/Makefile.version index 7b54027e..42414f7d 100644 --- a/app/Makefile.version +++ b/app/Makefile.version @@ -3,4 +3,4 @@ APPVERSION_M=107 # This is the `spec_version` field of `Runtime` APPVERSION_N=7000 # This is the patch version of this release -APPVERSION_P=0 +APPVERSION_P=1 diff --git a/app/src/parser.c b/app/src/parser.c index c489a031..7e22bdcd 100644 --- a/app/src/parser.c +++ b/app/src/parser.c @@ -167,6 +167,14 @@ parser_error_t parser_getItem(const parser_context_t *ctx, // CONTINUE WITH FIXED ARGUMENTS displayIdx -= methodArgCount; if (displayIdx == FIELD_NETWORK) { +#if !defined(TARGET_NANOS) && !defined(TARGET_NANOX) && !defined(TARGET_NANOS2) && !defined(TARGET_STAX) && \ + !defined(TARGET_FLEX) + if (parser_show_expert_fields()) { + snprintf(outKey, outKeyLen, "Chain"); + snprintf(outVal, outValLen, COIN_NAME); + return parser_ok; + } +#else if (_getAddressType() == PK_ADDRESS_TYPE) { if (parser_show_expert_fields()) { snprintf(outKey, outKeyLen, "Chain"); @@ -179,6 +187,7 @@ parser_error_t parser_getItem(const parser_context_t *ctx, outVal, outValLen, pageIdx, pageCount); } +#endif } if (!parser_show_expert_fields()) { diff --git a/app/src/substrate/substrate_coin.h b/app/src/substrate/substrate_coin.h index 8aee9298..9c14b711 100644 --- a/app/src/substrate/substrate_coin.h +++ b/app/src/substrate/substrate_coin.h @@ -19,7 +19,7 @@ extern "C" { #endif -#define COIN_ADDR_TYPE 42 +#define COIN_ADDR_TYPE 12 #define CLA 0x91 #define INS_SIGN_RAW 0x03 @@ -63,7 +63,7 @@ typedef enum { #define COIN_AMOUNT_DECIMAL_PLACES 6 -#define COIN_GENESIS_HASH "885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a" +#define COIN_GENESIS_HASH "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063" #define COIN_NAME "Polymesh" #define COIN_TICKER "POLYX " diff --git a/app/src/substrate/substrate_dispatch_V7.c b/app/src/substrate/substrate_dispatch_V7.c index ae20c183..9c66e14e 100644 --- a/app/src/substrate/substrate_dispatch_V7.c +++ b/app/src/substrate/substrate_dispatch_V7.c @@ -243,33 +243,45 @@ __Z_INLINE parser_error_t _readMethod_utility_batch_V7( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_atomic_V7( - parser_context_t* c, pd_utility_batch_atomic_V7_t* m) +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS +__Z_INLINE parser_error_t _readMethod_sudo_sudo_V7( + parser_context_t* c, pd_sudo_sudo_V7_t* m) { - CHECK_ERROR(_readVecCall(c, &m->calls)) + CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } - -__Z_INLINE parser_error_t _readMethod_utility_batch_optimistic_V7( - parser_context_t* c, pd_utility_batch_optimistic_V7_t* m) +__Z_INLINE parser_error_t _readMethod_sudo_sudo_unchecked_weight_V7( + parser_context_t* c, pd_sudo_sudo_unchecked_weight_V7_t* m) { - CHECK_ERROR(_readVecCall(c, &m->calls)) + CHECK_ERROR(_readCall(c, &m->call)) + CHECK_ERROR(_readWeight(c, &m->_weight)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_sudo_set_key_V7( + parser_context_t* c, pd_sudo_set_key_V7_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->new_)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_sudo_sudo_as_V7( + parser_context_t* c, pd_sudo_sudo_as_V7_t* m) +{ + CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->who)) + CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } - -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS __Z_INLINE parser_error_t _readMethod_asset_add_mandatory_mediators_V7( parser_context_t* c, pd_asset_add_mandatory_mediators_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxAssetMediators(c, &m->mediators)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_remove_mandatory_mediators_V7( parser_context_t* c, pd_asset_remove_mandatory_mediators_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxAssetMediators(c, &m->mediators)) return parser_ok; } @@ -282,21 +294,21 @@ __Z_INLINE parser_error_t _readMethod_corporateaction_set_max_details_length_V7( __Z_INLINE parser_error_t _readMethod_corporateaction_set_default_targets_V7( parser_context_t* c, pd_corporateaction_set_default_targets_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readTargetIdentities(c, &m->targets)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_corporateaction_set_default_withholding_tax_V7( parser_context_t* c, pd_corporateaction_set_default_withholding_tax_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readTax(c, &m->tax)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_corporateaction_set_did_withholding_tax_V7( parser_context_t* c, pd_corporateaction_set_did_withholding_tax_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->taxed_did)) CHECK_ERROR(_readOptionTax(c, &m->tax)) return parser_ok; @@ -304,7 +316,7 @@ __Z_INLINE parser_error_t _readMethod_corporateaction_set_did_withholding_tax_V7 __Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_V7( parser_context_t* c, pd_corporateaction_initiate_corporate_action_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readCAKind(c, &m->kind)) CHECK_ERROR(_readMoment(c, &m->decl_date)) CHECK_ERROR(_readOptionRecordDateSpec(c, &m->record_date)) @@ -339,7 +351,7 @@ __Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_ { CHECK_ERROR(_readInitiateCorporateActionArgs(c, &m->ca_args)) CHECK_ERROR(_readOptionPortfolioNumber(c, &m->portfolio)) - CHECK_ERROR(_readAssetID(c, &m->currency)) + CHECK_ERROR(_readAssetId(c, &m->currency)) CHECK_ERROR(_readBalance(c, &m->per_share)) CHECK_ERROR(_readBalance(c, &m->amount)) CHECK_ERROR(_readMoment(c, &m->payment_at)) @@ -389,12 +401,100 @@ __Z_INLINE parser_error_t _readMethod_corporateballot_remove_ballot_V7( CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } +__Z_INLINE parser_error_t _readMethod_pips_set_prune_historical_pips_V7( + parser_context_t* c, pd_pips_set_prune_historical_pips_V7_t* m) +{ + CHECK_ERROR(_readbool(c, &m->prune)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_set_min_proposal_deposit_V7( + parser_context_t* c, pd_pips_set_min_proposal_deposit_V7_t* m) +{ + CHECK_ERROR(_readBalance(c, &m->deposit)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_set_default_enactment_period_V7( + parser_context_t* c, pd_pips_set_default_enactment_period_V7_t* m) +{ + CHECK_ERROR(_readBlockNumber(c, &m->duration)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_set_pending_pip_expiry_V7( + parser_context_t* c, pd_pips_set_pending_pip_expiry_V7_t* m) +{ + CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_set_max_pip_skip_count_V7( + parser_context_t* c, pd_pips_set_max_pip_skip_count_V7_t* m) +{ + CHECK_ERROR(_readSkippedCount(c, &m->max)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_set_active_pip_limit_V7( + parser_context_t* c, pd_pips_set_active_pip_limit_V7_t* m) +{ + CHECK_ERROR(_readu32(c, &m->limit)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_approve_committee_proposal_V7( + parser_context_t* c, pd_pips_approve_committee_proposal_V7_t* m) +{ + CHECK_ERROR(_readPipId(c, &m->id)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_reject_proposal_V7( + parser_context_t* c, pd_pips_reject_proposal_V7_t* m) +{ + CHECK_ERROR(_readPipId(c, &m->id)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_prune_proposal_V7( + parser_context_t* c, pd_pips_prune_proposal_V7_t* m) +{ + CHECK_ERROR(_readPipId(c, &m->id)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_reschedule_execution_V7( + parser_context_t* c, pd_pips_reschedule_execution_V7_t* m) +{ + CHECK_ERROR(_readPipId(c, &m->id)) + CHECK_ERROR(_readOptionBlockNumber(c, &m->until)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_clear_snapshot_V7( + parser_context_t* c, pd_pips_clear_snapshot_V7_t* m) +{ + UNUSED(c); + UNUSED(m); + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_snapshot_V7( + parser_context_t* c, pd_pips_snapshot_V7_t* m) +{ + UNUSED(c); + UNUSED(m); + return parser_ok; +} __Z_INLINE parser_error_t _readMethod_pips_enact_snapshot_results_V7( parser_context_t* c, pd_pips_enact_snapshot_results_V7_t* m) { CHECK_ERROR(_readVecTuplePipIdSnapshotResult(c, &m->results)) return parser_ok; } +__Z_INLINE parser_error_t _readMethod_pips_execute_scheduled_pip_V7( + parser_context_t* c, pd_pips_execute_scheduled_pip_V7_t* m) +{ + CHECK_ERROR(_readPipId(c, &m->id)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_pips_expire_scheduled_pip_V7( + parser_context_t* c, pd_pips_expire_scheduled_pip_V7_t* m) +{ + CHECK_ERROR(_readIdentityId(c, &m->did)) + CHECK_ERROR(_readPipId(c, &m->id)) + return parser_ok; +} __Z_INLINE parser_error_t _readMethod_portfolio_allow_identity_to_create_portfolios_V7( parser_context_t* c, pd_portfolio_allow_identity_to_create_portfolios_V7_t* m) { @@ -500,6 +600,31 @@ __Z_INLINE parser_error_t _readMethod_nft_controller_transfer_V7( CHECK_ERROR(_readPortfolioKind(c, &m->callers_portfolio_kind)) return parser_ok; } +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7( + parser_context_t* c, pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t* m) +{ + CHECK_ERROR(_readOptionElectionScore(c, &m->maybe_next_score)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_emergency_election_result_V7( + parser_context_t* c, pd_electionprovidermultiphase_set_emergency_election_result_V7_t* m) +{ + CHECK_ERROR(_readSupportsAccountId(c, &m->supports)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_submit_V7( + parser_context_t* c, pd_electionprovidermultiphase_submit_V7_t* m) +{ + CHECK_ERROR(_readBoxRawSolutionSolutionOfMinerConfig(c, &m->raw_solution)) + return parser_ok; +} +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_governance_fallback_V7( + parser_context_t* c, pd_electionprovidermultiphase_governance_fallback_V7_t* m) +{ + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_voters)) + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_targets)) + return parser_ok; +} #endif __Z_INLINE parser_error_t _readMethod_system_remark_V7( parser_context_t* c, pd_system_remark_V7_t* m) @@ -1358,36 +1483,6 @@ __Z_INLINE parser_error_t _readMethod_session_purge_keys_V7( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sudo_sudo_V7( - parser_context_t* c, pd_sudo_sudo_V7_t* m) -{ - CHECK_ERROR(_readCall(c, &m->call)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_sudo_sudo_unchecked_weight_V7( - parser_context_t* c, pd_sudo_sudo_unchecked_weight_V7_t* m) -{ - CHECK_ERROR(_readCall(c, &m->call)) - CHECK_ERROR(_readWeight(c, &m->_weight)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_sudo_set_key_V7( - parser_context_t* c, pd_sudo_set_key_V7_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->new_)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_sudo_sudo_as_V7( - parser_context_t* c, pd_sudo_sudo_as_V7_t* m) -{ - CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->who)) - CHECK_ERROR(_readCall(c, &m->call)) - return parser_ok; -} - __Z_INLINE parser_error_t _readMethod_asset_register_unique_ticker_V7( parser_context_t* c, pd_asset_register_unique_ticker_V7_t* m) { @@ -1423,21 +1518,21 @@ __Z_INLINE parser_error_t _readMethod_asset_create_asset_V7( __Z_INLINE parser_error_t _readMethod_asset_freeze_V7( parser_context_t* c, pd_asset_freeze_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_unfreeze_V7( parser_context_t* c, pd_asset_unfreeze_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_rename_asset_V7( parser_context_t* c, pd_asset_rename_asset_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetName(c, &m->asset_name)) return parser_ok; } @@ -1445,7 +1540,7 @@ __Z_INLINE parser_error_t _readMethod_asset_rename_asset_V7( __Z_INLINE parser_error_t _readMethod_asset_issue_V7( parser_context_t* c, pd_asset_issue_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; @@ -1454,7 +1549,7 @@ __Z_INLINE parser_error_t _readMethod_asset_issue_V7( __Z_INLINE parser_error_t _readMethod_asset_redeem_V7( parser_context_t* c, pd_asset_redeem_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; @@ -1463,7 +1558,7 @@ __Z_INLINE parser_error_t _readMethod_asset_redeem_V7( __Z_INLINE parser_error_t _readMethod_asset_make_divisible_V7( parser_context_t* c, pd_asset_make_divisible_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } @@ -1471,7 +1566,7 @@ __Z_INLINE parser_error_t _readMethod_asset_add_documents_V7( parser_context_t* c, pd_asset_add_documents_V7_t* m) { CHECK_ERROR(_readVecDocument(c, &m->docs)) - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } @@ -1479,14 +1574,14 @@ __Z_INLINE parser_error_t _readMethod_asset_remove_documents_V7( parser_context_t* c, pd_asset_remove_documents_V7_t* m) { CHECK_ERROR(_readVecDocumentId(c, &m->docs_id)) - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_set_funding_round_V7( parser_context_t* c, pd_asset_set_funding_round_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readFundingRoundName(c, &m->founding_round_name)) return parser_ok; } @@ -1494,7 +1589,7 @@ __Z_INLINE parser_error_t _readMethod_asset_set_funding_round_V7( __Z_INLINE parser_error_t _readMethod_asset_update_identifiers_V7( parser_context_t* c, pd_asset_update_identifiers_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecAssetIdentifier(c, &m->asset_identifiers)) return parser_ok; } @@ -1502,7 +1597,7 @@ __Z_INLINE parser_error_t _readMethod_asset_update_identifiers_V7( __Z_INLINE parser_error_t _readMethod_asset_controller_transfer_V7( parser_context_t* c, pd_asset_controller_transfer_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) CHECK_ERROR(_readPortfolioId(c, &m->from_portfolio)) return parser_ok; @@ -1529,7 +1624,7 @@ __Z_INLINE parser_error_t _readMethod_asset_create_asset_with_custom_type_V7( __Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_V7( parser_context_t* c, pd_asset_set_asset_metadata_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataKey(c, &m->key)) CHECK_ERROR(_readAssetMetadataValue(c, &m->value)) CHECK_ERROR(_readOptionAssetMetadataValueDetailMoment(c, &m->detail)) @@ -1539,7 +1634,7 @@ __Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_V7( __Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_details_V7( parser_context_t* c, pd_asset_set_asset_metadata_details_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataKey(c, &m->key)) CHECK_ERROR(_readAssetMetadataValueDetailMoment(c, &m->detail)) return parser_ok; @@ -1548,7 +1643,7 @@ __Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_details_V7( __Z_INLINE parser_error_t _readMethod_asset_register_and_set_local_asset_metadata_V7( parser_context_t* c, pd_asset_register_and_set_local_asset_metadata_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataName(c, &m->name)) CHECK_ERROR(_readAssetMetadataSpec(c, &m->spec)) CHECK_ERROR(_readAssetMetadataValue(c, &m->value)) @@ -1559,7 +1654,7 @@ __Z_INLINE parser_error_t _readMethod_asset_register_and_set_local_asset_metadat __Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_local_type_V7( parser_context_t* c, pd_asset_register_asset_metadata_local_type_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataName(c, &m->name)) CHECK_ERROR(_readAssetMetadataSpec(c, &m->spec)) return parser_ok; @@ -1576,7 +1671,7 @@ __Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_global_type_ __Z_INLINE parser_error_t _readMethod_asset_update_asset_type_V7( parser_context_t* c, pd_asset_update_asset_type_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetType(c, &m->asset_type)) return parser_ok; } @@ -1584,7 +1679,7 @@ __Z_INLINE parser_error_t _readMethod_asset_update_asset_type_V7( __Z_INLINE parser_error_t _readMethod_asset_remove_local_metadata_key_V7( parser_context_t* c, pd_asset_remove_local_metadata_key_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataLocalKey(c, &m->local_key)) return parser_ok; } @@ -1592,7 +1687,7 @@ __Z_INLINE parser_error_t _readMethod_asset_remove_local_metadata_key_V7( __Z_INLINE parser_error_t _readMethod_asset_remove_metadata_value_V7( parser_context_t* c, pd_asset_remove_metadata_value_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataKey(c, &m->metadata_key)) return parser_ok; } @@ -1600,28 +1695,28 @@ __Z_INLINE parser_error_t _readMethod_asset_remove_metadata_value_V7( __Z_INLINE parser_error_t _readMethod_asset_exempt_asset_affirmation_V7( parser_context_t* c, pd_asset_exempt_asset_affirmation_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_remove_asset_affirmation_exemption_V7( parser_context_t* c, pd_asset_remove_asset_affirmation_exemption_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_pre_approve_asset_V7( parser_context_t* c, pd_asset_pre_approve_asset_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_asset_remove_asset_pre_approval_V7( parser_context_t* c, pd_asset_remove_asset_pre_approval_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } @@ -1629,7 +1724,15 @@ __Z_INLINE parser_error_t _readMethod_asset_link_ticker_to_asset_id_V7( parser_context_t* c, pd_asset_link_ticker_to_asset_id_V7_t* m) { CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_asset_unlink_ticker_from_asset_id_V7( + parser_context_t* c, pd_asset_unlink_ticker_from_asset_id_V7_t* m) +{ + CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } @@ -1638,7 +1741,7 @@ __Z_INLINE parser_error_t _readMethod_capitaldistribution_distribute_V7( { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readOptionPortfolioNumber(c, &m->portfolio)) - CHECK_ERROR(_readAssetID(c, &m->currency)) + CHECK_ERROR(_readAssetId(c, &m->currency)) CHECK_ERROR(_readBalance(c, &m->per_share)) CHECK_ERROR(_readBalance(c, &m->amount)) CHECK_ERROR(_readMoment(c, &m->payment_at)) @@ -1678,7 +1781,7 @@ __Z_INLINE parser_error_t _readMethod_capitaldistribution_remove_distribution_V7 __Z_INLINE parser_error_t _readMethod_checkpoint_create_checkpoint_V7( parser_context_t* c, pd_checkpoint_create_checkpoint_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } @@ -1692,7 +1795,7 @@ __Z_INLINE parser_error_t _readMethod_checkpoint_set_schedules_max_complexity_V7 __Z_INLINE parser_error_t _readMethod_checkpoint_create_schedule_V7( parser_context_t* c, pd_checkpoint_create_schedule_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readScheduleCheckpoints(c, &m->schedule)) return parser_ok; } @@ -1700,7 +1803,7 @@ __Z_INLINE parser_error_t _readMethod_checkpoint_create_schedule_V7( __Z_INLINE parser_error_t _readMethod_checkpoint_remove_schedule_V7( parser_context_t* c, pd_checkpoint_remove_schedule_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readScheduleId(c, &m->id)) return parser_ok; } @@ -1708,7 +1811,7 @@ __Z_INLINE parser_error_t _readMethod_checkpoint_remove_schedule_V7( __Z_INLINE parser_error_t _readMethod_compliancemanager_add_compliance_requirement_V7( parser_context_t* c, pd_compliancemanager_add_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecCondition(c, &m->sender_conditions)) CHECK_ERROR(_readVecCondition(c, &m->receiver_conditions)) return parser_ok; @@ -1717,7 +1820,7 @@ __Z_INLINE parser_error_t _readMethod_compliancemanager_add_compliance_requireme __Z_INLINE parser_error_t _readMethod_compliancemanager_remove_compliance_requirement_V7( parser_context_t* c, pd_compliancemanager_remove_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readu32(c, &m->id)) return parser_ok; } @@ -1725,7 +1828,7 @@ __Z_INLINE parser_error_t _readMethod_compliancemanager_remove_compliance_requir __Z_INLINE parser_error_t _readMethod_compliancemanager_replace_asset_compliance_V7( parser_context_t* c, pd_compliancemanager_replace_asset_compliance_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecComplianceRequirement(c, &m->asset_compliance)) return parser_ok; } @@ -1733,28 +1836,28 @@ __Z_INLINE parser_error_t _readMethod_compliancemanager_replace_asset_compliance __Z_INLINE parser_error_t _readMethod_compliancemanager_reset_asset_compliance_V7( parser_context_t* c, pd_compliancemanager_reset_asset_compliance_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_compliancemanager_pause_asset_compliance_V7( parser_context_t* c, pd_compliancemanager_pause_asset_compliance_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_compliancemanager_resume_asset_compliance_V7( parser_context_t* c, pd_compliancemanager_resume_asset_compliance_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_compliancemanager_add_default_trusted_claim_issuer_V7( parser_context_t* c, pd_compliancemanager_add_default_trusted_claim_issuer_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readTrustedIssuer(c, &m->issuer)) return parser_ok; } @@ -1762,7 +1865,7 @@ __Z_INLINE parser_error_t _readMethod_compliancemanager_add_default_trusted_clai __Z_INLINE parser_error_t _readMethod_compliancemanager_remove_default_trusted_claim_issuer_V7( parser_context_t* c, pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->issuer)) return parser_ok; } @@ -1770,200 +1873,98 @@ __Z_INLINE parser_error_t _readMethod_compliancemanager_remove_default_trusted_c __Z_INLINE parser_error_t _readMethod_compliancemanager_change_compliance_requirement_V7( parser_context_t* c, pd_compliancemanager_change_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readComplianceRequirement(c, &m->new_req)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_prune_historical_pips_V7( - parser_context_t* c, pd_pips_set_prune_historical_pips_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_create_portfolio_V7( + parser_context_t* c, pd_portfolio_create_portfolio_V7_t* m) { - CHECK_ERROR(_readbool(c, &m->prune)) + CHECK_ERROR(_readPortfolioName(c, &m->name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_min_proposal_deposit_V7( - parser_context_t* c, pd_pips_set_min_proposal_deposit_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_delete_portfolio_V7( + parser_context_t* c, pd_portfolio_delete_portfolio_V7_t* m) { - CHECK_ERROR(_readBalance(c, &m->deposit)) + CHECK_ERROR(_readPortfolioNumber(c, &m->num)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_default_enactment_period_V7( - parser_context_t* c, pd_pips_set_default_enactment_period_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_rename_portfolio_V7( + parser_context_t* c, pd_portfolio_rename_portfolio_V7_t* m) { - CHECK_ERROR(_readBlockNumber(c, &m->duration)) + CHECK_ERROR(_readPortfolioNumber(c, &m->num)) + CHECK_ERROR(_readPortfolioName(c, &m->to_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_pending_pip_expiry_V7( - parser_context_t* c, pd_pips_set_pending_pip_expiry_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_quit_portfolio_custody_V7( + parser_context_t* c, pd_portfolio_quit_portfolio_custody_V7_t* m) { - CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) + CHECK_ERROR(_readPortfolioId(c, &m->pid)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_max_pip_skip_count_V7( - parser_context_t* c, pd_pips_set_max_pip_skip_count_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_accept_portfolio_custody_V7( + parser_context_t* c, pd_portfolio_accept_portfolio_custody_V7_t* m) { - CHECK_ERROR(_readSkippedCount(c, &m->max)) + CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_active_pip_limit_V7( - parser_context_t* c, pd_pips_set_active_pip_limit_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_move_portfolio_funds_V7( + parser_context_t* c, pd_portfolio_move_portfolio_funds_V7_t* m) { - CHECK_ERROR(_readu32(c, &m->limit)) + CHECK_ERROR(_readPortfolioId(c, &m->from)) + CHECK_ERROR(_readPortfolioId(c, &m->to)) + CHECK_ERROR(_readVecFund(c, &m->funds)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_approve_committee_proposal_V7( - parser_context_t* c, pd_pips_approve_committee_proposal_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_pre_approve_portfolio_V7( + parser_context_t* c, pd_portfolio_pre_approve_portfolio_V7_t* m) { - CHECK_ERROR(_readPipId(c, &m->id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) + CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_reject_proposal_V7( - parser_context_t* c, pd_pips_reject_proposal_V7_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_remove_portfolio_pre_approval_V7( + parser_context_t* c, pd_portfolio_remove_portfolio_pre_approval_V7_t* m) { - CHECK_ERROR(_readPipId(c, &m->id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) + CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_prune_proposal_V7( - parser_context_t* c, pd_pips_prune_proposal_V7_t* m) +__Z_INLINE parser_error_t _readMethod_protocolfee_change_coefficient_V7( + parser_context_t* c, pd_protocolfee_change_coefficient_V7_t* m) { - CHECK_ERROR(_readPipId(c, &m->id)) + CHECK_ERROR(_readPosRatio(c, &m->coefficient)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_reschedule_execution_V7( - parser_context_t* c, pd_pips_reschedule_execution_V7_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_create_venue_V7( + parser_context_t* c, pd_settlement_create_venue_V7_t* m) { - CHECK_ERROR(_readPipId(c, &m->id)) - CHECK_ERROR(_readOptionBlockNumber(c, &m->until)) + CHECK_ERROR(_readVenueDetails(c, &m->details)) + CHECK_ERROR(_readVecAccountId(c, &m->signers)) + CHECK_ERROR(_readVenueType(c, &m->typ)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_clear_snapshot_V7( - parser_context_t* c, pd_pips_clear_snapshot_V7_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_update_venue_details_V7( + parser_context_t* c, pd_settlement_update_venue_details_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readVenueId(c, &m->id)) + CHECK_ERROR(_readVenueDetails(c, &m->details)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_snapshot_V7( - parser_context_t* c, pd_pips_snapshot_V7_t* m) -{ - UNUSED(c); - UNUSED(m); - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_pips_execute_scheduled_pip_V7( - parser_context_t* c, pd_pips_execute_scheduled_pip_V7_t* m) -{ - CHECK_ERROR(_readPipId(c, &m->id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_pips_expire_scheduled_pip_V7( - parser_context_t* c, pd_pips_expire_scheduled_pip_V7_t* m) -{ - CHECK_ERROR(_readIdentityId(c, &m->did)) - CHECK_ERROR(_readPipId(c, &m->id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_create_portfolio_V7( - parser_context_t* c, pd_portfolio_create_portfolio_V7_t* m) -{ - CHECK_ERROR(_readPortfolioName(c, &m->name)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_delete_portfolio_V7( - parser_context_t* c, pd_portfolio_delete_portfolio_V7_t* m) -{ - CHECK_ERROR(_readPortfolioNumber(c, &m->num)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_rename_portfolio_V7( - parser_context_t* c, pd_portfolio_rename_portfolio_V7_t* m) -{ - CHECK_ERROR(_readPortfolioNumber(c, &m->num)) - CHECK_ERROR(_readPortfolioName(c, &m->to_name)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_quit_portfolio_custody_V7( - parser_context_t* c, pd_portfolio_quit_portfolio_custody_V7_t* m) -{ - CHECK_ERROR(_readPortfolioId(c, &m->pid)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_accept_portfolio_custody_V7( - parser_context_t* c, pd_portfolio_accept_portfolio_custody_V7_t* m) -{ - CHECK_ERROR(_readu64(c, &m->auth_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_move_portfolio_funds_V7( - parser_context_t* c, pd_portfolio_move_portfolio_funds_V7_t* m) -{ - CHECK_ERROR(_readPortfolioId(c, &m->from)) - CHECK_ERROR(_readPortfolioId(c, &m->to)) - CHECK_ERROR(_readVecFund(c, &m->funds)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_pre_approve_portfolio_V7( - parser_context_t* c, pd_portfolio_pre_approve_portfolio_V7_t* m) -{ - CHECK_ERROR(_readAssetID(c, &m->asset_id)) - CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_portfolio_remove_portfolio_pre_approval_V7( - parser_context_t* c, pd_portfolio_remove_portfolio_pre_approval_V7_t* m) -{ - CHECK_ERROR(_readAssetID(c, &m->asset_id)) - CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_protocolfee_change_coefficient_V7( - parser_context_t* c, pd_protocolfee_change_coefficient_V7_t* m) -{ - CHECK_ERROR(_readPosRatio(c, &m->coefficient)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_settlement_create_venue_V7( - parser_context_t* c, pd_settlement_create_venue_V7_t* m) -{ - CHECK_ERROR(_readVenueDetails(c, &m->details)) - CHECK_ERROR(_readVecAccountId(c, &m->signers)) - CHECK_ERROR(_readVenueType(c, &m->typ)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_settlement_update_venue_details_V7( - parser_context_t* c, pd_settlement_update_venue_details_V7_t* m) -{ - CHECK_ERROR(_readVenueId(c, &m->id)) - CHECK_ERROR(_readVenueDetails(c, &m->details)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_settlement_update_venue_type_V7( - parser_context_t* c, pd_settlement_update_venue_type_V7_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_update_venue_type_V7( + parser_context_t* c, pd_settlement_update_venue_type_V7_t* m) { CHECK_ERROR(_readVenueId(c, &m->id)) CHECK_ERROR(_readVenueType(c, &m->typ)) @@ -1982,7 +1983,7 @@ __Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_V7( __Z_INLINE parser_error_t _readMethod_settlement_set_venue_filtering_V7( parser_context_t* c, pd_settlement_set_venue_filtering_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readbool(c, &m->enabled)) return parser_ok; } @@ -1990,7 +1991,7 @@ __Z_INLINE parser_error_t _readMethod_settlement_set_venue_filtering_V7( __Z_INLINE parser_error_t _readMethod_settlement_allow_venues_V7( parser_context_t* c, pd_settlement_allow_venues_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecVenueId(c, &m->venues)) return parser_ok; } @@ -1998,7 +1999,7 @@ __Z_INLINE parser_error_t _readMethod_settlement_allow_venues_V7( __Z_INLINE parser_error_t _readMethod_settlement_disallow_venues_V7( parser_context_t* c, pd_settlement_disallow_venues_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecVenueId(c, &m->venues)) return parser_ok; } @@ -2085,9 +2086,9 @@ __Z_INLINE parser_error_t _readMethod_sto_create_fundraiser_V7( parser_context_t* c, pd_sto_create_fundraiser_V7_t* m) { CHECK_ERROR(_readPortfolioId(c, &m->offering_portfolio)) - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readPortfolioId(c, &m->raising_portfolio)) - CHECK_ERROR(_readAssetID(c, &m->raising_asset)) + CHECK_ERROR(_readAssetId(c, &m->raising_asset)) CHECK_ERROR(_readVecPriceTier(c, &m->tiers)) CHECK_ERROR(_readVenueId(c, &m->venue_id)) CHECK_ERROR(_readOptionMoment(c, &m->start)) @@ -2102,7 +2103,7 @@ __Z_INLINE parser_error_t _readMethod_sto_invest_V7( { CHECK_ERROR(_readPortfolioId(c, &m->investment_portfolio)) CHECK_ERROR(_readPortfolioId(c, &m->funding_portfolio)) - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->purchase_amount)) CHECK_ERROR(_readOptionBalance(c, &m->max_price)) @@ -2113,7 +2114,7 @@ __Z_INLINE parser_error_t _readMethod_sto_invest_V7( __Z_INLINE parser_error_t _readMethod_sto_freeze_fundraiser_V7( parser_context_t* c, pd_sto_freeze_fundraiser_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } @@ -2121,7 +2122,7 @@ __Z_INLINE parser_error_t _readMethod_sto_freeze_fundraiser_V7( __Z_INLINE parser_error_t _readMethod_sto_unfreeze_fundraiser_V7( parser_context_t* c, pd_sto_unfreeze_fundraiser_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } @@ -2129,7 +2130,7 @@ __Z_INLINE parser_error_t _readMethod_sto_unfreeze_fundraiser_V7( __Z_INLINE parser_error_t _readMethod_sto_modify_fundraiser_window_V7( parser_context_t* c, pd_sto_modify_fundraiser_window_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) CHECK_ERROR(_readMoment(c, &m->start)) CHECK_ERROR(_readOptionMoment(c, &m->end)) @@ -2139,7 +2140,7 @@ __Z_INLINE parser_error_t _readMethod_sto_modify_fundraiser_window_V7( __Z_INLINE parser_error_t _readMethod_sto_stop_V7( parser_context_t* c, pd_sto_stop_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->offering_asset)) + CHECK_ERROR(_readAssetId(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } @@ -2197,17 +2198,18 @@ __Z_INLINE parser_error_t _readMethod_utility_with_weight_V7( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_old_V7( - parser_context_t* c, pd_utility_batch_old_V7_t* m) +__Z_INLINE parser_error_t _readMethod_utility_as_derivative_V7( + parser_context_t* c, pd_utility_as_derivative_V7_t* m) { - CHECK_ERROR(_readVecCall(c, &m->calls)) + CHECK_ERROR(_readu16(c, &m->index)) + CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_externalagents_create_group_V7( parser_context_t* c, pd_externalagents_create_group_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) return parser_ok; } @@ -2215,7 +2217,7 @@ __Z_INLINE parser_error_t _readMethod_externalagents_create_group_V7( __Z_INLINE parser_error_t _readMethod_externalagents_set_group_permissions_V7( parser_context_t* c, pd_externalagents_set_group_permissions_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readAGId(c, &m->id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) return parser_ok; @@ -2224,7 +2226,7 @@ __Z_INLINE parser_error_t _readMethod_externalagents_set_group_permissions_V7( __Z_INLINE parser_error_t _readMethod_externalagents_remove_agent_V7( parser_context_t* c, pd_externalagents_remove_agent_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->agent)) return parser_ok; } @@ -2232,14 +2234,14 @@ __Z_INLINE parser_error_t _readMethod_externalagents_remove_agent_V7( __Z_INLINE parser_error_t _readMethod_externalagents_abdicate_V7( parser_context_t* c, pd_externalagents_abdicate_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) return parser_ok; } __Z_INLINE parser_error_t _readMethod_externalagents_change_group_V7( parser_context_t* c, pd_externalagents_change_group_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->agent)) CHECK_ERROR(_readAgentGroup(c, &m->group)) return parser_ok; @@ -2255,7 +2257,7 @@ __Z_INLINE parser_error_t _readMethod_externalagents_accept_become_agent_V7( __Z_INLINE parser_error_t _readMethod_externalagents_create_group_and_add_auth_V7( parser_context_t* c, pd_externalagents_create_group_and_add_auth_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) CHECK_ERROR(_readIdentityId(c, &m->target)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) @@ -2265,7 +2267,7 @@ __Z_INLINE parser_error_t _readMethod_externalagents_create_group_and_add_auth_V __Z_INLINE parser_error_t _readMethod_externalagents_create_and_change_custom_group_V7( parser_context_t* c, pd_externalagents_create_and_change_custom_group_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) CHECK_ERROR(_readIdentityId(c, &m->agent)) return parser_ok; @@ -2508,7 +2510,7 @@ __Z_INLINE parser_error_t _readMethod_preimage_unrequest_preimage_V7( __Z_INLINE parser_error_t _readMethod_nft_create_nft_collection_V7( parser_context_t* c, pd_nft_create_nft_collection_V7_t* m) { - CHECK_ERROR(_readOptionAssetID(c, &m->asset_id)) + CHECK_ERROR(_readOptionAssetId(c, &m->asset_id)) CHECK_ERROR(_readOptionNonFungibleType(c, &m->nft_type)) CHECK_ERROR(_readVecAssetMetadataKey(c, &m->collection_keys)) return parser_ok; @@ -2517,7 +2519,7 @@ __Z_INLINE parser_error_t _readMethod_nft_create_nft_collection_V7( __Z_INLINE parser_error_t _readMethod_nft_issue_nft_V7( parser_context_t* c, pd_nft_issue_nft_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readVecNFTMetadataAttribute(c, &m->nft_metadata_attributes)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; @@ -2526,7 +2528,7 @@ __Z_INLINE parser_error_t _readMethod_nft_issue_nft_V7( __Z_INLINE parser_error_t _readMethod_nft_redeem_nft_V7( parser_context_t* c, pd_nft_redeem_nft_V7_t* m) { - CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetId(c, &m->asset_id)) CHECK_ERROR(_readNFTId(c, &m->nft_id)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) CHECK_ERROR(_readOptionu8(c, &m->number_of_keys)) @@ -2541,35 +2543,6 @@ __Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_submit_unsigned return parser_ok; } -__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7( - parser_context_t* c, pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t* m) -{ - CHECK_ERROR(_readOptionElectionScore(c, &m->maybe_next_score)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_emergency_election_result_V7( - parser_context_t* c, pd_electionprovidermultiphase_set_emergency_election_result_V7_t* m) -{ - CHECK_ERROR(_readSupportsAccountId(c, &m->supports)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_submit_V7( - parser_context_t* c, pd_electionprovidermultiphase_submit_V7_t* m) -{ - CHECK_ERROR(_readBoxRawSolutionSolutionOfMinerConfig(c, &m->raw_solution)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_governance_fallback_V7( - parser_context_t* c, pd_electionprovidermultiphase_governance_fallback_V7_t* m) -{ - CHECK_ERROR(_readOptionu32(c, &m->maybe_max_voters)) - CHECK_ERROR(_readOptionu32(c, &m->maybe_max_targets)) - return parser_ok; -} - #endif parser_error_t _readMethod_V7( @@ -2666,15 +2639,21 @@ parser_error_t _readMethod_V7( case 10496: /* module 41 call 0 */ CHECK_ERROR(_readMethod_utility_batch_V7(c, &method->nested.utility_batch_V7)) break; - case 10503: /* module 41 call 7 */ - CHECK_ERROR(_readMethod_utility_batch_atomic_V7(c, &method->nested.utility_batch_atomic_V7)) - break; - case 10504: /* module 41 call 8 */ - CHECK_ERROR(_readMethod_utility_batch_optimistic_V7(c, &method->nested.utility_batch_optimistic_V7)) - break; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS + case 6400: /* module 25 call 0 */ + CHECK_ERROR(_readMethod_sudo_sudo_V7(c, &method->basic.sudo_sudo_V7)) + break; + case 6401: /* module 25 call 1 */ + CHECK_ERROR(_readMethod_sudo_sudo_unchecked_weight_V7(c, &method->basic.sudo_sudo_unchecked_weight_V7)) + break; + case 6402: /* module 25 call 2 */ + CHECK_ERROR(_readMethod_sudo_set_key_V7(c, &method->basic.sudo_set_key_V7)) + break; + case 6403: /* module 25 call 3 */ + CHECK_ERROR(_readMethod_sudo_sudo_as_V7(c, &method->basic.sudo_sudo_as_V7)) + break; case 6685: /* module 26 call 29 */ CHECK_ERROR(_readMethod_asset_add_mandatory_mediators_V7(c, &method->basic.asset_add_mandatory_mediators_V7)) break; @@ -2726,9 +2705,51 @@ parser_error_t _readMethod_V7( case 7941: /* module 31 call 5 */ CHECK_ERROR(_readMethod_corporateballot_remove_ballot_V7(c, &method->nested.corporateballot_remove_ballot_V7)) break; + case 8448: /* module 33 call 0 */ + CHECK_ERROR(_readMethod_pips_set_prune_historical_pips_V7(c, &method->nested.pips_set_prune_historical_pips_V7)) + break; + case 8449: /* module 33 call 1 */ + CHECK_ERROR(_readMethod_pips_set_min_proposal_deposit_V7(c, &method->nested.pips_set_min_proposal_deposit_V7)) + break; + case 8450: /* module 33 call 2 */ + CHECK_ERROR(_readMethod_pips_set_default_enactment_period_V7(c, &method->nested.pips_set_default_enactment_period_V7)) + break; + case 8451: /* module 33 call 3 */ + CHECK_ERROR(_readMethod_pips_set_pending_pip_expiry_V7(c, &method->nested.pips_set_pending_pip_expiry_V7)) + break; + case 8452: /* module 33 call 4 */ + CHECK_ERROR(_readMethod_pips_set_max_pip_skip_count_V7(c, &method->nested.pips_set_max_pip_skip_count_V7)) + break; + case 8453: /* module 33 call 5 */ + CHECK_ERROR(_readMethod_pips_set_active_pip_limit_V7(c, &method->nested.pips_set_active_pip_limit_V7)) + break; + case 8456: /* module 33 call 8 */ + CHECK_ERROR(_readMethod_pips_approve_committee_proposal_V7(c, &method->nested.pips_approve_committee_proposal_V7)) + break; + case 8457: /* module 33 call 9 */ + CHECK_ERROR(_readMethod_pips_reject_proposal_V7(c, &method->nested.pips_reject_proposal_V7)) + break; + case 8458: /* module 33 call 10 */ + CHECK_ERROR(_readMethod_pips_prune_proposal_V7(c, &method->nested.pips_prune_proposal_V7)) + break; + case 8459: /* module 33 call 11 */ + CHECK_ERROR(_readMethod_pips_reschedule_execution_V7(c, &method->nested.pips_reschedule_execution_V7)) + break; + case 8460: /* module 33 call 12 */ + CHECK_ERROR(_readMethod_pips_clear_snapshot_V7(c, &method->nested.pips_clear_snapshot_V7)) + break; + case 8461: /* module 33 call 13 */ + CHECK_ERROR(_readMethod_pips_snapshot_V7(c, &method->nested.pips_snapshot_V7)) + break; case 8462: /* module 33 call 14 */ CHECK_ERROR(_readMethod_pips_enact_snapshot_results_V7(c, &method->nested.pips_enact_snapshot_results_V7)) break; + case 8463: /* module 33 call 15 */ + CHECK_ERROR(_readMethod_pips_execute_scheduled_pip_V7(c, &method->nested.pips_execute_scheduled_pip_V7)) + break; + case 8464: /* module 33 call 16 */ + CHECK_ERROR(_readMethod_pips_expire_scheduled_pip_V7(c, &method->nested.pips_expire_scheduled_pip_V7)) + break; case 8712: /* module 34 call 8 */ CHECK_ERROR(_readMethod_portfolio_allow_identity_to_create_portfolios_V7(c, &method->basic.portfolio_allow_identity_to_create_portfolios_V7)) break; @@ -2768,6 +2789,18 @@ parser_error_t _readMethod_V7( case 12547: /* module 49 call 3 */ CHECK_ERROR(_readMethod_nft_controller_transfer_V7(c, &method->basic.nft_controller_transfer_V7)) break; + case 12801: /* module 50 call 1 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7(c, &method->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7)) + break; + case 12802: /* module 50 call 2 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_set_emergency_election_result_V7(c, &method->basic.electionprovidermultiphase_set_emergency_election_result_V7)) + break; + case 12803: /* module 50 call 3 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_submit_V7(c, &method->basic.electionprovidermultiphase_submit_V7)) + break; + case 12804: /* module 50 call 4 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_governance_fallback_V7(c, &method->basic.electionprovidermultiphase_governance_fallback_V7)) + break; #endif case 0: /* module 0 call 0 */ CHECK_ERROR(_readMethod_system_remark_V7(c, &method->nested.system_remark_V7)) @@ -3105,18 +3138,6 @@ parser_error_t _readMethod_V7( case 4865: /* module 19 call 1 */ CHECK_ERROR(_readMethod_session_purge_keys_V7(c, &method->nested.session_purge_keys_V7)) break; - case 6400: /* module 25 call 0 */ - CHECK_ERROR(_readMethod_sudo_sudo_V7(c, &method->basic.sudo_sudo_V7)) - break; - case 6401: /* module 25 call 1 */ - CHECK_ERROR(_readMethod_sudo_sudo_unchecked_weight_V7(c, &method->basic.sudo_sudo_unchecked_weight_V7)) - break; - case 6402: /* module 25 call 2 */ - CHECK_ERROR(_readMethod_sudo_set_key_V7(c, &method->basic.sudo_set_key_V7)) - break; - case 6403: /* module 25 call 3 */ - CHECK_ERROR(_readMethod_sudo_sudo_as_V7(c, &method->basic.sudo_sudo_as_V7)) - break; case 6656: /* module 26 call 0 */ CHECK_ERROR(_readMethod_asset_register_unique_ticker_V7(c, &method->basic.asset_register_unique_ticker_V7)) break; @@ -3207,6 +3228,9 @@ parser_error_t _readMethod_V7( case 6687: /* module 26 call 31 */ CHECK_ERROR(_readMethod_asset_link_ticker_to_asset_id_V7(c, &method->basic.asset_link_ticker_to_asset_id_V7)) break; + case 6688: /* module 26 call 32 */ + CHECK_ERROR(_readMethod_asset_unlink_ticker_from_asset_id_V7(c, &method->basic.asset_unlink_ticker_from_asset_id_V7)) + break; case 6912: /* module 27 call 0 */ CHECK_ERROR(_readMethod_capitaldistribution_distribute_V7(c, &method->nested.capitaldistribution_distribute_V7)) break; @@ -3261,77 +3285,35 @@ parser_error_t _readMethod_V7( case 7432: /* module 29 call 8 */ CHECK_ERROR(_readMethod_compliancemanager_change_compliance_requirement_V7(c, &method->nested.compliancemanager_change_compliance_requirement_V7)) break; - case 8448: /* module 33 call 0 */ - CHECK_ERROR(_readMethod_pips_set_prune_historical_pips_V7(c, &method->nested.pips_set_prune_historical_pips_V7)) + case 8704: /* module 34 call 0 */ + CHECK_ERROR(_readMethod_portfolio_create_portfolio_V7(c, &method->nested.portfolio_create_portfolio_V7)) break; - case 8449: /* module 33 call 1 */ - CHECK_ERROR(_readMethod_pips_set_min_proposal_deposit_V7(c, &method->nested.pips_set_min_proposal_deposit_V7)) + case 8705: /* module 34 call 1 */ + CHECK_ERROR(_readMethod_portfolio_delete_portfolio_V7(c, &method->nested.portfolio_delete_portfolio_V7)) break; - case 8450: /* module 33 call 2 */ - CHECK_ERROR(_readMethod_pips_set_default_enactment_period_V7(c, &method->nested.pips_set_default_enactment_period_V7)) + case 8706: /* module 34 call 2 */ + CHECK_ERROR(_readMethod_portfolio_rename_portfolio_V7(c, &method->nested.portfolio_rename_portfolio_V7)) break; - case 8451: /* module 33 call 3 */ - CHECK_ERROR(_readMethod_pips_set_pending_pip_expiry_V7(c, &method->nested.pips_set_pending_pip_expiry_V7)) + case 8707: /* module 34 call 3 */ + CHECK_ERROR(_readMethod_portfolio_quit_portfolio_custody_V7(c, &method->basic.portfolio_quit_portfolio_custody_V7)) break; - case 8452: /* module 33 call 4 */ - CHECK_ERROR(_readMethod_pips_set_max_pip_skip_count_V7(c, &method->nested.pips_set_max_pip_skip_count_V7)) + case 8708: /* module 34 call 4 */ + CHECK_ERROR(_readMethod_portfolio_accept_portfolio_custody_V7(c, &method->basic.portfolio_accept_portfolio_custody_V7)) break; - case 8453: /* module 33 call 5 */ - CHECK_ERROR(_readMethod_pips_set_active_pip_limit_V7(c, &method->nested.pips_set_active_pip_limit_V7)) + case 8709: /* module 34 call 5 */ + CHECK_ERROR(_readMethod_portfolio_move_portfolio_funds_V7(c, &method->nested.portfolio_move_portfolio_funds_V7)) break; - case 8456: /* module 33 call 8 */ - CHECK_ERROR(_readMethod_pips_approve_committee_proposal_V7(c, &method->nested.pips_approve_committee_proposal_V7)) + case 8710: /* module 34 call 6 */ + CHECK_ERROR(_readMethod_portfolio_pre_approve_portfolio_V7(c, &method->basic.portfolio_pre_approve_portfolio_V7)) break; - case 8457: /* module 33 call 9 */ - CHECK_ERROR(_readMethod_pips_reject_proposal_V7(c, &method->nested.pips_reject_proposal_V7)) + case 8711: /* module 34 call 7 */ + CHECK_ERROR(_readMethod_portfolio_remove_portfolio_pre_approval_V7(c, &method->basic.portfolio_remove_portfolio_pre_approval_V7)) break; - case 8458: /* module 33 call 10 */ - CHECK_ERROR(_readMethod_pips_prune_proposal_V7(c, &method->nested.pips_prune_proposal_V7)) + case 8960: /* module 35 call 0 */ + CHECK_ERROR(_readMethod_protocolfee_change_coefficient_V7(c, &method->nested.protocolfee_change_coefficient_V7)) break; - case 8459: /* module 33 call 11 */ - CHECK_ERROR(_readMethod_pips_reschedule_execution_V7(c, &method->nested.pips_reschedule_execution_V7)) - break; - case 8460: /* module 33 call 12 */ - CHECK_ERROR(_readMethod_pips_clear_snapshot_V7(c, &method->nested.pips_clear_snapshot_V7)) - break; - case 8461: /* module 33 call 13 */ - CHECK_ERROR(_readMethod_pips_snapshot_V7(c, &method->nested.pips_snapshot_V7)) - break; - case 8463: /* module 33 call 15 */ - CHECK_ERROR(_readMethod_pips_execute_scheduled_pip_V7(c, &method->nested.pips_execute_scheduled_pip_V7)) - break; - case 8464: /* module 33 call 16 */ - CHECK_ERROR(_readMethod_pips_expire_scheduled_pip_V7(c, &method->nested.pips_expire_scheduled_pip_V7)) - break; - case 8704: /* module 34 call 0 */ - CHECK_ERROR(_readMethod_portfolio_create_portfolio_V7(c, &method->nested.portfolio_create_portfolio_V7)) - break; - case 8705: /* module 34 call 1 */ - CHECK_ERROR(_readMethod_portfolio_delete_portfolio_V7(c, &method->nested.portfolio_delete_portfolio_V7)) - break; - case 8706: /* module 34 call 2 */ - CHECK_ERROR(_readMethod_portfolio_rename_portfolio_V7(c, &method->nested.portfolio_rename_portfolio_V7)) - break; - case 8707: /* module 34 call 3 */ - CHECK_ERROR(_readMethod_portfolio_quit_portfolio_custody_V7(c, &method->basic.portfolio_quit_portfolio_custody_V7)) - break; - case 8708: /* module 34 call 4 */ - CHECK_ERROR(_readMethod_portfolio_accept_portfolio_custody_V7(c, &method->basic.portfolio_accept_portfolio_custody_V7)) - break; - case 8709: /* module 34 call 5 */ - CHECK_ERROR(_readMethod_portfolio_move_portfolio_funds_V7(c, &method->nested.portfolio_move_portfolio_funds_V7)) - break; - case 8710: /* module 34 call 6 */ - CHECK_ERROR(_readMethod_portfolio_pre_approve_portfolio_V7(c, &method->basic.portfolio_pre_approve_portfolio_V7)) - break; - case 8711: /* module 34 call 7 */ - CHECK_ERROR(_readMethod_portfolio_remove_portfolio_pre_approval_V7(c, &method->basic.portfolio_remove_portfolio_pre_approval_V7)) - break; - case 8960: /* module 35 call 0 */ - CHECK_ERROR(_readMethod_protocolfee_change_coefficient_V7(c, &method->nested.protocolfee_change_coefficient_V7)) - break; - case 9472: /* module 37 call 0 */ - CHECK_ERROR(_readMethod_settlement_create_venue_V7(c, &method->nested.settlement_create_venue_V7)) + case 9472: /* module 37 call 0 */ + CHECK_ERROR(_readMethod_settlement_create_venue_V7(c, &method->nested.settlement_create_venue_V7)) break; case 9473: /* module 37 call 1 */ CHECK_ERROR(_readMethod_settlement_update_venue_details_V7(c, &method->basic.settlement_update_venue_details_V7)) @@ -3403,19 +3385,19 @@ parser_error_t _readMethod_V7( CHECK_ERROR(_readMethod_utility_relay_tx_V7(c, &method->nested.utility_relay_tx_V7)) break; case 10498: /* module 41 call 2 */ - CHECK_ERROR(_readMethod_utility_batch_all_V7(c, &method->basic.utility_batch_all_V7)) + CHECK_ERROR(_readMethod_utility_batch_all_V7(c, &method->nested.utility_batch_all_V7)) break; case 10499: /* module 41 call 3 */ - CHECK_ERROR(_readMethod_utility_dispatch_as_V7(c, &method->basic.utility_dispatch_as_V7)) + CHECK_ERROR(_readMethod_utility_dispatch_as_V7(c, &method->nested.utility_dispatch_as_V7)) break; case 10500: /* module 41 call 4 */ - CHECK_ERROR(_readMethod_utility_force_batch_V7(c, &method->basic.utility_force_batch_V7)) + CHECK_ERROR(_readMethod_utility_force_batch_V7(c, &method->nested.utility_force_batch_V7)) break; case 10501: /* module 41 call 5 */ CHECK_ERROR(_readMethod_utility_with_weight_V7(c, &method->basic.utility_with_weight_V7)) break; - case 10502: /* module 41 call 6 */ - CHECK_ERROR(_readMethod_utility_batch_old_V7(c, &method->basic.utility_batch_old_V7)) + case 10505: /* module 41 call 9 */ + CHECK_ERROR(_readMethod_utility_as_derivative_V7(c, &method->nested.utility_as_derivative_V7)) break; case 11008: /* module 43 call 0 */ CHECK_ERROR(_readMethod_externalagents_create_group_V7(c, &method->basic.externalagents_create_group_V7)) @@ -3528,18 +3510,6 @@ parser_error_t _readMethod_V7( case 12800: /* module 50 call 0 */ CHECK_ERROR(_readMethod_electionprovidermultiphase_submit_unsigned_V7(c, &method->basic.electionprovidermultiphase_submit_unsigned_V7)) break; - case 12801: /* module 50 call 1 */ - CHECK_ERROR(_readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7(c, &method->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7)) - break; - case 12802: /* module 50 call 2 */ - CHECK_ERROR(_readMethod_electionprovidermultiphase_set_emergency_election_result_V7(c, &method->basic.electionprovidermultiphase_set_emergency_election_result_V7)) - break; - case 12803: /* module 50 call 3 */ - CHECK_ERROR(_readMethod_electionprovidermultiphase_submit_V7(c, &method->basic.electionprovidermultiphase_submit_V7)) - break; - case 12804: /* module 50 call 4 */ - CHECK_ERROR(_readMethod_electionprovidermultiphase_governance_fallback_V7(c, &method->basic.electionprovidermultiphase_governance_fallback_V7)) - break; #endif default: return parser_unexpected_callIndex; @@ -3570,6 +3540,8 @@ const char* _getMethod_ModuleName_V7(uint8_t moduleIdx) return STR_MO_UTILITY; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS + case 25: + return STR_MO_SUDO; case 30: return STR_MO_CORPORATEACTION; case 31: @@ -3597,8 +3569,6 @@ const char* _getMethod_ModuleName_V7(uint8_t moduleIdx) return STR_MO_UPGRADECOMMITTEEMEMBERSHIP; case 19: return STR_MO_SESSION; - case 25: - return STR_MO_SUDO; case 26: return STR_MO_ASSET; case 27: @@ -3700,10 +3670,6 @@ const char* _getMethod_Name_V7(uint8_t moduleIdx, uint8_t callIdx) return STR_ME_VOTE; case 10496: /* module 41 call 0 */ return STR_ME_BATCH; - case 10503: /* module 41 call 7 */ - return STR_ME_BATCH_ATOMIC; - case 10504: /* module 41 call 8 */ - return STR_ME_BATCH_OPTIMISTIC; default: return _getMethod_Name_V7_ParserFull(callPrivIdx); } @@ -3716,6 +3682,14 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) switch (callPrivIdx) { #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS + case 6400: /* module 25 call 0 */ + return STR_ME_SUDO; + case 6401: /* module 25 call 1 */ + return STR_ME_SUDO_UNCHECKED_WEIGHT; + case 6402: /* module 25 call 2 */ + return STR_ME_SET_KEY; + case 6403: /* module 25 call 3 */ + return STR_ME_SUDO_AS; case 6685: /* module 26 call 29 */ return STR_ME_ADD_MANDATORY_MEDIATORS; case 6686: /* module 26 call 30 */ @@ -3750,8 +3724,36 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_CHANGE_RCV; case 7941: /* module 31 call 5 */ return STR_ME_REMOVE_BALLOT; + case 8448: /* module 33 call 0 */ + return STR_ME_SET_PRUNE_HISTORICAL_PIPS; + case 8449: /* module 33 call 1 */ + return STR_ME_SET_MIN_PROPOSAL_DEPOSIT; + case 8450: /* module 33 call 2 */ + return STR_ME_SET_DEFAULT_ENACTMENT_PERIOD; + case 8451: /* module 33 call 3 */ + return STR_ME_SET_PENDING_PIP_EXPIRY; + case 8452: /* module 33 call 4 */ + return STR_ME_SET_MAX_PIP_SKIP_COUNT; + case 8453: /* module 33 call 5 */ + return STR_ME_SET_ACTIVE_PIP_LIMIT; + case 8456: /* module 33 call 8 */ + return STR_ME_APPROVE_COMMITTEE_PROPOSAL; + case 8457: /* module 33 call 9 */ + return STR_ME_REJECT_PROPOSAL; + case 8458: /* module 33 call 10 */ + return STR_ME_PRUNE_PROPOSAL; + case 8459: /* module 33 call 11 */ + return STR_ME_RESCHEDULE_EXECUTION; + case 8460: /* module 33 call 12 */ + return STR_ME_CLEAR_SNAPSHOT; + case 8461: /* module 33 call 13 */ + return STR_ME_SNAPSHOT; case 8462: /* module 33 call 14 */ return STR_ME_ENACT_SNAPSHOT_RESULTS; + case 8463: /* module 33 call 15 */ + return STR_ME_EXECUTE_SCHEDULED_PIP; + case 8464: /* module 33 call 16 */ + return STR_ME_EXPIRE_SCHEDULED_PIP; case 8712: /* module 34 call 8 */ return STR_ME_ALLOW_IDENTITY_TO_CREATE_PORTFOLIOS; case 8713: /* module 34 call 9 */ @@ -3778,6 +3780,14 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_REJECT_INSTRUCTION_AS_MEDIATOR; case 12547: /* module 49 call 3 */ return STR_ME_CONTROLLER_TRANSFER; + case 12801: /* module 50 call 1 */ + return STR_ME_SET_MINIMUM_UNTRUSTED_SCORE; + case 12802: /* module 50 call 2 */ + return STR_ME_SET_EMERGENCY_ELECTION_RESULT; + case 12803: /* module 50 call 3 */ + return STR_ME_SUBMIT; + case 12804: /* module 50 call 4 */ + return STR_ME_GOVERNANCE_FALLBACK; #endif case 0: /* module 0 call 0 */ return STR_ME_REMARK; @@ -4003,14 +4013,6 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_SET_KEYS; case 4865: /* module 19 call 1 */ return STR_ME_PURGE_KEYS; - case 6400: /* module 25 call 0 */ - return STR_ME_SUDO; - case 6401: /* module 25 call 1 */ - return STR_ME_SUDO_UNCHECKED_WEIGHT; - case 6402: /* module 25 call 2 */ - return STR_ME_SET_KEY; - case 6403: /* module 25 call 3 */ - return STR_ME_SUDO_AS; case 6656: /* module 26 call 0 */ return STR_ME_REGISTER_UNIQUE_TICKER; case 6657: /* module 26 call 1 */ @@ -4071,6 +4073,8 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_REMOVE_ASSET_PRE_APPROVAL; case 6687: /* module 26 call 31 */ return STR_ME_LINK_TICKER_TO_ASSET_ID; + case 6688: /* module 26 call 32 */ + return STR_ME_UNLINK_TICKER_FROM_ASSET_ID; case 6912: /* module 27 call 0 */ return STR_ME_DISTRIBUTE; case 6913: /* module 27 call 1 */ @@ -4107,34 +4111,6 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_REMOVE_DEFAULT_TRUSTED_CLAIM_ISSUER; case 7432: /* module 29 call 8 */ return STR_ME_CHANGE_COMPLIANCE_REQUIREMENT; - case 8448: /* module 33 call 0 */ - return STR_ME_SET_PRUNE_HISTORICAL_PIPS; - case 8449: /* module 33 call 1 */ - return STR_ME_SET_MIN_PROPOSAL_DEPOSIT; - case 8450: /* module 33 call 2 */ - return STR_ME_SET_DEFAULT_ENACTMENT_PERIOD; - case 8451: /* module 33 call 3 */ - return STR_ME_SET_PENDING_PIP_EXPIRY; - case 8452: /* module 33 call 4 */ - return STR_ME_SET_MAX_PIP_SKIP_COUNT; - case 8453: /* module 33 call 5 */ - return STR_ME_SET_ACTIVE_PIP_LIMIT; - case 8456: /* module 33 call 8 */ - return STR_ME_APPROVE_COMMITTEE_PROPOSAL; - case 8457: /* module 33 call 9 */ - return STR_ME_REJECT_PROPOSAL; - case 8458: /* module 33 call 10 */ - return STR_ME_PRUNE_PROPOSAL; - case 8459: /* module 33 call 11 */ - return STR_ME_RESCHEDULE_EXECUTION; - case 8460: /* module 33 call 12 */ - return STR_ME_CLEAR_SNAPSHOT; - case 8461: /* module 33 call 13 */ - return STR_ME_SNAPSHOT; - case 8463: /* module 33 call 15 */ - return STR_ME_EXECUTE_SCHEDULED_PIP; - case 8464: /* module 33 call 16 */ - return STR_ME_EXPIRE_SCHEDULED_PIP; case 8704: /* module 34 call 0 */ return STR_ME_CREATE_PORTFOLIO; case 8705: /* module 34 call 1 */ @@ -4209,8 +4185,8 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_FORCE_BATCH; case 10501: /* module 41 call 5 */ return STR_ME_WITH_WEIGHT; - case 10502: /* module 41 call 6 */ - return STR_ME_BATCH_OLD; + case 10505: /* module 41 call 9 */ + return STR_ME_AS_DERIVATIVE; case 11008: /* module 43 call 0 */ return STR_ME_CREATE_GROUP; case 11009: /* module 43 call 1 */ @@ -4285,14 +4261,6 @@ const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) return STR_ME_REDEEM_NFT; case 12800: /* module 50 call 0 */ return STR_ME_SUBMIT_UNSIGNED; - case 12801: /* module 50 call 1 */ - return STR_ME_SET_MINIMUM_UNTRUSTED_SCORE; - case 12802: /* module 50 call 2 */ - return STR_ME_SET_EMERGENCY_ELECTION_RESULT; - case 12803: /* module 50 call 3 */ - return STR_ME_SUBMIT; - case 12804: /* module 50 call 4 */ - return STR_ME_GOVERNANCE_FALLBACK; #endif default: return NULL; @@ -4362,12 +4330,16 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 3; case 10496: /* module 41 call 0 */ return 1; - case 10503: /* module 41 call 7 */ - return 1; - case 10504: /* module 41 call 8 */ - return 1; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS + case 6400: /* module 25 call 0 */ + return 1; + case 6401: /* module 25 call 1 */ + return 2; + case 6402: /* module 25 call 2 */ + return 1; + case 6403: /* module 25 call 3 */ + return 2; case 6685: /* module 26 call 29 */ return 2; case 6686: /* module 26 call 30 */ @@ -4402,8 +4374,36 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 2; case 7941: /* module 31 call 5 */ return 1; + case 8448: /* module 33 call 0 */ + return 1; + case 8449: /* module 33 call 1 */ + return 1; + case 8450: /* module 33 call 2 */ + return 1; + case 8451: /* module 33 call 3 */ + return 1; + case 8452: /* module 33 call 4 */ + return 1; + case 8453: /* module 33 call 5 */ + return 1; + case 8456: /* module 33 call 8 */ + return 1; + case 8457: /* module 33 call 9 */ + return 1; + case 8458: /* module 33 call 10 */ + return 1; + case 8459: /* module 33 call 11 */ + return 2; + case 8460: /* module 33 call 12 */ + return 0; + case 8461: /* module 33 call 13 */ + return 0; case 8462: /* module 33 call 14 */ return 1; + case 8463: /* module 33 call 15 */ + return 1; + case 8464: /* module 33 call 16 */ + return 2; case 8712: /* module 34 call 8 */ return 1; case 8713: /* module 34 call 9 */ @@ -4430,6 +4430,14 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 2; case 12547: /* module 49 call 3 */ return 3; + case 12801: /* module 50 call 1 */ + return 1; + case 12802: /* module 50 call 2 */ + return 1; + case 12803: /* module 50 call 3 */ + return 1; + case 12804: /* module 50 call 4 */ + return 2; #endif case 0: /* module 0 call 0 */ return 1; @@ -4655,14 +4663,6 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 2; case 4865: /* module 19 call 1 */ return 0; - case 6400: /* module 25 call 0 */ - return 1; - case 6401: /* module 25 call 1 */ - return 2; - case 6402: /* module 25 call 2 */ - return 1; - case 6403: /* module 25 call 3 */ - return 2; case 6656: /* module 26 call 0 */ return 1; case 6657: /* module 26 call 1 */ @@ -4723,6 +4723,8 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 1; case 6687: /* module 26 call 31 */ return 2; + case 6688: /* module 26 call 32 */ + return 2; case 6912: /* module 27 call 0 */ return 7; case 6913: /* module 27 call 1 */ @@ -4759,34 +4761,6 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 2; case 7432: /* module 29 call 8 */ return 2; - case 8448: /* module 33 call 0 */ - return 1; - case 8449: /* module 33 call 1 */ - return 1; - case 8450: /* module 33 call 2 */ - return 1; - case 8451: /* module 33 call 3 */ - return 1; - case 8452: /* module 33 call 4 */ - return 1; - case 8453: /* module 33 call 5 */ - return 1; - case 8456: /* module 33 call 8 */ - return 1; - case 8457: /* module 33 call 9 */ - return 1; - case 8458: /* module 33 call 10 */ - return 1; - case 8459: /* module 33 call 11 */ - return 2; - case 8460: /* module 33 call 12 */ - return 0; - case 8461: /* module 33 call 13 */ - return 0; - case 8463: /* module 33 call 15 */ - return 1; - case 8464: /* module 33 call 16 */ - return 2; case 8704: /* module 34 call 0 */ return 1; case 8705: /* module 34 call 1 */ @@ -4861,8 +4835,8 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 1; case 10501: /* module 41 call 5 */ return 2; - case 10502: /* module 41 call 6 */ - return 1; + case 10505: /* module 41 call 9 */ + return 2; case 11008: /* module 43 call 0 */ return 2; case 11009: /* module 43 call 1 */ @@ -4937,14 +4911,6 @@ uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) return 4; case 12800: /* module 50 call 0 */ return 2; - case 12801: /* module 50 call 1 */ - return 1; - case 12802: /* module 50 call 2 */ - return 1; - case 12803: /* module 50 call 3 */ - return 1; - case 12804: /* module 50 call 4 */ - return 2; #endif default: return 0; @@ -5188,28 +5154,46 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 10503: /* module 41 call 7 */ +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS + case 6400: /* module 25 call 0 */ switch (itemIdx) { case 0: - return STR_IT_calls; + return STR_IT_call; default: return NULL; } - case 10504: /* module 41 call 8 */ + case 6401: /* module 25 call 1 */ switch (itemIdx) { case 0: - return STR_IT_calls; + return STR_IT_call; + case 1: + return STR_IT__weight; default: return NULL; } -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS - case 6685: /* module 26 call 29 */ + case 6402: /* module 25 call 2 */ switch (itemIdx) { case 0: - return STR_IT_asset_id; - case 1: - return STR_IT_mediators; + return STR_IT_new_; + default: + return NULL; + } + case 6403: /* module 25 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_who; + case 1: + return STR_IT_call; + default: + return NULL; + } + case 6685: /* module 26 call 29 */ + switch (itemIdx) { + case 0: + return STR_IT_asset_id; + case 1: + return STR_IT_mediators; default: return NULL; } @@ -5379,6 +5363,88 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } + case 8448: /* module 33 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_prune; + default: + return NULL; + } + case 8449: /* module 33 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_deposit; + default: + return NULL; + } + case 8450: /* module 33 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_duration; + default: + return NULL; + } + case 8451: /* module 33 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_expiry; + default: + return NULL; + } + case 8452: /* module 33 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_max; + default: + return NULL; + } + case 8453: /* module 33 call 5 */ + switch (itemIdx) { + case 0: + return STR_IT_limit; + default: + return NULL; + } + case 8456: /* module 33 call 8 */ + switch (itemIdx) { + case 0: + return STR_IT_id; + default: + return NULL; + } + case 8457: /* module 33 call 9 */ + switch (itemIdx) { + case 0: + return STR_IT_id; + default: + return NULL; + } + case 8458: /* module 33 call 10 */ + switch (itemIdx) { + case 0: + return STR_IT_id; + default: + return NULL; + } + case 8459: /* module 33 call 11 */ + switch (itemIdx) { + case 0: + return STR_IT_id; + case 1: + return STR_IT_until; + default: + return NULL; + } + case 8460: /* module 33 call 12 */ + switch (itemIdx) { + default: + return NULL; + } + case 8461: /* module 33 call 13 */ + switch (itemIdx) { + default: + return NULL; + } case 8462: /* module 33 call 14 */ switch (itemIdx) { case 0: @@ -5386,6 +5452,22 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } + case 8463: /* module 33 call 15 */ + switch (itemIdx) { + case 0: + return STR_IT_id; + default: + return NULL; + } + case 8464: /* module 33 call 16 */ + switch (itemIdx) { + case 0: + return STR_IT_did; + case 1: + return STR_IT_id; + default: + return NULL; + } case 8712: /* module 34 call 8 */ switch (itemIdx) { case 0: @@ -5531,6 +5613,36 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } + case 12801: /* module 50 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_maybe_next_score; + default: + return NULL; + } + case 12802: /* module 50 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_supports; + default: + return NULL; + } + case 12803: /* module 50 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_raw_solution; + default: + return NULL; + } + case 12804: /* module 50 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_maybe_max_voters; + case 1: + return STR_IT_maybe_max_targets; + default: + return NULL; + } #endif case 0: /* module 0 call 0 */ switch (itemIdx) { @@ -6426,38 +6538,6 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 6400: /* module 25 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_call; - default: - return NULL; - } - case 6401: /* module 25 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_call; - case 1: - return STR_IT__weight; - default: - return NULL; - } - case 6402: /* module 25 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_new_; - default: - return NULL; - } - case 6403: /* module 25 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_who; - case 1: - return STR_IT_call; - default: - return NULL; - } case 6656: /* module 26 call 0 */ switch (itemIdx) { case 0: @@ -6738,6 +6818,15 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } + case 6688: /* module 26 call 32 */ + switch (itemIdx) { + case 0: + return STR_IT_ticker; + case 1: + return STR_IT_asset_id; + default: + return NULL; + } case 6912: /* module 27 call 0 */ switch (itemIdx) { case 0: @@ -6896,207 +6985,109 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 8448: /* module 33 call 0 */ + case 8704: /* module 34 call 0 */ switch (itemIdx) { case 0: - return STR_IT_prune; + return STR_IT_name; default: return NULL; } - case 8449: /* module 33 call 1 */ + case 8705: /* module 34 call 1 */ switch (itemIdx) { case 0: - return STR_IT_deposit; + return STR_IT_num; default: return NULL; } - case 8450: /* module 33 call 2 */ + case 8706: /* module 34 call 2 */ switch (itemIdx) { case 0: - return STR_IT_duration; + return STR_IT_num; + case 1: + return STR_IT_to_name; default: return NULL; } - case 8451: /* module 33 call 3 */ + case 8707: /* module 34 call 3 */ switch (itemIdx) { case 0: - return STR_IT_expiry; + return STR_IT_pid; default: return NULL; } - case 8452: /* module 33 call 4 */ + case 8708: /* module 34 call 4 */ switch (itemIdx) { case 0: - return STR_IT_max; + return STR_IT_auth_id; default: return NULL; } - case 8453: /* module 33 call 5 */ + case 8709: /* module 34 call 5 */ switch (itemIdx) { case 0: - return STR_IT_limit; + return STR_IT_from; + case 1: + return STR_IT_to; + case 2: + return STR_IT_funds; default: return NULL; } - case 8456: /* module 33 call 8 */ + case 8710: /* module 34 call 6 */ switch (itemIdx) { case 0: - return STR_IT_id; + return STR_IT_asset_id; + case 1: + return STR_IT_portfolio_id; default: return NULL; } - case 8457: /* module 33 call 9 */ + case 8711: /* module 34 call 7 */ switch (itemIdx) { case 0: - return STR_IT_id; + return STR_IT_asset_id; + case 1: + return STR_IT_portfolio_id; default: return NULL; } - case 8458: /* module 33 call 10 */ + case 8960: /* module 35 call 0 */ switch (itemIdx) { case 0: - return STR_IT_id; + return STR_IT_coefficient; default: return NULL; } - case 8459: /* module 33 call 11 */ + case 9472: /* module 37 call 0 */ switch (itemIdx) { case 0: - return STR_IT_id; + return STR_IT_details; case 1: - return STR_IT_until; + return STR_IT_signers; + case 2: + return STR_IT_typ; default: return NULL; } - case 8460: /* module 33 call 12 */ + case 9473: /* module 37 call 1 */ switch (itemIdx) { + case 0: + return STR_IT_id; + case 1: + return STR_IT_details; default: return NULL; } - case 8461: /* module 33 call 13 */ + case 9474: /* module 37 call 2 */ switch (itemIdx) { + case 0: + return STR_IT_id; + case 1: + return STR_IT_typ; default: return NULL; } - case 8463: /* module 33 call 15 */ - switch (itemIdx) { - case 0: - return STR_IT_id; - default: - return NULL; - } - case 8464: /* module 33 call 16 */ - switch (itemIdx) { - case 0: - return STR_IT_did; - case 1: - return STR_IT_id; - default: - return NULL; - } - case 8704: /* module 34 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_name; - default: - return NULL; - } - case 8705: /* module 34 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_num; - default: - return NULL; - } - case 8706: /* module 34 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_num; - case 1: - return STR_IT_to_name; - default: - return NULL; - } - case 8707: /* module 34 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_pid; - default: - return NULL; - } - case 8708: /* module 34 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_auth_id; - default: - return NULL; - } - case 8709: /* module 34 call 5 */ - switch (itemIdx) { - case 0: - return STR_IT_from; - case 1: - return STR_IT_to; - case 2: - return STR_IT_funds; - default: - return NULL; - } - case 8710: /* module 34 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_asset_id; - case 1: - return STR_IT_portfolio_id; - default: - return NULL; - } - case 8711: /* module 34 call 7 */ - switch (itemIdx) { - case 0: - return STR_IT_asset_id; - case 1: - return STR_IT_portfolio_id; - default: - return NULL; - } - case 8960: /* module 35 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_coefficient; - default: - return NULL; - } - case 9472: /* module 37 call 0 */ - switch (itemIdx) { - case 0: - return STR_IT_details; - case 1: - return STR_IT_signers; - case 2: - return STR_IT_typ; - default: - return NULL; - } - case 9473: /* module 37 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_id; - case 1: - return STR_IT_details; - default: - return NULL; - } - case 9474: /* module 37 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_id; - case 1: - return STR_IT_typ; - default: - return NULL; - } - case 9475: /* module 37 call 3 */ + case 9475: /* module 37 call 3 */ switch (itemIdx) { case 0: return STR_IT_id; @@ -7375,10 +7366,12 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 10502: /* module 41 call 6 */ + case 10505: /* module 41 call 9 */ switch (itemIdx) { case 0: - return STR_IT_calls; + return STR_IT_index; + case 1: + return STR_IT_call; default: return NULL; } @@ -7797,36 +7790,6 @@ const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 12801: /* module 50 call 1 */ - switch (itemIdx) { - case 0: - return STR_IT_maybe_next_score; - default: - return NULL; - } - case 12802: /* module 50 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_supports; - default: - return NULL; - } - case 12803: /* module 50 call 3 */ - switch (itemIdx) { - case 0: - return STR_IT_raw_solution; - default: - return NULL; - } - case 12804: /* module 50 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_maybe_max_voters; - case 1: - return STR_IT_maybe_max_targets; - default: - return NULL; - } #endif default: return NULL; @@ -8209,32 +8172,62 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } - case 10503: /* module 41 call 7 */ +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS + case 6400: /* module 25 call 0 */ switch (itemIdx) { - case 0: /* utility_batch_atomic_V7 - calls */; - return _toStringVecCall( - &m->nested.utility_batch_atomic_V7.calls, + case 0: /* sudo_sudo_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_V7.call, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 10504: /* module 41 call 8 */ + case 6401: /* module 25 call 1 */ switch (itemIdx) { - case 0: /* utility_batch_optimistic_V7 - calls */; - return _toStringVecCall( - &m->nested.utility_batch_optimistic_V7.calls, + case 0: /* sudo_sudo_unchecked_weight_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_unchecked_weight_V7.call, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* sudo_sudo_unchecked_weight_V7 - _weight */; + return _toStringWeight( + &m->basic.sudo_sudo_unchecked_weight_V7._weight, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6402: /* module 25 call 2 */ + switch (itemIdx) { + case 0: /* sudo_set_key_V7 - new_ */; + return _toStringLookupasStaticLookupSource( + &m->basic.sudo_set_key_V7.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6403: /* module 25 call 3 */ + switch (itemIdx) { + case 0: /* sudo_sudo_as_V7 - who */; + return _toStringLookupasStaticLookupSource( + &m->basic.sudo_sudo_as_V7.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* sudo_sudo_as_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_as_V7.call, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS case 6685: /* module 26 call 29 */ switch (itemIdx) { case 0: /* asset_add_mandatory_mediators_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_add_mandatory_mediators_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8249,7 +8242,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6686: /* module 26 call 30 */ switch (itemIdx) { case 0: /* asset_remove_mandatory_mediators_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_remove_mandatory_mediators_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8274,7 +8267,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7681: /* module 30 call 1 */ switch (itemIdx) { case 0: /* corporateaction_set_default_targets_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.corporateaction_set_default_targets_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8289,7 +8282,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7682: /* module 30 call 2 */ switch (itemIdx) { case 0: /* corporateaction_set_default_withholding_tax_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.corporateaction_set_default_withholding_tax_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8304,7 +8297,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7683: /* module 30 call 3 */ switch (itemIdx) { case 0: /* corporateaction_set_did_withholding_tax_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.corporateaction_set_did_withholding_tax_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8324,7 +8317,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7684: /* module 30 call 4 */ switch (itemIdx) { case 0: /* corporateaction_initiate_corporate_action_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.corporateaction_initiate_corporate_action_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -8419,7 +8412,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 2: /* corporateaction_initiate_corporate_action_and_distribute_V7 - currency */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.currency, outValue, outValueLen, pageIdx, pageCount); @@ -8541,6 +8534,121 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } + case 8448: /* module 33 call 0 */ + switch (itemIdx) { + case 0: /* pips_set_prune_historical_pips_V7 - prune */; + return _toStringbool( + &m->nested.pips_set_prune_historical_pips_V7.prune, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8449: /* module 33 call 1 */ + switch (itemIdx) { + case 0: /* pips_set_min_proposal_deposit_V7 - deposit */; + return _toStringBalance( + &m->nested.pips_set_min_proposal_deposit_V7.deposit, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8450: /* module 33 call 2 */ + switch (itemIdx) { + case 0: /* pips_set_default_enactment_period_V7 - duration */; + return _toStringBlockNumber( + &m->nested.pips_set_default_enactment_period_V7.duration, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8451: /* module 33 call 3 */ + switch (itemIdx) { + case 0: /* pips_set_pending_pip_expiry_V7 - expiry */; + return _toStringMaybeBlockBlockNumber( + &m->nested.pips_set_pending_pip_expiry_V7.expiry, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8452: /* module 33 call 4 */ + switch (itemIdx) { + case 0: /* pips_set_max_pip_skip_count_V7 - max */; + return _toStringSkippedCount( + &m->nested.pips_set_max_pip_skip_count_V7.max, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8453: /* module 33 call 5 */ + switch (itemIdx) { + case 0: /* pips_set_active_pip_limit_V7 - limit */; + return _toStringu32( + &m->nested.pips_set_active_pip_limit_V7.limit, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8456: /* module 33 call 8 */ + switch (itemIdx) { + case 0: /* pips_approve_committee_proposal_V7 - id */; + return _toStringPipId( + &m->nested.pips_approve_committee_proposal_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8457: /* module 33 call 9 */ + switch (itemIdx) { + case 0: /* pips_reject_proposal_V7 - id */; + return _toStringPipId( + &m->nested.pips_reject_proposal_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8458: /* module 33 call 10 */ + switch (itemIdx) { + case 0: /* pips_prune_proposal_V7 - id */; + return _toStringPipId( + &m->nested.pips_prune_proposal_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8459: /* module 33 call 11 */ + switch (itemIdx) { + case 0: /* pips_reschedule_execution_V7 - id */; + return _toStringPipId( + &m->nested.pips_reschedule_execution_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* pips_reschedule_execution_V7 - until */; + return _toStringOptionBlockNumber( + &m->nested.pips_reschedule_execution_V7.until, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8460: /* module 33 call 12 */ + switch (itemIdx) { + default: + return parser_no_data; + } + case 8461: /* module 33 call 13 */ + switch (itemIdx) { + default: + return parser_no_data; + } case 8462: /* module 33 call 14 */ switch (itemIdx) { case 0: /* pips_enact_snapshot_results_V7 - results */; @@ -8551,6 +8659,31 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } + case 8463: /* module 33 call 15 */ + switch (itemIdx) { + case 0: /* pips_execute_scheduled_pip_V7 - id */; + return _toStringPipId( + &m->nested.pips_execute_scheduled_pip_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 8464: /* module 33 call 16 */ + switch (itemIdx) { + case 0: /* pips_expire_scheduled_pip_V7 - did */; + return _toStringIdentityId( + &m->nested.pips_expire_scheduled_pip_V7.did, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* pips_expire_scheduled_pip_V7 - id */; + return _toStringPipId( + &m->nested.pips_expire_scheduled_pip_V7.id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } case 8712: /* module 34 call 8 */ switch (itemIdx) { case 0: /* portfolio_allow_identity_to_create_portfolios_V7 - trusted_identity */; @@ -8808,9 +8941,54 @@ parser_error_t _getMethod_ItemValue_V7( &m->basic.nft_controller_transfer_V7.source_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* nft_controller_transfer_V7 - callers_portfolio_kind */; - return _toStringPortfolioKind( - &m->basic.nft_controller_transfer_V7.callers_portfolio_kind, + case 2: /* nft_controller_transfer_V7 - callers_portfolio_kind */; + return _toStringPortfolioKind( + &m->basic.nft_controller_transfer_V7.callers_portfolio_kind, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12801: /* module 50 call 1 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_set_minimum_untrusted_score_V7 - maybe_next_score */; + return _toStringOptionElectionScore( + &m->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7.maybe_next_score, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12802: /* module 50 call 2 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_set_emergency_election_result_V7 - supports */; + return _toStringSupportsAccountId( + &m->basic.electionprovidermultiphase_set_emergency_election_result_V7.supports, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12803: /* module 50 call 3 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_submit_V7 - raw_solution */; + return _toStringBoxRawSolutionSolutionOfMinerConfig( + &m->basic.electionprovidermultiphase_submit_V7.raw_solution, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12804: /* module 50 call 4 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_voters */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_voters, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_targets */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -10212,56 +10390,6 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } - case 6400: /* module 25 call 0 */ - switch (itemIdx) { - case 0: /* sudo_sudo_V7 - call */; - return _toStringCall( - &m->basic.sudo_sudo_V7.call, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6401: /* module 25 call 1 */ - switch (itemIdx) { - case 0: /* sudo_sudo_unchecked_weight_V7 - call */; - return _toStringCall( - &m->basic.sudo_sudo_unchecked_weight_V7.call, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* sudo_sudo_unchecked_weight_V7 - _weight */; - return _toStringWeight( - &m->basic.sudo_sudo_unchecked_weight_V7._weight, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6402: /* module 25 call 2 */ - switch (itemIdx) { - case 0: /* sudo_set_key_V7 - new_ */; - return _toStringLookupasStaticLookupSource( - &m->basic.sudo_set_key_V7.new_, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 6403: /* module 25 call 3 */ - switch (itemIdx) { - case 0: /* sudo_sudo_as_V7 - who */; - return _toStringLookupasStaticLookupSource( - &m->basic.sudo_sudo_as_V7.who, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* sudo_sudo_as_V7 - call */; - return _toStringCall( - &m->basic.sudo_sudo_as_V7.call, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } case 6656: /* module 26 call 0 */ switch (itemIdx) { case 0: /* asset_register_unique_ticker_V7 - ticker */; @@ -10325,7 +10453,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6660: /* module 26 call 4 */ switch (itemIdx) { case 0: /* asset_freeze_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_freeze_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10335,7 +10463,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6661: /* module 26 call 5 */ switch (itemIdx) { case 0: /* asset_unfreeze_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_unfreeze_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10345,7 +10473,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6662: /* module 26 call 6 */ switch (itemIdx) { case 0: /* asset_rename_asset_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_rename_asset_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10360,7 +10488,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6663: /* module 26 call 7 */ switch (itemIdx) { case 0: /* asset_issue_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_issue_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10380,7 +10508,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6664: /* module 26 call 8 */ switch (itemIdx) { case 0: /* asset_redeem_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_redeem_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10400,7 +10528,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6665: /* module 26 call 9 */ switch (itemIdx) { case 0: /* asset_make_divisible_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_make_divisible_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10415,7 +10543,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 1: /* asset_add_documents_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_add_documents_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10430,7 +10558,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 1: /* asset_remove_documents_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_remove_documents_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10440,7 +10568,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6668: /* module 26 call 12 */ switch (itemIdx) { case 0: /* asset_set_funding_round_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_set_funding_round_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10455,7 +10583,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6669: /* module 26 call 13 */ switch (itemIdx) { case 0: /* asset_update_identifiers_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.asset_update_identifiers_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10470,7 +10598,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6670: /* module 26 call 14 */ switch (itemIdx) { case 0: /* asset_controller_transfer_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_controller_transfer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10530,7 +10658,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6673: /* module 26 call 17 */ switch (itemIdx) { case 0: /* asset_set_asset_metadata_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_set_asset_metadata_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10555,7 +10683,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6674: /* module 26 call 18 */ switch (itemIdx) { case 0: /* asset_set_asset_metadata_details_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_set_asset_metadata_details_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10575,7 +10703,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6675: /* module 26 call 19 */ switch (itemIdx) { case 0: /* asset_register_and_set_local_asset_metadata_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_register_and_set_local_asset_metadata_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10605,7 +10733,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6676: /* module 26 call 20 */ switch (itemIdx) { case 0: /* asset_register_asset_metadata_local_type_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_register_asset_metadata_local_type_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10640,7 +10768,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6678: /* module 26 call 22 */ switch (itemIdx) { case 0: /* asset_update_asset_type_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_update_asset_type_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10655,7 +10783,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6679: /* module 26 call 23 */ switch (itemIdx) { case 0: /* asset_remove_local_metadata_key_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_remove_local_metadata_key_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10670,7 +10798,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6680: /* module 26 call 24 */ switch (itemIdx) { case 0: /* asset_remove_metadata_value_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_remove_metadata_value_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10685,7 +10813,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6681: /* module 26 call 25 */ switch (itemIdx) { case 0: /* asset_exempt_asset_affirmation_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_exempt_asset_affirmation_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10695,7 +10823,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6682: /* module 26 call 26 */ switch (itemIdx) { case 0: /* asset_remove_asset_affirmation_exemption_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_remove_asset_affirmation_exemption_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10705,7 +10833,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6683: /* module 26 call 27 */ switch (itemIdx) { case 0: /* asset_pre_approve_asset_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_pre_approve_asset_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10715,7 +10843,7 @@ parser_error_t _getMethod_ItemValue_V7( case 6684: /* module 26 call 28 */ switch (itemIdx) { case 0: /* asset_remove_asset_pre_approval_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_remove_asset_pre_approval_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10730,13 +10858,28 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 1: /* asset_link_ticker_to_asset_id_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.asset_link_ticker_to_asset_id_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } + case 6688: /* module 26 call 32 */ + switch (itemIdx) { + case 0: /* asset_unlink_ticker_from_asset_id_V7 - ticker */; + return _toStringTicker( + &m->basic.asset_unlink_ticker_from_asset_id_V7.ticker, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* asset_unlink_ticker_from_asset_id_V7 - asset_id */; + return _toStringAssetId( + &m->basic.asset_unlink_ticker_from_asset_id_V7.asset_id, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } case 6912: /* module 27 call 0 */ switch (itemIdx) { case 0: /* capitaldistribution_distribute_V7 - ca_id */; @@ -10750,7 +10893,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 2: /* capitaldistribution_distribute_V7 - currency */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.capitaldistribution_distribute_V7.currency, outValue, outValueLen, pageIdx, pageCount); @@ -10825,7 +10968,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7168: /* module 28 call 0 */ switch (itemIdx) { case 0: /* checkpoint_create_checkpoint_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.checkpoint_create_checkpoint_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10845,7 +10988,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7170: /* module 28 call 2 */ switch (itemIdx) { case 0: /* checkpoint_create_schedule_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.checkpoint_create_schedule_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10860,7 +11003,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7171: /* module 28 call 3 */ switch (itemIdx) { case 0: /* checkpoint_remove_schedule_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.checkpoint_remove_schedule_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10875,7 +11018,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7424: /* module 29 call 0 */ switch (itemIdx) { case 0: /* compliancemanager_add_compliance_requirement_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_add_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10895,7 +11038,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7425: /* module 29 call 1 */ switch (itemIdx) { case 0: /* compliancemanager_remove_compliance_requirement_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_remove_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10910,7 +11053,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7426: /* module 29 call 2 */ switch (itemIdx) { case 0: /* compliancemanager_replace_asset_compliance_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_replace_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10925,7 +11068,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7427: /* module 29 call 3 */ switch (itemIdx) { case 0: /* compliancemanager_reset_asset_compliance_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_reset_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10935,7 +11078,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7428: /* module 29 call 4 */ switch (itemIdx) { case 0: /* compliancemanager_pause_asset_compliance_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_pause_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10945,7 +11088,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7429: /* module 29 call 5 */ switch (itemIdx) { case 0: /* compliancemanager_resume_asset_compliance_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_resume_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10955,7 +11098,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7430: /* module 29 call 6 */ switch (itemIdx) { case 0: /* compliancemanager_add_default_trusted_claim_issuer_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_add_default_trusted_claim_issuer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10970,7 +11113,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7431: /* module 29 call 7 */ switch (itemIdx) { case 0: /* compliancemanager_remove_default_trusted_claim_issuer_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_remove_default_trusted_claim_issuer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10985,7 +11128,7 @@ parser_error_t _getMethod_ItemValue_V7( case 7432: /* module 29 call 8 */ switch (itemIdx) { case 0: /* compliancemanager_change_compliance_requirement_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.compliancemanager_change_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -10997,146 +11140,6 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } - case 8448: /* module 33 call 0 */ - switch (itemIdx) { - case 0: /* pips_set_prune_historical_pips_V7 - prune */; - return _toStringbool( - &m->nested.pips_set_prune_historical_pips_V7.prune, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8449: /* module 33 call 1 */ - switch (itemIdx) { - case 0: /* pips_set_min_proposal_deposit_V7 - deposit */; - return _toStringBalance( - &m->nested.pips_set_min_proposal_deposit_V7.deposit, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8450: /* module 33 call 2 */ - switch (itemIdx) { - case 0: /* pips_set_default_enactment_period_V7 - duration */; - return _toStringBlockNumber( - &m->nested.pips_set_default_enactment_period_V7.duration, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8451: /* module 33 call 3 */ - switch (itemIdx) { - case 0: /* pips_set_pending_pip_expiry_V7 - expiry */; - return _toStringMaybeBlockBlockNumber( - &m->nested.pips_set_pending_pip_expiry_V7.expiry, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8452: /* module 33 call 4 */ - switch (itemIdx) { - case 0: /* pips_set_max_pip_skip_count_V7 - max */; - return _toStringSkippedCount( - &m->nested.pips_set_max_pip_skip_count_V7.max, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8453: /* module 33 call 5 */ - switch (itemIdx) { - case 0: /* pips_set_active_pip_limit_V7 - limit */; - return _toStringu32( - &m->nested.pips_set_active_pip_limit_V7.limit, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8456: /* module 33 call 8 */ - switch (itemIdx) { - case 0: /* pips_approve_committee_proposal_V7 - id */; - return _toStringPipId( - &m->nested.pips_approve_committee_proposal_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8457: /* module 33 call 9 */ - switch (itemIdx) { - case 0: /* pips_reject_proposal_V7 - id */; - return _toStringPipId( - &m->nested.pips_reject_proposal_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8458: /* module 33 call 10 */ - switch (itemIdx) { - case 0: /* pips_prune_proposal_V7 - id */; - return _toStringPipId( - &m->nested.pips_prune_proposal_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8459: /* module 33 call 11 */ - switch (itemIdx) { - case 0: /* pips_reschedule_execution_V7 - id */; - return _toStringPipId( - &m->nested.pips_reschedule_execution_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* pips_reschedule_execution_V7 - until */; - return _toStringOptionBlockNumber( - &m->nested.pips_reschedule_execution_V7.until, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8460: /* module 33 call 12 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 8461: /* module 33 call 13 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 8463: /* module 33 call 15 */ - switch (itemIdx) { - case 0: /* pips_execute_scheduled_pip_V7 - id */; - return _toStringPipId( - &m->nested.pips_execute_scheduled_pip_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 8464: /* module 33 call 16 */ - switch (itemIdx) { - case 0: /* pips_expire_scheduled_pip_V7 - did */; - return _toStringIdentityId( - &m->nested.pips_expire_scheduled_pip_V7.did, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* pips_expire_scheduled_pip_V7 - id */; - return _toStringPipId( - &m->nested.pips_expire_scheduled_pip_V7.id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } case 8704: /* module 34 call 0 */ switch (itemIdx) { case 0: /* portfolio_create_portfolio_V7 - name */; @@ -11215,7 +11218,7 @@ parser_error_t _getMethod_ItemValue_V7( case 8710: /* module 34 call 6 */ switch (itemIdx) { case 0: /* portfolio_pre_approve_portfolio_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.portfolio_pre_approve_portfolio_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11230,7 +11233,7 @@ parser_error_t _getMethod_ItemValue_V7( case 8711: /* module 34 call 7 */ switch (itemIdx) { case 0: /* portfolio_remove_portfolio_pre_approval_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.portfolio_remove_portfolio_pre_approval_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11325,7 +11328,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9476: /* module 37 call 4 */ switch (itemIdx) { case 0: /* settlement_set_venue_filtering_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.settlement_set_venue_filtering_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11340,7 +11343,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9477: /* module 37 call 5 */ switch (itemIdx) { case 0: /* settlement_allow_venues_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.settlement_allow_venues_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11355,7 +11358,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9478: /* module 37 call 6 */ switch (itemIdx) { case 0: /* settlement_disallow_venues_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->nested.settlement_disallow_venues_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11565,7 +11568,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 1: /* sto_create_fundraiser_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_create_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11575,7 +11578,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 3: /* sto_create_fundraiser_V7 - raising_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_create_fundraiser_V7.raising_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11625,7 +11628,7 @@ parser_error_t _getMethod_ItemValue_V7( outValue, outValueLen, pageIdx, pageCount); case 2: /* sto_invest_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_invest_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11655,7 +11658,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9986: /* module 39 call 2 */ switch (itemIdx) { case 0: /* sto_freeze_fundraiser_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_freeze_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11670,7 +11673,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9987: /* module 39 call 3 */ switch (itemIdx) { case 0: /* sto_unfreeze_fundraiser_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_unfreeze_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11685,7 +11688,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9988: /* module 39 call 4 */ switch (itemIdx) { case 0: /* sto_modify_fundraiser_window_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_modify_fundraiser_window_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11710,7 +11713,7 @@ parser_error_t _getMethod_ItemValue_V7( case 9989: /* module 39 call 5 */ switch (itemIdx) { case 0: /* sto_stop_V7 - offering_asset */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.sto_stop_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); @@ -11766,7 +11769,7 @@ parser_error_t _getMethod_ItemValue_V7( switch (itemIdx) { case 0: /* utility_batch_all_V7 - calls */; return _toStringVecCall( - &m->basic.utility_batch_all_V7.calls, + &m->nested.utility_batch_all_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -11776,12 +11779,12 @@ parser_error_t _getMethod_ItemValue_V7( switch (itemIdx) { case 0: /* utility_dispatch_as_V7 - as_origin */; return _toStringBoxPalletsOrigin( - &m->basic.utility_dispatch_as_V7.as_origin, + &m->nested.utility_dispatch_as_V7.as_origin, outValue, outValueLen, pageIdx, pageCount); case 1: /* utility_dispatch_as_V7 - call */; return _toStringCall( - &m->basic.utility_dispatch_as_V7.call, + &m->nested.utility_dispatch_as_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -11791,7 +11794,7 @@ parser_error_t _getMethod_ItemValue_V7( switch (itemIdx) { case 0: /* utility_force_batch_V7 - calls */; return _toStringVecCall( - &m->basic.utility_force_batch_V7.calls, + &m->nested.utility_force_batch_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -11812,11 +11815,16 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } - case 10502: /* module 41 call 6 */ + case 10505: /* module 41 call 9 */ switch (itemIdx) { - case 0: /* utility_batch_old_V7 - calls */; - return _toStringVecCall( - &m->basic.utility_batch_old_V7.calls, + case 0: /* utility_as_derivative_V7 - index */; + return _toStringu16( + &m->nested.utility_as_derivative_V7.index, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* utility_as_derivative_V7 - call */; + return _toStringCall( + &m->nested.utility_as_derivative_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -11825,7 +11833,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11008: /* module 43 call 0 */ switch (itemIdx) { case 0: /* externalagents_create_group_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_create_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11840,7 +11848,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11009: /* module 43 call 1 */ switch (itemIdx) { case 0: /* externalagents_set_group_permissions_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_set_group_permissions_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11860,7 +11868,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11010: /* module 43 call 2 */ switch (itemIdx) { case 0: /* externalagents_remove_agent_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_remove_agent_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11875,7 +11883,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11011: /* module 43 call 3 */ switch (itemIdx) { case 0: /* externalagents_abdicate_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_abdicate_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11885,7 +11893,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11012: /* module 43 call 4 */ switch (itemIdx) { case 0: /* externalagents_change_group_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_change_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11915,7 +11923,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11014: /* module 43 call 6 */ switch (itemIdx) { case 0: /* externalagents_create_group_and_add_auth_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_create_group_and_add_auth_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -11940,7 +11948,7 @@ parser_error_t _getMethod_ItemValue_V7( case 11015: /* module 43 call 7 */ switch (itemIdx) { case 0: /* externalagents_create_and_change_custom_group_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.externalagents_create_and_change_custom_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -12505,7 +12513,7 @@ parser_error_t _getMethod_ItemValue_V7( case 12544: /* module 49 call 0 */ switch (itemIdx) { case 0: /* nft_create_nft_collection_V7 - asset_id */; - return _toStringOptionAssetID( + return _toStringOptionAssetId( &m->basic.nft_create_nft_collection_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -12525,7 +12533,7 @@ parser_error_t _getMethod_ItemValue_V7( case 12545: /* module 49 call 1 */ switch (itemIdx) { case 0: /* nft_issue_nft_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.nft_issue_nft_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -12545,7 +12553,7 @@ parser_error_t _getMethod_ItemValue_V7( case 12546: /* module 49 call 2 */ switch (itemIdx) { case 0: /* nft_redeem_nft_V7 - asset_id */; - return _toStringAssetID( + return _toStringAssetId( &m->basic.nft_redeem_nft_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); @@ -12582,51 +12590,6 @@ parser_error_t _getMethod_ItemValue_V7( default: return parser_no_data; } - case 12801: /* module 50 call 1 */ - switch (itemIdx) { - case 0: /* electionprovidermultiphase_set_minimum_untrusted_score_V7 - maybe_next_score */; - return _toStringOptionElectionScore( - &m->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7.maybe_next_score, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 12802: /* module 50 call 2 */ - switch (itemIdx) { - case 0: /* electionprovidermultiphase_set_emergency_election_result_V7 - supports */; - return _toStringSupportsAccountId( - &m->basic.electionprovidermultiphase_set_emergency_election_result_V7.supports, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 12803: /* module 50 call 3 */ - switch (itemIdx) { - case 0: /* electionprovidermultiphase_submit_V7 - raw_solution */; - return _toStringBoxRawSolutionSolutionOfMinerConfig( - &m->basic.electionprovidermultiphase_submit_V7.raw_solution, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 12804: /* module 50 call 4 */ - switch (itemIdx) { - case 0: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_voters */; - return _toStringOptionu32( - &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_voters, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_targets */; - return _toStringOptionu32( - &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_targets, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } #endif default: return parser_ok; @@ -12695,6 +12658,7 @@ bool _getMethod_IsNestingSupported_V7(uint8_t moduleIdx, uint8_t callIdx) case 6685: // Asset:Add mandatory mediators case 6686: // Asset:Remove mandatory mediators case 6687: // Asset:Link ticker to asset id + case 6688: // Asset:Unlink ticker from asset id case 8707: // Portfolio:Quit portfolio custody case 8708: // Portfolio:Accept portfolio custody case 8710: // Portfolio:Pre approve portfolio @@ -12721,11 +12685,7 @@ bool _getMethod_IsNestingSupported_V7(uint8_t moduleIdx, uint8_t callIdx) case 9987: // Sto:Unfreeze fundraiser case 9988: // Sto:Modify fundraiser window case 9989: // Sto:Stop - case 10498: // Utility:Batch all - case 10499: // Utility:Dispatch as - case 10500: // Utility:Force batch case 10501: // Utility:With weight - case 10502: // Utility:Batch old case 11008: // ExternalAgents:Create group case 11009: // ExternalAgents:Set group permissions case 11010: // ExternalAgents:Remove agent diff --git a/app/src/substrate/substrate_functions.h b/app/src/substrate/substrate_functions.h index 07b4689e..a25b9871 100644 --- a/app/src/substrate/substrate_functions.h +++ b/app/src/substrate/substrate_functions.h @@ -34,7 +34,7 @@ parser_error_t _readCompactu32(parser_context_t* c, pd_Compactu32_t* v); parser_error_t _readCompactu64(parser_context_t* c, pd_Compactu64_t* v); parser_error_t _readCallImpl(parser_context_t* c, pd_Call_t* v, pd_MethodNested_t* m); -parser_error_t _readAssetID(parser_context_t* c, pd_AssetID_t* v); +parser_error_t _readAssetId(parser_context_t* c, pd_AssetId_t* v); parser_error_t _readIdentityId(parser_context_t* c, pd_IdentityId_t* v); parser_error_t _readScope(parser_context_t* c, pd_Scope_t* v); parser_error_t _readCddId(parser_context_t* c, pd_CddId_t* v); @@ -72,7 +72,7 @@ parser_error_t _readMemo(parser_context_t* c, pd_Memo_t* v); parser_error_t _readSr25519Signature(parser_context_t* c, pd_Sr25519Signature_t* v); parser_error_t _readTax(parser_context_t* c, pd_Tax_t* v); parser_error_t _readTupleCompactu16Compactu16(parser_context_t* c, pd_TupleCompactu16Compactu16_t* v); -parser_error_t _readVecAssetID(parser_context_t* c, pd_VecAssetID_t* v); +parser_error_t _readVecAssetId(parser_context_t* c, pd_VecAssetId_t* v); parser_error_t _readVecPalletPermissions(parser_context_t* c, pd_VecPalletPermissions_t* v); parser_error_t _readVecPortfolioId(parser_context_t* c, pd_VecPortfolioId_t* v); parser_error_t _readVecTrustedIssuer(parser_context_t* c, pd_VecTrustedIssuer_t* v); @@ -285,7 +285,7 @@ parser_error_t _readInstructionId(parser_context_t* c, pd_InstructionId_t* v); parser_error_t _readKeys(parser_context_t* c, pd_Keys_t* v); parser_error_t _readMemberCount(parser_context_t* c, pd_MemberCount_t* v); parser_error_t _readOptionAssetCount(parser_context_t* c, pd_OptionAssetCount_t* v); -parser_error_t _readOptionAssetID(parser_context_t* c, pd_OptionAssetID_t* v); +parser_error_t _readOptionAssetId(parser_context_t* c, pd_OptionAssetId_t* v); parser_error_t _readOptionBalance(parser_context_t* c, pd_OptionBalance_t* v); parser_error_t _readOptionBlockNumber(parser_context_t* c, pd_OptionBlockNumber_t* v); parser_error_t _readOptionCompactBalanceOf(parser_context_t* c, pd_OptionCompactBalanceOf_t* v); @@ -370,8 +370,8 @@ parser_error_t _toStringCompactu64( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringAssetID( - const pd_AssetID_t* v, +parser_error_t _toStringAssetId( + const pd_AssetId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -636,8 +636,8 @@ parser_error_t _toStringTupleCompactu16Compactu16( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecAssetID( - const pd_VecAssetID_t* v, +parser_error_t _toStringVecAssetId( + const pd_VecAssetId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -2127,8 +2127,8 @@ parser_error_t _toStringOptionAssetCount( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringOptionAssetID( - const pd_OptionAssetID_t* v, +parser_error_t _toStringOptionAssetId( + const pd_OptionAssetId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, diff --git a/app/src/substrate/substrate_methods_V7.h b/app/src/substrate/substrate_methods_V7.h index 0eff1c4c..6f9d26e4 100644 --- a/app/src/substrate/substrate_methods_V7.h +++ b/app/src/substrate/substrate_methods_V7.h @@ -69,14 +69,32 @@ extern "C" { #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS +#define PD_CALL_SUDO_SUDO_V7 0 +typedef struct { + pd_Call_t call; +} pd_sudo_sudo_V7_t; +#define PD_CALL_SUDO_SUDO_UNCHECKED_WEIGHT_V7 1 +typedef struct { + pd_Call_t call; + pd_Weight_t _weight; +} pd_sudo_sudo_unchecked_weight_V7_t; +#define PD_CALL_SUDO_SET_KEY_V7 2 +typedef struct { + pd_LookupasStaticLookupSource_t new_; +} pd_sudo_set_key_V7_t; +#define PD_CALL_SUDO_SUDO_AS_V7 3 +typedef struct { + pd_LookupasStaticLookupSource_t who; + pd_Call_t call; +} pd_sudo_sudo_as_V7_t; #define PD_CALL_ASSET_ADD_MANDATORY_MEDIATORS_V7 29 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; } pd_asset_add_mandatory_mediators_V7_t; #define PD_CALL_ASSET_REMOVE_MANDATORY_MEDIATORS_V7 30 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; } pd_asset_remove_mandatory_mediators_V7_t; #define PD_CALL_PORTFOLIO_ALLOW_IDENTITY_TO_CREATE_PORTFOLIOS_V7 8 @@ -158,29 +176,24 @@ typedef struct { pd_PortfolioId_t source_portfolio; pd_PortfolioKind_t callers_portfolio_kind; } pd_nft_controller_transfer_V7_t; -#endif - -#define PD_CALL_SUDO_SUDO_V7 0 +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_MINIMUM_UNTRUSTED_SCORE_V7 1 typedef struct { - pd_Call_t call; -} pd_sudo_sudo_V7_t; - -#define PD_CALL_SUDO_SUDO_UNCHECKED_WEIGHT_V7 1 + pd_OptionElectionScore_t maybe_next_score; +} pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t; +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_EMERGENCY_ELECTION_RESULT_V7 2 typedef struct { - pd_Call_t call; - pd_Weight_t _weight; -} pd_sudo_sudo_unchecked_weight_V7_t; - -#define PD_CALL_SUDO_SET_KEY_V7 2 + pd_SupportsAccountId_t supports; +} pd_electionprovidermultiphase_set_emergency_election_result_V7_t; +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SUBMIT_V7 3 typedef struct { - pd_LookupasStaticLookupSource_t new_; -} pd_sudo_set_key_V7_t; - -#define PD_CALL_SUDO_SUDO_AS_V7 3 + pd_BoxRawSolutionSolutionOfMinerConfig_t raw_solution; +} pd_electionprovidermultiphase_submit_V7_t; +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_GOVERNANCE_FALLBACK_V7 4 typedef struct { - pd_LookupasStaticLookupSource_t who; - pd_Call_t call; -} pd_sudo_sudo_as_V7_t; + pd_Optionu32_t maybe_max_voters; + pd_Optionu32_t maybe_max_targets; +} pd_electionprovidermultiphase_governance_fallback_V7_t; +#endif #define PD_CALL_ASSET_REGISTER_UNIQUE_TICKER_V7 0 typedef struct { @@ -189,7 +202,7 @@ typedef struct { #define PD_CALL_ASSET_CONTROLLER_TRANSFER_V7 14 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_BalanceNoSymbol_t amount; pd_PortfolioId_t from_portfolio; } pd_asset_controller_transfer_V7_t; @@ -210,7 +223,7 @@ typedef struct { #define PD_CALL_ASSET_SET_ASSET_METADATA_V7 17 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataKey_t key; pd_AssetMetadataValue_t value; pd_OptionAssetMetadataValueDetailMoment_t detail; @@ -218,14 +231,14 @@ typedef struct { #define PD_CALL_ASSET_SET_ASSET_METADATA_DETAILS_V7 18 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataKey_t key; pd_AssetMetadataValueDetailMoment_t detail; } pd_asset_set_asset_metadata_details_V7_t; #define PD_CALL_ASSET_REGISTER_AND_SET_LOCAL_ASSET_METADATA_V7 19 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataName_t name; pd_AssetMetadataSpec_t spec; pd_AssetMetadataValue_t value; @@ -234,7 +247,7 @@ typedef struct { #define PD_CALL_ASSET_REGISTER_ASSET_METADATA_LOCAL_TYPE_V7 20 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataName_t name; pd_AssetMetadataSpec_t spec; } pd_asset_register_asset_metadata_local_type_V7_t; @@ -247,48 +260,54 @@ typedef struct { #define PD_CALL_ASSET_UPDATE_ASSET_TYPE_V7 22 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetType_t asset_type; } pd_asset_update_asset_type_V7_t; #define PD_CALL_ASSET_REMOVE_LOCAL_METADATA_KEY_V7 23 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataLocalKey_t local_key; } pd_asset_remove_local_metadata_key_V7_t; #define PD_CALL_ASSET_REMOVE_METADATA_VALUE_V7 24 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetMetadataKey_t metadata_key; } pd_asset_remove_metadata_value_V7_t; #define PD_CALL_ASSET_EXEMPT_ASSET_AFFIRMATION_V7 25 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_exempt_asset_affirmation_V7_t; #define PD_CALL_ASSET_REMOVE_ASSET_AFFIRMATION_EXEMPTION_V7 26 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_remove_asset_affirmation_exemption_V7_t; #define PD_CALL_ASSET_PRE_APPROVE_ASSET_V7 27 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_pre_approve_asset_V7_t; #define PD_CALL_ASSET_REMOVE_ASSET_PRE_APPROVAL_V7 28 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_remove_asset_pre_approval_V7_t; #define PD_CALL_ASSET_LINK_TICKER_TO_ASSET_ID_V7 31 typedef struct { pd_Ticker_t ticker; - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_link_ticker_to_asset_id_V7_t; +#define PD_CALL_ASSET_UNLINK_TICKER_FROM_ASSET_ID_V7 32 +typedef struct { + pd_Ticker_t ticker; + pd_AssetId_t asset_id; +} pd_asset_unlink_ticker_from_asset_id_V7_t; + #define PD_CALL_PORTFOLIO_QUIT_PORTFOLIO_CUSTODY_V7 3 typedef struct { pd_PortfolioId_t pid; @@ -301,13 +320,13 @@ typedef struct { #define PD_CALL_PORTFOLIO_PRE_APPROVE_PORTFOLIO_V7 6 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_PortfolioId_t portfolio_id; } pd_portfolio_pre_approve_portfolio_V7_t; #define PD_CALL_PORTFOLIO_REMOVE_PORTFOLIO_PRE_APPROVAL_V7 7 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_PortfolioId_t portfolio_id; } pd_portfolio_remove_portfolio_pre_approval_V7_t; @@ -343,9 +362,9 @@ typedef struct { #define PD_CALL_STO_CREATE_FUNDRAISER_V7 0 typedef struct { pd_PortfolioId_t offering_portfolio; - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_PortfolioId_t raising_portfolio; - pd_AssetID_t raising_asset; + pd_AssetId_t raising_asset; pd_VecPriceTier_t tiers; pd_VenueId_t venue_id; pd_OptionMoment_t start; @@ -358,7 +377,7 @@ typedef struct { typedef struct { pd_PortfolioId_t investment_portfolio; pd_PortfolioId_t funding_portfolio; - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_FundraiserId_t id; pd_BalanceNoSymbol_t purchase_amount; pd_OptionBalance_t max_price; @@ -367,19 +386,19 @@ typedef struct { #define PD_CALL_STO_FREEZE_FUNDRAISER_V7 2 typedef struct { - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_FundraiserId_t id; } pd_sto_freeze_fundraiser_V7_t; #define PD_CALL_STO_UNFREEZE_FUNDRAISER_V7 3 typedef struct { - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_FundraiserId_t id; } pd_sto_unfreeze_fundraiser_V7_t; #define PD_CALL_STO_MODIFY_FUNDRAISER_WINDOW_V7 4 typedef struct { - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_FundraiserId_t id; pd_Moment_t start; pd_OptionMoment_t end; @@ -387,64 +406,43 @@ typedef struct { #define PD_CALL_STO_STOP_V7 5 typedef struct { - pd_AssetID_t offering_asset; + pd_AssetId_t offering_asset; pd_FundraiserId_t id; } pd_sto_stop_V7_t; -#define PD_CALL_UTILITY_BATCH_ALL_V7 2 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_all_V7_t; - -#define PD_CALL_UTILITY_DISPATCH_AS_V7 3 -typedef struct { - pd_BoxPalletsOrigin_t as_origin; - pd_Call_t call; -} pd_utility_dispatch_as_V7_t; - -#define PD_CALL_UTILITY_FORCE_BATCH_V7 4 -typedef struct { - pd_VecCall_t calls; -} pd_utility_force_batch_V7_t; - #define PD_CALL_UTILITY_WITH_WEIGHT_V7 5 typedef struct { pd_Call_t call; pd_Weight_t weight; } pd_utility_with_weight_V7_t; -#define PD_CALL_UTILITY_BATCH_OLD_V7 6 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_old_V7_t; - #define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_V7 0 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ExtrinsicPermissions_t perms; } pd_externalagents_create_group_V7_t; #define PD_CALL_EXTERNALAGENTS_SET_GROUP_PERMISSIONS_V7 1 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AGId_t id; pd_ExtrinsicPermissions_t perms; } pd_externalagents_set_group_permissions_V7_t; #define PD_CALL_EXTERNALAGENTS_REMOVE_AGENT_V7 2 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_IdentityId_t agent; } pd_externalagents_remove_agent_V7_t; #define PD_CALL_EXTERNALAGENTS_ABDICATE_V7 3 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_externalagents_abdicate_V7_t; #define PD_CALL_EXTERNALAGENTS_CHANGE_GROUP_V7 4 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_IdentityId_t agent; pd_AgentGroup_t group; } pd_externalagents_change_group_V7_t; @@ -456,7 +454,7 @@ typedef struct { #define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_AND_ADD_AUTH_V7 6 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ExtrinsicPermissions_t perms; pd_IdentityId_t target; pd_OptionMoment_t expiry; @@ -464,7 +462,7 @@ typedef struct { #define PD_CALL_EXTERNALAGENTS_CREATE_AND_CHANGE_CUSTOM_GROUP_V7 7 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ExtrinsicPermissions_t perms; pd_IdentityId_t agent; } pd_externalagents_create_and_change_custom_group_V7_t; @@ -636,21 +634,21 @@ typedef struct { #define PD_CALL_NFT_CREATE_NFT_COLLECTION_V7 0 typedef struct { - pd_OptionAssetID_t asset_id; + pd_OptionAssetId_t asset_id; pd_OptionNonFungibleType_t nft_type; pd_VecAssetMetadataKey_t collection_keys; } pd_nft_create_nft_collection_V7_t; #define PD_CALL_NFT_ISSUE_NFT_V7 1 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecNFTMetadataAttribute_t nft_metadata_attributes; pd_PortfolioKind_t portfolio_kind; } pd_nft_issue_nft_V7_t; #define PD_CALL_NFT_REDEEM_NFT_V7 2 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_NFTId_t nft_id; pd_PortfolioKind_t portfolio_kind; pd_Optionu8_t number_of_keys; @@ -662,32 +660,15 @@ typedef struct { pd_SolutionOrSnapshotSize_t witness; } pd_electionprovidermultiphase_submit_unsigned_V7_t; -#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_MINIMUM_UNTRUSTED_SCORE_V7 1 -typedef struct { - pd_OptionElectionScore_t maybe_next_score; -} pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t; - -#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_EMERGENCY_ELECTION_RESULT_V7 2 -typedef struct { - pd_SupportsAccountId_t supports; -} pd_electionprovidermultiphase_set_emergency_election_result_V7_t; - -#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SUBMIT_V7 3 -typedef struct { - pd_BoxRawSolutionSolutionOfMinerConfig_t raw_solution; -} pd_electionprovidermultiphase_submit_V7_t; - -#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_GOVERNANCE_FALLBACK_V7 4 -typedef struct { - pd_Optionu32_t maybe_max_voters; - pd_Optionu32_t maybe_max_targets; -} pd_electionprovidermultiphase_governance_fallback_V7_t; - #endif typedef union { #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS + pd_sudo_sudo_V7_t sudo_sudo_V7; + pd_sudo_sudo_unchecked_weight_V7_t sudo_sudo_unchecked_weight_V7; + pd_sudo_set_key_V7_t sudo_set_key_V7; + pd_sudo_sudo_as_V7_t sudo_sudo_as_V7; pd_asset_add_mandatory_mediators_V7_t asset_add_mandatory_mediators_V7; pd_asset_remove_mandatory_mediators_V7_t asset_remove_mandatory_mediators_V7; pd_portfolio_allow_identity_to_create_portfolios_V7_t portfolio_allow_identity_to_create_portfolios_V7; @@ -703,11 +684,11 @@ typedef union { pd_settlement_withdraw_affirmation_as_mediator_V7_t settlement_withdraw_affirmation_as_mediator_V7; pd_settlement_reject_instruction_as_mediator_V7_t settlement_reject_instruction_as_mediator_V7; pd_nft_controller_transfer_V7_t nft_controller_transfer_V7; + pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t electionprovidermultiphase_set_minimum_untrusted_score_V7; + pd_electionprovidermultiphase_set_emergency_election_result_V7_t electionprovidermultiphase_set_emergency_election_result_V7; + pd_electionprovidermultiphase_submit_V7_t electionprovidermultiphase_submit_V7; + pd_electionprovidermultiphase_governance_fallback_V7_t electionprovidermultiphase_governance_fallback_V7; #endif - pd_sudo_sudo_V7_t sudo_sudo_V7; - pd_sudo_sudo_unchecked_weight_V7_t sudo_sudo_unchecked_weight_V7; - pd_sudo_set_key_V7_t sudo_set_key_V7; - pd_sudo_sudo_as_V7_t sudo_sudo_as_V7; pd_asset_register_unique_ticker_V7_t asset_register_unique_ticker_V7; pd_asset_controller_transfer_V7_t asset_controller_transfer_V7; pd_asset_register_custom_asset_type_V7_t asset_register_custom_asset_type_V7; @@ -725,6 +706,7 @@ typedef union { pd_asset_pre_approve_asset_V7_t asset_pre_approve_asset_V7; pd_asset_remove_asset_pre_approval_V7_t asset_remove_asset_pre_approval_V7; pd_asset_link_ticker_to_asset_id_V7_t asset_link_ticker_to_asset_id_V7; + pd_asset_unlink_ticker_from_asset_id_V7_t asset_unlink_ticker_from_asset_id_V7; pd_portfolio_quit_portfolio_custody_V7_t portfolio_quit_portfolio_custody_V7; pd_portfolio_accept_portfolio_custody_V7_t portfolio_accept_portfolio_custody_V7; pd_portfolio_pre_approve_portfolio_V7_t portfolio_pre_approve_portfolio_V7; @@ -739,11 +721,7 @@ typedef union { pd_sto_unfreeze_fundraiser_V7_t sto_unfreeze_fundraiser_V7; pd_sto_modify_fundraiser_window_V7_t sto_modify_fundraiser_window_V7; pd_sto_stop_V7_t sto_stop_V7; - pd_utility_batch_all_V7_t utility_batch_all_V7; - pd_utility_dispatch_as_V7_t utility_dispatch_as_V7; - pd_utility_force_batch_V7_t utility_force_batch_V7; pd_utility_with_weight_V7_t utility_with_weight_V7; - pd_utility_batch_old_V7_t utility_batch_old_V7; pd_externalagents_create_group_V7_t externalagents_create_group_V7; pd_externalagents_set_group_permissions_V7_t externalagents_set_group_permissions_V7; pd_externalagents_remove_agent_V7_t externalagents_remove_agent_V7; @@ -779,10 +757,6 @@ typedef union { pd_nft_issue_nft_V7_t nft_issue_nft_V7; pd_nft_redeem_nft_V7_t nft_redeem_nft_V7; pd_electionprovidermultiphase_submit_unsigned_V7_t electionprovidermultiphase_submit_unsigned_V7; - pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t electionprovidermultiphase_set_minimum_untrusted_score_V7; - pd_electionprovidermultiphase_set_emergency_election_result_V7_t electionprovidermultiphase_set_emergency_election_result_V7; - pd_electionprovidermultiphase_submit_V7_t electionprovidermultiphase_submit_V7; - pd_electionprovidermultiphase_governance_fallback_V7_t electionprovidermultiphase_governance_fallback_V7; #endif } pd_MethodBasic_V7_t; @@ -943,16 +917,6 @@ typedef struct { pd_VecCall_t calls; } pd_utility_batch_V7_t; -#define PD_CALL_UTILITY_BATCH_ATOMIC_V7 7 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_atomic_V7_t; - -#define PD_CALL_UTILITY_BATCH_OPTIMISTIC_V7 8 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_optimistic_V7_t; - #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS #define PD_CALL_CORPORATEACTION_SET_MAX_DETAILS_LENGTH_V7 0 @@ -961,23 +925,23 @@ typedef struct { } pd_corporateaction_set_max_details_length_V7_t; #define PD_CALL_CORPORATEACTION_SET_DEFAULT_TARGETS_V7 1 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_TargetIdentities_t targets; } pd_corporateaction_set_default_targets_V7_t; #define PD_CALL_CORPORATEACTION_SET_DEFAULT_WITHHOLDING_TAX_V7 2 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_Tax_t tax; } pd_corporateaction_set_default_withholding_tax_V7_t; #define PD_CALL_CORPORATEACTION_SET_DID_WITHHOLDING_TAX_V7 3 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_IdentityId_t taxed_did; pd_OptionTax_t tax; } pd_corporateaction_set_did_withholding_tax_V7_t; #define PD_CALL_CORPORATEACTION_INITIATE_CORPORATE_ACTION_V7 4 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_CAKind_t kind; pd_Moment_t decl_date; pd_OptionRecordDateSpec_t record_date; @@ -1004,7 +968,7 @@ typedef struct { typedef struct { pd_InitiateCorporateActionArgs_t ca_args; pd_OptionPortfolioNumber_t portfolio; - pd_AssetID_t currency; + pd_AssetId_t currency; pd_Balance_t per_share; pd_Balance_t amount; pd_Moment_t payment_at; @@ -1041,10 +1005,66 @@ typedef struct { typedef struct { pd_CAId_t ca_id; } pd_corporateballot_remove_ballot_V7_t; +#define PD_CALL_PIPS_SET_PRUNE_HISTORICAL_PIPS_V7 0 +typedef struct { + pd_bool_t prune; +} pd_pips_set_prune_historical_pips_V7_t; +#define PD_CALL_PIPS_SET_MIN_PROPOSAL_DEPOSIT_V7 1 +typedef struct { + pd_Balance_t deposit; +} pd_pips_set_min_proposal_deposit_V7_t; +#define PD_CALL_PIPS_SET_DEFAULT_ENACTMENT_PERIOD_V7 2 +typedef struct { + pd_BlockNumber_t duration; +} pd_pips_set_default_enactment_period_V7_t; +#define PD_CALL_PIPS_SET_PENDING_PIP_EXPIRY_V7 3 +typedef struct { + pd_MaybeBlockBlockNumber_t expiry; +} pd_pips_set_pending_pip_expiry_V7_t; +#define PD_CALL_PIPS_SET_MAX_PIP_SKIP_COUNT_V7 4 +typedef struct { + pd_SkippedCount_t max; +} pd_pips_set_max_pip_skip_count_V7_t; +#define PD_CALL_PIPS_SET_ACTIVE_PIP_LIMIT_V7 5 +typedef struct { + pd_u32_t limit; +} pd_pips_set_active_pip_limit_V7_t; +#define PD_CALL_PIPS_APPROVE_COMMITTEE_PROPOSAL_V7 8 +typedef struct { + pd_PipId_t id; +} pd_pips_approve_committee_proposal_V7_t; +#define PD_CALL_PIPS_REJECT_PROPOSAL_V7 9 +typedef struct { + pd_PipId_t id; +} pd_pips_reject_proposal_V7_t; +#define PD_CALL_PIPS_PRUNE_PROPOSAL_V7 10 +typedef struct { + pd_PipId_t id; +} pd_pips_prune_proposal_V7_t; +#define PD_CALL_PIPS_RESCHEDULE_EXECUTION_V7 11 +typedef struct { + pd_PipId_t id; + pd_OptionBlockNumber_t until; +} pd_pips_reschedule_execution_V7_t; +#define PD_CALL_PIPS_CLEAR_SNAPSHOT_V7 12 +typedef struct { +} pd_pips_clear_snapshot_V7_t; +#define PD_CALL_PIPS_SNAPSHOT_V7 13 +typedef struct { +} pd_pips_snapshot_V7_t; #define PD_CALL_PIPS_ENACT_SNAPSHOT_RESULTS_V7 14 typedef struct { pd_VecTuplePipIdSnapshotResult_t results; } pd_pips_enact_snapshot_results_V7_t; +#define PD_CALL_PIPS_EXECUTE_SCHEDULED_PIP_V7 15 +typedef struct { + pd_PipId_t id; +} pd_pips_execute_scheduled_pip_V7_t; +#define PD_CALL_PIPS_EXPIRE_SCHEDULED_PIP_V7 16 +typedef struct { + pd_IdentityId_t did; + pd_PipId_t id; +} pd_pips_expire_scheduled_pip_V7_t; #endif #define PD_CALL_SYSTEM_REMARK_V7 0 typedef struct { @@ -1682,60 +1702,60 @@ typedef struct { #define PD_CALL_ASSET_FREEZE_V7 4 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_freeze_V7_t; #define PD_CALL_ASSET_UNFREEZE_V7 5 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_unfreeze_V7_t; #define PD_CALL_ASSET_RENAME_ASSET_V7 6 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_AssetName_t asset_name; } pd_asset_rename_asset_V7_t; #define PD_CALL_ASSET_ISSUE_V7 7 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_BalanceNoSymbol_t amount; pd_PortfolioKind_t portfolio_kind; } pd_asset_issue_V7_t; #define PD_CALL_ASSET_REDEEM_V7 8 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_BalanceNoSymbol_t amount; pd_PortfolioKind_t portfolio_kind; } pd_asset_redeem_V7_t; #define PD_CALL_ASSET_MAKE_DIVISIBLE_V7 9 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_make_divisible_V7_t; #define PD_CALL_ASSET_ADD_DOCUMENTS_V7 10 typedef struct { pd_VecDocument_t docs; - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_add_documents_V7_t; #define PD_CALL_ASSET_REMOVE_DOCUMENTS_V7 11 typedef struct { pd_VecDocumentId_t docs_id; - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_asset_remove_documents_V7_t; #define PD_CALL_ASSET_SET_FUNDING_ROUND_V7 12 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_FundingRoundName_t founding_round_name; } pd_asset_set_funding_round_V7_t; #define PD_CALL_ASSET_UPDATE_IDENTIFIERS_V7 13 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecAssetIdentifier_t asset_identifiers; } pd_asset_update_identifiers_V7_t; @@ -1743,7 +1763,7 @@ typedef struct { typedef struct { pd_CAId_t ca_id; pd_OptionPortfolioNumber_t portfolio; - pd_AssetID_t currency; + pd_AssetId_t currency; pd_Balance_t per_share; pd_Balance_t amount; pd_Moment_t payment_at; @@ -1773,7 +1793,7 @@ typedef struct { #define PD_CALL_CHECKPOINT_CREATE_CHECKPOINT_V7 0 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_checkpoint_create_checkpoint_V7_t; #define PD_CALL_CHECKPOINT_SET_SCHEDULES_MAX_COMPLEXITY_V7 1 @@ -1783,138 +1803,68 @@ typedef struct { #define PD_CALL_CHECKPOINT_CREATE_SCHEDULE_V7 2 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ScheduleCheckpoints_t schedule; } pd_checkpoint_create_schedule_V7_t; #define PD_CALL_CHECKPOINT_REMOVE_SCHEDULE_V7 3 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ScheduleId_t id; } pd_checkpoint_remove_schedule_V7_t; #define PD_CALL_COMPLIANCEMANAGER_ADD_COMPLIANCE_REQUIREMENT_V7 0 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecCondition_t sender_conditions; pd_VecCondition_t receiver_conditions; } pd_compliancemanager_add_compliance_requirement_V7_t; #define PD_CALL_COMPLIANCEMANAGER_REMOVE_COMPLIANCE_REQUIREMENT_V7 1 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_u32_t id; } pd_compliancemanager_remove_compliance_requirement_V7_t; #define PD_CALL_COMPLIANCEMANAGER_REPLACE_ASSET_COMPLIANCE_V7 2 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecComplianceRequirement_t asset_compliance; } pd_compliancemanager_replace_asset_compliance_V7_t; #define PD_CALL_COMPLIANCEMANAGER_RESET_ASSET_COMPLIANCE_V7 3 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_compliancemanager_reset_asset_compliance_V7_t; #define PD_CALL_COMPLIANCEMANAGER_PAUSE_ASSET_COMPLIANCE_V7 4 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_compliancemanager_pause_asset_compliance_V7_t; #define PD_CALL_COMPLIANCEMANAGER_RESUME_ASSET_COMPLIANCE_V7 5 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; } pd_compliancemanager_resume_asset_compliance_V7_t; #define PD_CALL_COMPLIANCEMANAGER_ADD_DEFAULT_TRUSTED_CLAIM_ISSUER_V7 6 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_TrustedIssuer_t issuer; } pd_compliancemanager_add_default_trusted_claim_issuer_V7_t; #define PD_CALL_COMPLIANCEMANAGER_REMOVE_DEFAULT_TRUSTED_CLAIM_ISSUER_V7 7 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_IdentityId_t issuer; } pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t; #define PD_CALL_COMPLIANCEMANAGER_CHANGE_COMPLIANCE_REQUIREMENT_V7 8 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_ComplianceRequirement_t new_req; } pd_compliancemanager_change_compliance_requirement_V7_t; -#define PD_CALL_PIPS_SET_PRUNE_HISTORICAL_PIPS_V7 0 -typedef struct { - pd_bool_t prune; -} pd_pips_set_prune_historical_pips_V7_t; - -#define PD_CALL_PIPS_SET_MIN_PROPOSAL_DEPOSIT_V7 1 -typedef struct { - pd_Balance_t deposit; -} pd_pips_set_min_proposal_deposit_V7_t; - -#define PD_CALL_PIPS_SET_DEFAULT_ENACTMENT_PERIOD_V7 2 -typedef struct { - pd_BlockNumber_t duration; -} pd_pips_set_default_enactment_period_V7_t; - -#define PD_CALL_PIPS_SET_PENDING_PIP_EXPIRY_V7 3 -typedef struct { - pd_MaybeBlockBlockNumber_t expiry; -} pd_pips_set_pending_pip_expiry_V7_t; - -#define PD_CALL_PIPS_SET_MAX_PIP_SKIP_COUNT_V7 4 -typedef struct { - pd_SkippedCount_t max; -} pd_pips_set_max_pip_skip_count_V7_t; - -#define PD_CALL_PIPS_SET_ACTIVE_PIP_LIMIT_V7 5 -typedef struct { - pd_u32_t limit; -} pd_pips_set_active_pip_limit_V7_t; - -#define PD_CALL_PIPS_APPROVE_COMMITTEE_PROPOSAL_V7 8 -typedef struct { - pd_PipId_t id; -} pd_pips_approve_committee_proposal_V7_t; - -#define PD_CALL_PIPS_REJECT_PROPOSAL_V7 9 -typedef struct { - pd_PipId_t id; -} pd_pips_reject_proposal_V7_t; - -#define PD_CALL_PIPS_PRUNE_PROPOSAL_V7 10 -typedef struct { - pd_PipId_t id; -} pd_pips_prune_proposal_V7_t; - -#define PD_CALL_PIPS_RESCHEDULE_EXECUTION_V7 11 -typedef struct { - pd_PipId_t id; - pd_OptionBlockNumber_t until; -} pd_pips_reschedule_execution_V7_t; - -#define PD_CALL_PIPS_CLEAR_SNAPSHOT_V7 12 -typedef struct { -} pd_pips_clear_snapshot_V7_t; - -#define PD_CALL_PIPS_SNAPSHOT_V7 13 -typedef struct { -} pd_pips_snapshot_V7_t; - -#define PD_CALL_PIPS_EXECUTE_SCHEDULED_PIP_V7 15 -typedef struct { - pd_PipId_t id; -} pd_pips_execute_scheduled_pip_V7_t; - -#define PD_CALL_PIPS_EXPIRE_SCHEDULED_PIP_V7 16 -typedef struct { - pd_IdentityId_t did; - pd_PipId_t id; -} pd_pips_expire_scheduled_pip_V7_t; - #define PD_CALL_PORTFOLIO_CREATE_PORTFOLIO_V7 0 typedef struct { pd_PortfolioName_t name; @@ -1959,19 +1909,19 @@ typedef struct { #define PD_CALL_SETTLEMENT_SET_VENUE_FILTERING_V7 4 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_bool_t enabled; } pd_settlement_set_venue_filtering_V7_t; #define PD_CALL_SETTLEMENT_ALLOW_VENUES_V7 5 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecVenueId_t venues; } pd_settlement_allow_venues_V7_t; #define PD_CALL_SETTLEMENT_DISALLOW_VENUES_V7 6 typedef struct { - pd_AssetID_t asset_id; + pd_AssetId_t asset_id; pd_VecVenueId_t venues; } pd_settlement_disallow_venues_V7_t; @@ -2037,6 +1987,28 @@ typedef struct { pd_UniqueCall_t call; } pd_utility_relay_tx_V7_t; +#define PD_CALL_UTILITY_BATCH_ALL_V7 2 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_all_V7_t; + +#define PD_CALL_UTILITY_DISPATCH_AS_V7 3 +typedef struct { + pd_BoxPalletsOrigin_t as_origin; + pd_Call_t call; +} pd_utility_dispatch_as_V7_t; + +#define PD_CALL_UTILITY_FORCE_BATCH_V7 4 +typedef struct { + pd_VecCall_t calls; +} pd_utility_force_batch_V7_t; + +#define PD_CALL_UTILITY_AS_DERIVATIVE_V7 9 +typedef struct { + pd_u16_t index; + pd_Call_t call; +} pd_utility_as_derivative_V7_t; + #define PD_CALL_CONTRACTS_CALL_V7 6 typedef struct { pd_AccountIdLookupOfT_t dest; @@ -2087,8 +2059,6 @@ typedef union { pd_pips_propose_V7_t pips_propose_V7; pd_pips_vote_V7_t pips_vote_V7; pd_utility_batch_V7_t utility_batch_V7; - pd_utility_batch_atomic_V7_t utility_batch_atomic_V7; - pd_utility_batch_optimistic_V7_t utility_batch_optimistic_V7; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS pd_corporateaction_set_max_details_length_V7_t corporateaction_set_max_details_length_V7; @@ -2106,7 +2076,21 @@ typedef union { pd_corporateballot_change_meta_V7_t corporateballot_change_meta_V7; pd_corporateballot_change_rcv_V7_t corporateballot_change_rcv_V7; pd_corporateballot_remove_ballot_V7_t corporateballot_remove_ballot_V7; + pd_pips_set_prune_historical_pips_V7_t pips_set_prune_historical_pips_V7; + pd_pips_set_min_proposal_deposit_V7_t pips_set_min_proposal_deposit_V7; + pd_pips_set_default_enactment_period_V7_t pips_set_default_enactment_period_V7; + pd_pips_set_pending_pip_expiry_V7_t pips_set_pending_pip_expiry_V7; + pd_pips_set_max_pip_skip_count_V7_t pips_set_max_pip_skip_count_V7; + pd_pips_set_active_pip_limit_V7_t pips_set_active_pip_limit_V7; + pd_pips_approve_committee_proposal_V7_t pips_approve_committee_proposal_V7; + pd_pips_reject_proposal_V7_t pips_reject_proposal_V7; + pd_pips_prune_proposal_V7_t pips_prune_proposal_V7; + pd_pips_reschedule_execution_V7_t pips_reschedule_execution_V7; + pd_pips_clear_snapshot_V7_t pips_clear_snapshot_V7; + pd_pips_snapshot_V7_t pips_snapshot_V7; pd_pips_enact_snapshot_results_V7_t pips_enact_snapshot_results_V7; + pd_pips_execute_scheduled_pip_V7_t pips_execute_scheduled_pip_V7; + pd_pips_expire_scheduled_pip_V7_t pips_expire_scheduled_pip_V7; #endif pd_system_remark_V7_t system_remark_V7; pd_system_set_heap_pages_V7_t system_set_heap_pages_V7; @@ -2251,20 +2235,6 @@ typedef union { pd_compliancemanager_add_default_trusted_claim_issuer_V7_t compliancemanager_add_default_trusted_claim_issuer_V7; pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t compliancemanager_remove_default_trusted_claim_issuer_V7; pd_compliancemanager_change_compliance_requirement_V7_t compliancemanager_change_compliance_requirement_V7; - pd_pips_set_prune_historical_pips_V7_t pips_set_prune_historical_pips_V7; - pd_pips_set_min_proposal_deposit_V7_t pips_set_min_proposal_deposit_V7; - pd_pips_set_default_enactment_period_V7_t pips_set_default_enactment_period_V7; - pd_pips_set_pending_pip_expiry_V7_t pips_set_pending_pip_expiry_V7; - pd_pips_set_max_pip_skip_count_V7_t pips_set_max_pip_skip_count_V7; - pd_pips_set_active_pip_limit_V7_t pips_set_active_pip_limit_V7; - pd_pips_approve_committee_proposal_V7_t pips_approve_committee_proposal_V7; - pd_pips_reject_proposal_V7_t pips_reject_proposal_V7; - pd_pips_prune_proposal_V7_t pips_prune_proposal_V7; - pd_pips_reschedule_execution_V7_t pips_reschedule_execution_V7; - pd_pips_clear_snapshot_V7_t pips_clear_snapshot_V7; - pd_pips_snapshot_V7_t pips_snapshot_V7; - pd_pips_execute_scheduled_pip_V7_t pips_execute_scheduled_pip_V7; - pd_pips_expire_scheduled_pip_V7_t pips_expire_scheduled_pip_V7; pd_portfolio_create_portfolio_V7_t portfolio_create_portfolio_V7; pd_portfolio_delete_portfolio_V7_t portfolio_delete_portfolio_V7; pd_portfolio_rename_portfolio_V7_t portfolio_rename_portfolio_V7; @@ -2284,6 +2254,10 @@ typedef union { pd_treasury_disbursement_V7_t treasury_disbursement_V7; pd_treasury_reimbursement_V7_t treasury_reimbursement_V7; pd_utility_relay_tx_V7_t utility_relay_tx_V7; + pd_utility_batch_all_V7_t utility_batch_all_V7; + pd_utility_dispatch_as_V7_t utility_dispatch_as_V7; + pd_utility_force_batch_V7_t utility_force_batch_V7; + pd_utility_as_derivative_V7_t utility_as_derivative_V7; pd_contracts_call_V7_t contracts_call_V7; pd_contracts_instantiate_V7_t contracts_instantiate_V7; #endif diff --git a/app/src/substrate/substrate_strings.h b/app/src/substrate/substrate_strings.h index 3dd807a7..557fcafb 100644 --- a/app/src/substrate/substrate_strings.h +++ b/app/src/substrate/substrate_strings.h @@ -380,6 +380,8 @@ static const char* STR_ME_EXEMPT_TICKER_AFFIRMATION = "Exempt ticker affirmation static const char* STR_ME_REMOVE_TICKER_AFFIRMATION_EXEMPTION = "Remove ticker affirmation exemption"; static const char* STR_ME_PRE_APPROVE_TICKER = "Pre approve ticker"; static const char* STR_ME_REMOVE_TICKER_PRE_APPROVAL = "Remove ticker pre approval"; +static const char* STR_ME_AS_DERIVATIVE = "As derivative"; +static const char* STR_ME_UNLINK_TICKER_FROM_ASSET_ID = "Unlink ticker from asset id"; // Items names static const char* STR_IT_remark = "Remark"; @@ -887,4 +889,3 @@ static const char* const STR_COUNTRY_CODES[] = { #ifdef __cplusplus } #endif - diff --git a/app/src/substrate/substrate_types.c b/app/src/substrate/substrate_types.c index bf2f310c..3e4d36f9 100644 --- a/app/src/substrate/substrate_types.c +++ b/app/src/substrate/substrate_types.c @@ -113,7 +113,7 @@ parser_error_t _readCompactu16(parser_context_t* c, pd_Compactu16_t* v) return _readCompactInt(c, v); } -parser_error_t _readAssetID(parser_context_t* c, pd_AssetID_t* v) +parser_error_t _readAssetId(parser_context_t* c, pd_AssetId_t* v) { v->_len = 16; GEN_DEF_READARRAY(v->_len) @@ -132,7 +132,7 @@ parser_error_t _readScope(parser_context_t* c, pd_Scope_t* v) CHECK_ERROR(_readIdentityId(c, &v->identity)) break; case 1: - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) break; case 2: { compactInt_t clen; @@ -463,7 +463,7 @@ parser_error_t _readAssetPermissions(parser_context_t* c, pd_AssetPermissions_t* break; case 1: // These case 2: // Except - CHECK_ERROR(_readVecAssetID(c, &v->contained)) + CHECK_ERROR(_readVecAssetId(c, &v->contained)) break; default: return parser_unexpected_value; @@ -1020,7 +1020,7 @@ parser_error_t _readDocumentUri(parser_context_t* c, pd_DocumentUri_t* v) parser_error_t _readFundFungible(parser_context_t* c, pd_FundFungible_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readBalanceNoSymbol(c, &v->amount)) CHECK_ERROR(_readOptionMemo(c, &v->memo)) return parser_ok; @@ -1029,7 +1029,7 @@ parser_error_t _readFundFungible(parser_context_t* c, pd_FundFungible_t* v) parser_error_t _readFundNonFungible(parser_context_t* c, pd_FundNonFungible_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readVecu64(c, &v->ids)) CHECK_ERROR(_readOptionMemo(c, &v->memo)) return parser_ok; @@ -1040,7 +1040,7 @@ parser_error_t _readLegFungible(parser_context_t* c, pd_LegFungible_t* v) CHECK_INPUT() CHECK_ERROR(_readPortfolioId(c, &v->sender)) CHECK_ERROR(_readPortfolioId(c, &v->receiver)) - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readBalanceNoSymbol(c, &v->amount)) return parser_ok; } @@ -1050,7 +1050,7 @@ parser_error_t _readLegNonFungible(parser_context_t* c, pd_LegNonFungible_t* v) CHECK_INPUT() CHECK_ERROR(_readPortfolioId(c, &v->sender)) CHECK_ERROR(_readPortfolioId(c, &v->receiver)) - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readVecu64(c, &v->ids)) return parser_ok; } @@ -1263,7 +1263,7 @@ parser_error_t _readBallotVote(parser_context_t* c, pd_BallotVote_t* v) parser_error_t _readBecomeAgent(parser_context_t* c, pd_BecomeAgent_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)); + CHECK_ERROR(_readAssetId(c, &v->assetId)); CHECK_ERROR(_readAgentGroup(c, &v->agentGroup)); return parser_ok; } @@ -1680,7 +1680,7 @@ parser_error_t _readAuthorizationDataAccountId(parser_context_t* c, pd_Authoriza CHECK_ERROR(_readAccountId(c, &v->accountId)) break; case 4: // TransferAssetOwnership - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) break; case 5: // JoinIdentity CHECK_ERROR(_readPermissions(c, &v->permissions)) @@ -1787,7 +1787,7 @@ parser_error_t _readBoxTasConfigProposal(parser_context_t* c, pd_BoxTasConfigPro parser_error_t _readCAId(parser_context_t* c, pd_CAId_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readLocalCAId(c, &v->local_id)) return parser_ok; } @@ -1853,7 +1853,7 @@ parser_error_t _readConfigOpPercent(parser_context_t* c, pd_ConfigOpPercent_t* v parser_error_t _readInitiateCorporateActionArgs(parser_context_t* c, pd_InitiateCorporateActionArgs_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readCAKind(c, &v->kind)) CHECK_ERROR(_readUInt64(c, &v->declDate)) CHECK_ERROR(_readOptionRecordDateSpec(c, &v->recordDate)) @@ -1912,7 +1912,7 @@ parser_error_t _readMaybeBlockBlockNumber(parser_context_t* c, pd_MaybeBlockBloc parser_error_t _readNFTs(parser_context_t* c, pd_NFTs_t* v) { CHECK_INPUT() - CHECK_ERROR(_readAssetID(c, &v->assetId)) + CHECK_ERROR(_readAssetId(c, &v->assetId)) CHECK_ERROR(_readVecNFTId(c, &v->ids)) return parser_ok; } @@ -2175,6 +2175,15 @@ parser_error_t _readMemberCount(parser_context_t* c, pd_MemberCount_t* v) return parser_ok; } +parser_error_t _readOptionAssetId(parser_context_t* c, pd_OptionAssetId_t* v) +{ + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readAssetId(c, &v->assetId)) + } + return parser_ok; +} + parser_error_t _readPortfolioName(parser_context_t* c, pd_PortfolioName_t* v) { CHECK_INPUT() @@ -2257,8 +2266,8 @@ parser_error_t _readVecClaim(parser_context_t* c, pd_VecClaim_t* v) { GEN_DEF_READVECTOR(Claim) } -parser_error_t _readVecAssetID(parser_context_t* c, pd_VecAssetID_t* v) { - GEN_DEF_READVECTOR(AssetID) +parser_error_t _readVecAssetId(parser_context_t* c, pd_VecAssetId_t* v) { + GEN_DEF_READVECTOR(AssetId) } parser_error_t _readVecPalletPermissions(parser_context_t* c, pd_VecPalletPermissions_t* v) { @@ -2661,16 +2670,6 @@ parser_error_t _readOptionAssetCount(parser_context_t* c, pd_OptionAssetCount_t* return parser_ok; } -parser_error_t _readOptionAssetID(parser_context_t* c, pd_OptionAssetID_t* v) -{ - CHECK_INPUT() - CHECK_ERROR(_readUInt8(c, &v->some)) - if (v->some > 0) { - CHECK_ERROR(_readAssetID(c, &v->contained)) - } - return parser_ok; -} - parser_error_t _readOptionBalance(parser_context_t* c, pd_OptionBalance_t* v) { CHECK_INPUT() @@ -2922,8 +2921,8 @@ parser_error_t _toStringCompactu16( return _toStringCompactInt(v, 0, false, "", "", outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringAssetID( - const pd_AssetID_t* v, +parser_error_t _toStringAssetId( + const pd_AssetId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -2969,7 +2968,7 @@ parser_error_t _toStringScope( _toStringIdentityId(&v->identity, outValue, outValueLen, pageIdx, pageCount); break; case 1: - _toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, pageCount); + _toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, pageCount); break; case 2: GEN_DEF_TOSTRING_ARRAY(v->_len) @@ -3791,14 +3790,14 @@ parser_error_t _toStringAssetPermissions( GEN_DEF_TOSTRING_ENUM("Whole") break; case 1: // These - CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringVecAssetId(&v->contained, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("These") - CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringVecAssetId(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) break; case 2: // Except - CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringVecAssetId(&v->contained, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("Except") - CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringVecAssetId(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) break; default: return parser_unexpected_value; @@ -5848,7 +5847,7 @@ parser_error_t _toStringFundFungible( // First measure number of pages uint8_t pages[3] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringBalanceNoSymbol(&v->amount, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringOptionMemo(&v->memo, outValue, outValueLen, 0, &pages[2])) @@ -5862,7 +5861,7 @@ parser_error_t _toStringFundFungible( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -5892,7 +5891,7 @@ parser_error_t _toStringFundNonFungible( // First measure number of pages uint8_t pages[3] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringVecu64(&v->ids, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringOptionMemo(&v->memo, outValue, outValueLen, 0, &pages[2])) @@ -5906,7 +5905,7 @@ parser_error_t _toStringFundNonFungible( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -5938,7 +5937,7 @@ parser_error_t _toStringLegFungible( uint8_t pages[4] = { 0 }; CHECK_ERROR(_toStringPortfolioId(&v->sender, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringPortfolioId(&v->receiver, outValue, outValueLen, 0, &pages[1])) - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[2])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringBalanceNoSymbol(&v->amount, outValue, outValueLen, 0, &pages[3])) *pageCount = 0; @@ -5963,7 +5962,7 @@ parser_error_t _toStringLegFungible( pageIdx -= pages[1]; if (pageIdx < pages[2]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) return parser_ok; } pageIdx -= pages[2]; @@ -5989,7 +5988,7 @@ parser_error_t _toStringLegNonFungible( uint8_t pages[4] = { 0 }; CHECK_ERROR(_toStringPortfolioId(&v->sender, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringPortfolioId(&v->receiver, outValue, outValueLen, 0, &pages[1])) - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[2])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringVecu64(&v->ids, outValue, outValueLen, 0, &pages[3])) *pageCount = 0; @@ -6014,7 +6013,7 @@ parser_error_t _toStringLegNonFungible( pageIdx -= pages[1]; if (pageIdx < pages[2]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) return parser_ok; } pageIdx -= pages[2]; @@ -6625,7 +6624,7 @@ parser_error_t _toStringBecomeAgent( // First measure number of pages uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringAgentGroup(&v->agentGroup, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -6638,7 +6637,7 @@ parser_error_t _toStringBecomeAgent( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -7975,9 +7974,9 @@ parser_error_t _toStringAuthorizationDataAccountId( CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, pageIdx, &_dummy);) break; case 4: // TransferAssetOwnership - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("TransferAssetOwnership") - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &_dummy);) break; case 5: // JoinIdentity CHECK_ERROR(_toStringPermissions(&v->permissions, outValue, outValueLen, 0, pageCount);) @@ -8290,7 +8289,7 @@ parser_error_t _toStringCAId( // First measure number of pages uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringLocalCAId(&v->local_id, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -8303,7 +8302,7 @@ parser_error_t _toStringCAId( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -8412,7 +8411,7 @@ parser_error_t _toStringInitiateCorporateActionArgs( // First measure number of pages uint8_t pages[8] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringCAKind(&v->kind, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringu64(&v->declDate, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringOptionRecordDateSpec(&v->recordDate, outValue, outValueLen, 0, &pages[3])) @@ -8431,7 +8430,7 @@ parser_error_t _toStringInitiateCorporateActionArgs( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -8547,7 +8546,7 @@ parser_error_t _toStringNFTs( // First measure number of pages uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringVecNFTId(&v->ids, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -8560,7 +8559,7 @@ parser_error_t _toStringNFTs( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -9079,6 +9078,22 @@ parser_error_t _toStringMemberCount( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } +parser_error_t _toStringOptionAssetId( + const pd_OptionAssetId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + if (v->some == 0) { + snprintf(outValue, outValueLen, "None"); + return parser_ok; + } + return _toStringAssetId(&v->assetId, outValue, outValueLen, pageIdx, pageCount); +} + parser_error_t _toStringPortfolioName( const pd_PortfolioName_t* v, char* outValue, @@ -9268,14 +9283,14 @@ parser_error_t _toStringVecClaim( GEN_DEF_TOSTRING_VECTOR(Claim); } -parser_error_t _toStringVecAssetID( - const pd_VecAssetID_t* v, +parser_error_t _toStringVecAssetId( + const pd_VecAssetId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount) { - GEN_DEF_TOSTRING_VECTOR(AssetID); + GEN_DEF_TOSTRING_VECTOR(AssetId); } parser_error_t _toStringVecPalletPermissions( @@ -10198,27 +10213,6 @@ parser_error_t _toStringOptionAssetCount( return parser_ok; } -parser_error_t _toStringOptionAssetID( - const pd_OptionAssetID_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - *pageCount = 1; - if (v->some > 0) { - CHECK_ERROR(_toStringAssetID( - &v->contained, - outValue, outValueLen, - pageIdx, pageCount)); - } else { - snprintf(outValue, outValueLen, "None"); - } - return parser_ok; -} - parser_error_t _toStringOptionBalance( const pd_OptionBalance_t* v, char* outValue, diff --git a/app/src/substrate/substrate_types.h b/app/src/substrate/substrate_types.h index df526ada..30f8e460 100644 --- a/app/src/substrate/substrate_types.h +++ b/app/src/substrate/substrate_types.h @@ -121,7 +121,7 @@ typedef struct { typedef struct { uint64_t _len; const uint8_t* _ptr; -} pd_AssetID_t; +} pd_AssetId_t; typedef struct { const uint8_t* _ptr; @@ -131,7 +131,7 @@ typedef struct { uint8_t value; union { pd_IdentityId_t identity; - pd_AssetID_t assetId; + pd_AssetId_t assetId; uint64_t _len; const uint8_t* _ptr; }; @@ -317,7 +317,7 @@ typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecAssetID_t; +} pd_VecAssetId_t; typedef struct { uint64_t _len; @@ -345,7 +345,7 @@ typedef struct { typedef struct { uint8_t value; - pd_VecAssetID_t contained; + pd_VecAssetId_t contained; } pd_AssetPermissions_t; typedef struct { @@ -713,13 +713,13 @@ typedef struct { } pd_DocumentUri_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_BalanceNoSymbol_t amount; pd_OptionMemo_t memo; } pd_FundFungible_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_Vecu64_t ids; pd_OptionMemo_t memo; } pd_FundNonFungible_t; @@ -727,14 +727,14 @@ typedef struct { typedef struct { pd_PortfolioId_t sender; pd_PortfolioId_t receiver; - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_BalanceNoSymbol_t amount; } pd_LegFungible_t; typedef struct { pd_PortfolioId_t sender; pd_PortfolioId_t receiver; - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_Vecu64_t ids; } pd_LegNonFungible_t; @@ -977,7 +977,7 @@ typedef struct { } pd_BallotVote_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_AgentGroup_t agentGroup; } pd_BecomeAgent_t; @@ -1254,7 +1254,7 @@ typedef struct { pd_IdentityId_t identityId; pd_AccountId_t accountId; pd_Ticker_t ticker; - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_Permissions_t permissions; pd_PortfolioId_t portfolioId; pd_BecomeAgent_t becomeAgent; @@ -1308,7 +1308,7 @@ typedef struct { } pd_BoxTasConfigProposal_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_LocalCAId_t local_id; } pd_CAId_t; @@ -1332,7 +1332,7 @@ typedef struct { } pd_ConfigOpPercent_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_CAKind_t kind; uint64_t declDate; pd_OptionRecordDateSpec_t recordDate; @@ -1358,7 +1358,7 @@ typedef struct { } pd_MaybeBlockBlockNumber_t; typedef struct { - pd_AssetID_t assetId; + pd_AssetId_t assetId; pd_VecNFTId_t ids; } pd_NFTs_t; @@ -1614,8 +1614,8 @@ typedef struct { typedef struct { uint8_t some; - pd_AssetID_t contained; -} pd_OptionAssetID_t; + pd_AssetId_t assetId; +} pd_OptionAssetId_t; typedef struct { uint8_t some; diff --git a/deps/ledger-zxlib b/deps/ledger-zxlib index a69b91db..3d4ec192 160000 --- a/deps/ledger-zxlib +++ b/deps/ledger-zxlib @@ -1 +1 @@ -Subproject commit a69b91dbe387f39e8d37a252673d0d0bb42361a2 +Subproject commit 3d4ec19264fd20e9608b0c0432b08474d247917c diff --git a/docs/supported_7.7000000.x.md b/docs/supported_7.7000000.x.md new file mode 100644 index 00000000..e9bda269 --- /dev/null +++ b/docs/supported_7.7000000.x.md @@ -0,0 +1,561 @@ +# Polymesh 7.7000000.x + +## System + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------- | ------ | ------------------ | ------------------ | ------------------ | --------------------------------- | +| Remark | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Bytes`remark
| +| Set heap pages | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`pages
| +| Set code | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Bytes`code
| +| Set code without checks | | :heavy_check_mark: | :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: | :heavy_check_mark: | `Bytes`remark
| + +## Babe + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | 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 | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---- | ------ | ------------------ | ------------------ | ------------------ | -------------------- | +| Set | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu64`now
| + +## Indices + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------- | ------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------- | +| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIndex`index
| +| Transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`new\_
`AccountIndex`index
| +| Free | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIndex`index
| +| Force transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`new\_
`AccountIndex`index
`bool`freeze
| +| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIndex`index
| + +## Balances + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------------ | ------------------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------- | +| Transfer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource`dest
`CompactBalance`amount
| +| Transfer with memo | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `LookupasStaticLookupSource`dest
`CompactBalance`amount
`OptionMemo`memo
| +| Deposit block reward reserve balance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Set balance | | :heavy_check_mark: | :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
| +| Burn account balance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`amount
| + +## Identity + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------- | +| Cdd register did | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target_account
`VecSecondaryKeyAccountId`secondary_keys
| +| Invalidate cdd claims | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`cdd
`Moment`disable_from
`OptionMoment`expiry
| +| Accept primary key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`rotation_auth_id
`Optionu64`optional_cdd_auth_id
| +| Change cdd requirement for mk rotation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`auth_required
| +| Join identity as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Leave identity as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Add claim | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`target
`Claim`claim
`OptionMoment`expiry
| +| Revoke claim | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`target
`Claim`claim
| +| Freeze secondary keys | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Unfreeze secondary keys | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Add authorization | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`target
`AuthorizationDataAccountId`data
`OptionMoment`expiry
| +| Remove authorization | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`target
`u64`auth_id
`bool`\_auth_issuer_pays
| +| Gc add cdd claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`target
| +| Gc revoke cdd claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`target
| +| Revoke claim by index | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`target
`ClaimType`claim_type
`OptionScope`scope
| +| Rotate primary key to secondary | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
`Optionu64`optional_cdd_auth_id
| +| Add secondary keys with authorization | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecSecondaryKeyWithAuthAccountId`additional_keys
`Moment`expires_at
| +| Set secondary key permissions | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`key
`Permissions`perms
| +| Remove secondary keys | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`keys_to_remove
| +| Register custom claim type | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Vecu8`ty
| +| Cdd register did with cdd | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target_account
`VecSecondaryKeyAccountId`secondary_keys
`OptionMoment`expiry
| +| Create child identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`secondary_key
| +| Create child identities | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCreateChildIdentityWithAuthAccountId`child_keys
`Moment`expires_at
| +| Unlink child identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`child_did
| + +## CddServiceProviders + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------ | +| Set active members limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MemberCount`limit
| +| Disable member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
`OptionMoment`expiry
`OptionMoment`at
| +| Add member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Remove member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Swap member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`remove
`IdentityId`add
| +| Reset members | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecIdentityId`members
| +| Abdicate membership | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | + +## PolymeshCommittee + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------- | +| Set vote threshold | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`n
`u32`d
| +| Set release coordinator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`id
| +| Set expires after | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Vote or propose | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`approve
`Proposal`call
| +| Vote | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Hash`proposal
`ProposalIndex`index
`bool`approve
| + +## CommitteeMembership + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------ | +| Set active members limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MemberCount`limit
| +| Disable member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
`OptionMoment`expiry
`OptionMoment`at
| +| Add member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Remove member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Swap member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`remove
`IdentityId`add
| +| Reset members | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecIdentityId`members
| +| Abdicate membership | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | + +## TechnicalCommittee + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------- | +| Set vote threshold | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`n
`u32`d
| +| Set release coordinator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`id
| +| Set expires after | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Vote or propose | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`approve
`Proposal`call
| +| Vote | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Hash`proposal
`ProposalIndex`index
`bool`approve
| + +## TechnicalCommitteeMembership + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------ | +| Set active members limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MemberCount`limit
| +| Disable member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
`OptionMoment`expiry
`OptionMoment`at
| +| Add member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Remove member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Swap member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`remove
`IdentityId`add
| +| Reset members | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecIdentityId`members
| +| Abdicate membership | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | + +## UpgradeCommittee + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------- | +| Set vote threshold | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`n
`u32`d
| +| Set release coordinator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`id
| +| Set expires after | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Vote or propose | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`approve
`Proposal`call
| +| Vote | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Hash`proposal
`ProposalIndex`index
`bool`approve
| + +## UpgradeCommitteeMembership + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------ | +| Set active members limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MemberCount`limit
| +| Disable member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
`OptionMoment`expiry
`OptionMoment`at
| +| Add member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Remove member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`who
| +| Swap member | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`remove
`IdentityId`add
| +| Reset members | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecIdentityId`members
| +| Abdicate membership | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | + +## MultiSig + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Create multisig | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
`u64`sigs_required
`OptionPermissions`permissions
| +| Create proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoxTasConfigProposal`proposal
`OptionMoment`expiry
| +| Approve | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
`OptionWeight`max_weight
| +| Reject | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| +| Accept multisig signer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Add multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Add multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Change sigs required | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`sigs_required
| +| Change sigs required via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`signatures_required
| +| Add admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`admin_did
| +| Remove admin via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Remove payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Remove payer via payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Approve join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`auth_id
| +| Join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| + +## Staking + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
`CompactBalance`amount
`RewardDestination`payee
| +| Bond extra | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Unbond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`num_slashing_spans
| +| Validate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ValidatorPrefs`prefs
| +| Nominate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`targets
| +| Chill | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set payee | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `RewardDestination`payee
| +| Set controller | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
| +| Set validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new\_
| +| Increase validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`additional
| +| Scale validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Percent`factor
| +| Force no eras | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Force new era | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set invulnerables | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`invulnerables
| +| Force unstake | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Force new era always | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Cancel deferred slash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `EraIndex`era
`Vecu32`slash_indices
| +| Payout stakers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Rebond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Reap stash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Kick | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`who
| +| Set staking configs | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ConfigOpBalanceOfT`min_nominator_bond
`ConfigOpBalanceOfT`min_validator_bond
`ConfigOpu32`max_nominator_count
`ConfigOpu32`max_validator_count
`ConfigOpPercent`chill_threshold
`ConfigOpPerbill`min_commission
| +| Chill other | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`controller
| +| Force apply min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
| +| Set min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new\_
| +| Add permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`Optionu32`intended_count
| +| Remove permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
| +| Validate cdd expiry nominators | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`targets
| +| Payout stakers by system | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Change slashing allowed for | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SlashingSwitch`slashing_switch
| +| Update permissioned validator intended count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`u32`new_intended_count
| +| Chill from governance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`VecAccountId`stash_keys
| +| Set commission cap | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new_cap
| + +## Session + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------- | +| Set keys | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Keys`keys
`Bytes`proof
| +| Purge keys | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | + +## Grandpa + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------ | --------- | ---------------- | ------- | ----------------------------------------------------------------------------------------------- | +| Report equivocation | | | | | `BoxEquivocationProofHashBlockNumber`equivocation_proof
`KeyOwnerProof`key_owner_proof
| +| Report equivocation unsigned | | | | | `BoxEquivocationProofHashBlockNumber`equivocation_proof
`KeyOwnerProof`key_owner_proof
| +| Note stalled | | | | | `BlockNumber`delay
`BlockNumber`best_finalized_block_number
| + +## ImOnline + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------ | +| Heartbeat | | | | | `HeartbeatBlockNumber`heartbeat
`AuthorityIdasRuntimeAppPublicSignature`signature
| + +## Sudo + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ------------------ | ------- | --------------------------------------------------- | +| Sudo | | | :heavy_check_mark: | | `Call`call
| +| Sudo unchecked weight | | | :heavy_check_mark: | | `Call`call
`Weight`\_weight
| +| Set key | | | :heavy_check_mark: | | `LookupasStaticLookupSource`new\_
| +| Sudo as | | | :heavy_check_mark: | | `LookupasStaticLookupSource`who
`Call`call
| + +## Asset + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Register unique ticker | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| +| Accept ticker transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Accept asset ownership transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Create asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetName`asset_name
`bool`divisible
`AssetType`asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Rename asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`AssetName`asset_name
| +| Issue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Redeem | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Make divisible | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocument`docs
`AssetId`asset_id
| +| Remove documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocumentId`docs_id
`AssetId`asset_id
| +| Set funding round | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`FundingRoundName`founding_round_name
| +| Update identifiers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecAssetIdentifier`asset_identifiers
| +| Controller transfer | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioId`from_portfolio
| +| Register custom asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`ty
| +| Create asset with custom type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetName`asset_name
`bool`divisible
`Vecu8`custom_asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Set asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetID`asset_id
`AssetMetadataKey`key
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Set asset metadata details | | :heavy_check_mark: | :heavy_check_mark: | | `AssetID`asset_id
`AssetMetadataKey`key
`AssetMetadataValueDetailMoment`detail
| +| Register and set local asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetID`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Register asset metadata local type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetID`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Register asset metadata global type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Update asset type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetType`asset_type
| +| Remove local metadata key | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataLocalKey`local_key
| +| Remove metadata value | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`metadata_key
| +| Exempt asset affirmation | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset affirmation exemption | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Pre approve asset | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Add mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Remove mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Link ticker to asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| +| Unlink ticker from asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| + +## CapitalDistribution + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Distribute | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| +| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Push benefit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`IdentityId`holder
| +| Reclaim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Remove distribution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| + +## Checkpoint + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------- | +| Create checkpoint | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Set schedules max complexity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`max_complexity
| +| Create schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleCheckpoints`schedule
| +| Remove schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleId`id
| + +## ComplianceManager + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------ | +| Add compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecCondition`sender_conditions
`VecCondition`receiver_conditions
| +| Remove compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`u32`id
| +| Replace asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecComplianceRequirement`asset_compliance
| +| Reset asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Pause asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Resume asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TrustedIssuer`issuer
| +| Remove default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`issuer
| +| Change compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ComplianceRequirement`new_req
| + +## CorporateAction + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------------------- | ------ | --------- | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Set max details length | | | :heavy_check_mark: | :heavy_check_mark: | `u32`length
| +| Set default targets | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TargetIdentities`targets
| +| Set default withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`Tax`tax
| +| Set did withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`taxed_did
`OptionTax`tax
| +| Initiate corporate action | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`CAKind`kind
`Moment`decl_date
`OptionRecordDateSpec`record_date
`CADetails`details
`OptionTargetIdentities`targets
`OptionTax`default_withholding_tax
`OptionVecTupleIdentityIdTax`withholding_tax
| +| Link ca doc | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`id
`VecDocumentId`docs
| +| Remove ca | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Change record date | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionRecordDateSpec`record_date
| +| Initiate corporate action and distribute | | | :heavy_check_mark: | :heavy_check_mark: | `InitiateCorporateActionArgs`ca_args
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| + +## CorporateBallot + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------- | ------ | --------- | ------------------ | ------------------ | ------------------------------------------------------------------------------ | +| Attach ballot | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`BallotTimeRange`range
`BallotMeta`meta
`bool`rcv
| +| Vote | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`VecBallotVote`votes
| +| Change end | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`Moment`end
| +| Change meta | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`BallotMeta`meta
| +| Change rcv | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`bool`rcv
| +| Remove ballot | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| + +## Pips + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------------------ | --------- | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Set prune historical pips | | | :heavy_check_mark: | :heavy_check_mark: | `bool`prune
| +| Set min proposal deposit | | | :heavy_check_mark: | :heavy_check_mark: | `Balance`deposit
| +| Set default enactment period | | | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`duration
| +| Set pending pip expiry | | | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Set max pip skip count | | | :heavy_check_mark: | :heavy_check_mark: | `SkippedCount`max
| +| Set active pip limit | | | :heavy_check_mark: | :heavy_check_mark: | `u32`limit
| +| Propose | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `Proposal`proposal
`Balance`deposit
`OptionUrl`url
`OptionPipDescription`description
| +| Vote | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`bool`aye_or_nay
`Balance`deposit
| +| Approve committee proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reject proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Prune proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reschedule execution | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`OptionBlockNumber`until
| +| Clear snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Enact snapshot results | | | :heavy_check_mark: | :heavy_check_mark: | `VecTuplePipIdSnapshotResult`results
| +| Execute scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Expire scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`did
`PipId`id
| + +## Portfolio + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------- | +| Create portfolio | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioName`name
| +| Delete portfolio | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioNumber`num
| +| Rename portfolio | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioNumber`num
`PortfolioName`to_name
| +| Quit portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`pid
| +| Accept portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| +| Move portfolio funds | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioId`from
`PortfolioId`to
`VecFund`funds
| +| Pre approve portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| +| Remove portfolio pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| +| Allow identity to create portfolios | | | :heavy_check_mark: | | `IdentityId`trusted_identity
| +| Revoke create portfolios permission | | | :heavy_check_mark: | | `IdentityId`identity
| +| Create custody portfolio | | | :heavy_check_mark: | | `IdentityId`portfolio_owner_id
`PortfolioName`portfolio_name
| + +## ProtocolFee + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------ | ------ | ------------------ | ------------------ | ------------------ | ----------------------------------------- | +| Change coefficient | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PosRatio`coefficient
| +| Change base fee | | | | | `ProtocolOp`op
`Balance`base_fee
| + +## Scheduler + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------ | +| Schedule | | | | | `BlockNumber`when
`OptionschedulePeriodBlockNumber`maybe_periodic
`schedulePriority`priority
`Call`call
| +| Cancel | | | | | `BlockNumber`when
`u32`index
| +| Schedule named | | | | | `TaskName`id
`BlockNumber`when
`OptionschedulePeriodBlockNumber`maybe_periodic
`schedulePriority`priority
`Call`call
| +| Cancel named | | | | | `TaskName`id
| +| Schedule after | | | | | `BlockNumber`after
`OptionschedulePeriodBlockNumber`maybe_periodic
`schedulePriority`priority
`Call`call
| +| Schedule named after | | | | | `TaskName`id
`BlockNumber`after
`OptionschedulePeriodBlockNumber`maybe_periodic
`schedulePriority`priority
`Call`call
| + +## Settlement + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Create venue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueDetails`details
`VecAccountId`signers
`VenueType`typ
| +| Update venue details | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueDetails`details
| +| Update venue type | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueType`typ
| +| Affirm with receipts | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
| +| Set venue filtering | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`bool`enabled
| +| Allow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Disallow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Update venue signers | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VecAccountId`signers
`bool`add_signers
| +| Execute manual instruction | | :heavy_check_mark: | :heavy_check_mark: | | `InstructionId`id
`OptionPortfolioId`portfolio
`u32`fungible_transfers
`u32`nfts_transfers
`u32`offchain_transfers
`OptionWeight`weight_limit
| +| Add instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
| +| Add and affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
| +| Affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Withdraw affirmation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Reject instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`PortfolioId`portfolio
| +| Execute scheduled instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`Weight`weight_limit
| +| Affirm with receipts with count | | | :heavy_check_mark: | | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Affirm instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Reject instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`PortfolioId`portfolio
`OptionAssetCount`number_of_assets
| +| Withdraw affirmation with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Add instruction with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Add and affirm with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Affirm instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionMoment`expiry
| +| Withdraw affirmation as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
| +| Reject instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionAssetCount`number_of_assets
| + +## Statistics + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------------ | +| Set active asset stats | | | | | `AssetId`asset_id
`BTreeSetStatType`stat_types
| +| Batch update asset stats | | | | | `AssetId`asset_id
`StatType`stat_type
`BTreeSetStatUpdate`values
| +| Set asset transfer compliance | | | | | `AssetId`asset_id
`BTreeSetTransferCondition`transfer_conditions
| +| Set entities exempt | | | | | `bool`is_exempt
`TransferConditionExemptKey`exempt_key
`BTreeSetIdentityId`entities
| + +## Sto + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Create fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`offering_portfolio
`AssetId`offering_asset
`PortfolioId`raising_portfolio
`AssetId`raising_asset
`VecPriceTier`tiers
`VenueId`venue_id
`OptionMoment`start
`OptionMoment`end
`BalanceNoSymbol`minimum_investment
`FundraiserName`fundraiser_name
| +| Invest | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`investment_portfolio
`PortfolioId`funding_portfolio
`AssetId`offering_asset
`FundraiserId`id
`BalanceNoSymbol`purchase_amount
`OptionBalance`max_price
`OptionReceiptDetails`receipt
| +| Freeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Unfreeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Modify fundraiser window | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
`Moment`start
`OptionMoment`end
| +| Stop | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| + +## Treasury + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------- | ------ | ------------------ | ------------------ | ------------------ | ---------------------------------- | +| Disbursement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecBeneficiary`beneficiaries
| +| Reimbursement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`amount
| + +## Utility + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------- | +| Batch | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Relay tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target
`OffChainSignature`signature
`UniqueCall`call
| +| Batch all | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Dispatch as | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoxPalletsOrigin`as_origin
`Call`call
| +| Force batch | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| With weight | | :heavy_check_mark: | :heavy_check_mark: | | `Call`call
`Weight`weight
| +| Batch old | | | | | `VecCall`calls
| +| Batch atomic | | | | | `VecCall`calls
| +| Batch optimistic | | | | | `VecCall`calls
| +| As derivative | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u16`index
`Call`call
| + +## Base + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---- | ------ | --------- | ---------------- | ------- | --------- | + +## ExternalAgents + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------ | +| Create group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
| +| Set group permissions | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AGId`id
`ExtrinsicPermissions`perms
| +| Remove agent | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
| +| Abdicate | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Change group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
`AgentGroup`group
| +| Accept become agent | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| +| Create group and add auth | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`target
`OptionMoment`expiry
| +| Create and change custom group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`agent
| + +## Relayer + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------- | ------ | ------------------ | ------------------ | ------- | -------------------------------------------------- | +| Set paying key | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`user_key
`Balance`polyx_limit
| +| Accept paying key | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| +| Remove paying key | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`user_key
`AccountId`paying_key
| +| Update polyx limit | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`user_key
`Balance`polyx_limit
| +| Increase polyx limit | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`user_key
`Balance`amount
| +| Decrease polyx limit | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`user_key
`Balance`amount
| + +## Contracts + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Call old weight | | :heavy_check_mark: | :heavy_check_mark: | | `AccountIdLookupOfT`dest
`CompactBalance`amount
`Compactu64`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`Bytes`data
| +| Instantiate with code old weight | | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance`amount
`Compactu64`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`Bytes`code
`Bytes`data
`Bytes`salt
| +| Instantiate old weight | | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance`amount
`Compactu64`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`CodeHash`code_hash
`Bytes`data
`Bytes`salt
| +| Upload code | | :heavy_check_mark: | :heavy_check_mark: | | `Bytes`code
`OptionCompactBalanceOf`storage_deposit_limit
`Determinism`determinism
| +| Remove code | | :heavy_check_mark: | :heavy_check_mark: | | `CodeHash`code_hash
| +| Set code | | :heavy_check_mark: | :heavy_check_mark: | | `AccountIdLookupOfT`dest
`CodeHash`code_hash
| +| Call | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`dest
`CompactBalance`amount
`Weight`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`Bytes`data
| +| Instantiate with code | | :heavy_check_mark: | :heavy_check_mark: | | `CompactBalance`amount
`Weight`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`Bytes`code
`Bytes`data
`Bytes`salt
| +| Instantiate | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
`Weight`gas_limit
`OptionCompactBalanceOf`storage_deposit_limit
`CodeHash`code_hash
`Bytes`data
`Bytes`salt
| + +## PolymeshContracts + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------------ | ------ | ------------------ | ------------------ | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Instantiate with code perms | | :heavy_check_mark: | :heavy_check_mark: | | `Balance`endowment
`Weight`gas_limit
`OptionBalance`storage_deposit_limit
`Vecu8`code
`Vecu8`data
`Vecu8`salt
`Permissions`perms
| +| Instantiate with hash perms | | :heavy_check_mark: | :heavy_check_mark: | | `Balance`endowment
`Weight`gas_limit
`OptionBalance`storage_deposit_limit
`CodeHash`code_hash
`Vecu8`data
`Vecu8`salt
`Permissions`perms
| +| Update call runtime whitelist | | :heavy_check_mark: | :heavy_check_mark: | | `VecTupleExtrinsicIdbool`updates
| +| Instantiate with code as primary key | | :heavy_check_mark: | :heavy_check_mark: | | `Balance`endowment
`Weight`gas_limit
`OptionBalance`storage_deposit_limit
`Vecu8`code
`Vecu8`data
`Vecu8`salt
| +| Instantiate with hash as primary key | | :heavy_check_mark: | :heavy_check_mark: | | `Balance`endowment
`Weight`gas_limit
`OptionBalance`storage_deposit_limit
`CodeHash`code_hash
`Vecu8`data
`Vecu8`salt
| +| Upgrade api | | :heavy_check_mark: | :heavy_check_mark: | | `Api`api
`NextUpgradeT`next_upgrade
| + +## Preimage + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------ | ------ | ------------------ | ------------------ | ------- | ----------------- | +| Note preimage | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`bytes
| +| Unnote preimage | | :heavy_check_mark: | :heavy_check_mark: | | `Hash`hash
| +| Request preimage | | :heavy_check_mark: | :heavy_check_mark: | | `Hash`hash
| +| Unrequest preimage | | :heavy_check_mark: | :heavy_check_mark: | | `Hash`hash
| + +## Nft + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------- | +| Create nft collection | | :heavy_check_mark: | :heavy_check_mark: | | `OptionAssetId`asset_id
`OptionNonFungibleType`nft_type
`VecAssetMetadataKey`collection_keys
| +| Issue nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`VecNFTMetadataAttribute`nft_metadata_attributes
`PortfolioKind`portfolio_kind
| +| Redeem nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`NFTId`nft_id
`PortfolioKind`portfolio_kind
`Optionu8`number_of_keys
| +| Controller transfer | | | :heavy_check_mark: | | `NFTs`nfts
`PortfolioId`source_portfolio
`PortfolioKind`callers_portfolio_kind
| + +## ElectionProviderMultiPhase + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------ | +| Submit unsigned | | :heavy_check_mark: | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
`SolutionOrSnapshotSize`witness
| +| Set minimum untrusted score | | | :heavy_check_mark: | | `OptionElectionScore`maybe_next_score
| +| Set emergency election result | | | :heavy_check_mark: | | `SupportsAccountId`supports
| +| Submit | | | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
| +| Governance fallback | | | :heavy_check_mark: | | `Optionu32`maybe_max_voters
`Optionu32`maybe_max_targets
| + +## TestUtils + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ---------------- | ------- | --------------------------------------------- | +| Register did | | | | | `VecSecondaryKeyAccountId`secondary_keys
| +| Mock cdd register did | | | | | `AccountId`target_account
| +| Get my did | | | | | | +| Get cdd of | | | | | `AccountId`of
| diff --git a/docs/supported_latest.md b/docs/supported_latest.md index 02e9b675..df5b78fa 100644 --- a/docs/supported_latest.md +++ b/docs/supported_latest.md @@ -1,4 +1,4 @@ -# Polymesh 4.6003001.x +# Polymesh 7.7000000.x ## System @@ -157,89 +157,64 @@ ## MultiSig -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------- | -| Create multisig | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecSignatoryAccountId`signers
`u64`sigs_required
| -| Create or approve proposal as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create or approve proposal as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create proposal as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Create proposal as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Proposal`proposal
`OptionMoment`expiry
`bool`auto_close
| -| Approve as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Approve as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Reject as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Reject as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| -| Accept multisig signer as identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`\_auth_id
| -| Accept multisig signer as key | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Add multisig signer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`signer
| -| Remove multisig signer | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SignatoryAccountId`signer
| -| Add multisig signers via creator | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`VecSignatoryAccountId`signers
| -| Remove multisig signers via creator | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`VecSignatoryAccountId`signers
| -| Change sigs required | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`sigs_required
| -| Make multisig secondary | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| -| Make multisig primary | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`Optionu64`optional_cdd_auth_id
| -| Execute scheduled proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
`IdentityId`multisig_did
`Weight`\_proposal_weight
| -| Change sigs required via creator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig_account
`u64`signatures_required
| -| Remove creator controls | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig_account
| - -## Bridge - -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------- | ------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------- | -| Change controller | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`controller
| -| Change admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`admin
| -| Change timelock | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`timelock
| -| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Change bridge limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`amount
`BlockNumber`duration
| -| Change bridge exempted | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecTupleIdentityIdbool`exempted
| -| Force handle bridge tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BridgeTxAccountId`bridge_tx
| -| Batch propose bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Propose bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Handle bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Freeze txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Unfreeze txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| -| Handle scheduled bridge tx | | :heavy_check_mark: | :heavy_check_mark: | | `BridgeTxAccountId`bridge_tx
| -| Add freeze admin | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`freeze_admin
| -| Remove freeze admin | | :heavy_check_mark: | :heavy_check_mark: | | `AccountId`freeze_admin
| -| Remove txs | | :heavy_check_mark: | :heavy_check_mark: | | `VecBridgeTxAccountId`bridge_txs
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Create multisig | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
`u64`sigs_required
`OptionPermissions`permissions
| +| Create proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoxTasConfigProposal`proposal
`OptionMoment`expiry
| +| Approve | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
`OptionWeight`max_weight
| +| Reject | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`proposal_id
| +| Accept multisig signer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Add multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoundedVecAccountIdMaxSigners`signers
| +| Add multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Remove multisig signers via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`BoundedVecAccountIdMaxSigners`signers
| +| Change sigs required | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`sigs_required
| +| Change sigs required via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`signatures_required
| +| Add admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`admin_did
| +| Remove admin via admin | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Remove payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Remove payer via payer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
| +| Approve join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`multisig
`u64`auth_id
| +| Join identity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| ## Staking -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------------------------------------------------------------------- | -| Bond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
`CompactBalance`amount
`RewardDestination`payee
| -| Bond extra | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Unbond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`num_slashing_spans
| -| Validate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ValidatorPrefs`prefs
| -| Nominate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`targets
| -| Chill | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Set payee | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `RewardDestination`payee
| -| Set controller | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
| -| Set validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new\_
| -| Increase validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`additional
| -| Scale validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Percent`factor
| -| Add permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`Optionu32`intended_count
| -| Remove permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
| -| Validate cdd expiry nominators | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`targets
| -| Set commission cap | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new_cap
| -| Set min bond threshold | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`new_value
| -| Force no eras | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Force new era | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Set invulnerables | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`invulnerables
| -| Force unstake | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| -| Force new era always | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Cancel deferred slash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `EraIndex`era
`Vecu32`slash_indices
| -| Payout stakers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| -| Rebond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| -| Set history depth | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new_history_depth
`Compactu32`era_items_deleted
| -| Reap stash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| -| Submit election solution | | | | | `VecValidatorIndex`winners
`CompactAssignments`compact
`ElectionScore`score
`EraIndex`era
`ElectionSize`size
| -| Submit election solution unsigned | | | | | `VecValidatorIndex`winners
`CompactAssignments`compact
`ElectionScore`score
`EraIndex`era
`ElectionSize`size
| -| Payout stakers by system | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| -| Change slashing allowed for | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SlashingSwitch`slashing_switch
| -| Update permissioned validator intended count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`u32`new_intended_count
| -| Chill from governance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`VecAccountId`stash_keys
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Bond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
`CompactBalance`amount
`RewardDestination`payee
| +| Bond extra | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Unbond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Withdraw Unbonded | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`num_slashing_spans
| +| Validate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ValidatorPrefs`prefs
| +| Nominate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`targets
| +| Chill | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set payee | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `RewardDestination`payee
| +| Set controller | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountIdLookupOfT`controller
| +| Set validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`new\_
| +| Increase validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Compactu32`additional
| +| Scale validator count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Percent`factor
| +| Force no eras | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Force new era | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Set invulnerables | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`invulnerables
| +| Force unstake | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Force new era always | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | +| Cancel deferred slash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `EraIndex`era
`Vecu32`slash_indices
| +| Payout stakers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Rebond | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CompactBalance`amount
| +| Reap stash | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`stash
`u32`num_slashing_spans
| +| Kick | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountIdLookupOfT`who
| +| Set staking configs | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `ConfigOpBalanceOfT`min_nominator_bond
`ConfigOpBalanceOfT`min_validator_bond
`ConfigOpu32`max_nominator_count
`ConfigOpu32`max_validator_count
`ConfigOpPercent`chill_threshold
`ConfigOpPerbill`min_commission
| +| Chill other | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`controller
| +| Force apply min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
| +| Set min commission | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new\_
| +| Add permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`Optionu32`intended_count
| +| Remove permissioned validator | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
| +| Validate cdd expiry nominators | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecAccountId`targets
| +| Payout stakers by system | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`validator_stash
`EraIndex`era
| +| Change slashing allowed for | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SlashingSwitch`slashing_switch
| +| Update permissioned validator intended count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`u32`new_intended_count
| +| Chill from governance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`identity
`VecAccountId`stash_keys
| +| Set commission cap | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Perbill`new_cap
| ## Session @@ -262,89 +237,99 @@ | --------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------ | | Heartbeat | | | | | `HeartbeatBlockNumber`heartbeat
`AuthorityIdasRuntimeAppPublicSignature`signature
| +## Sudo + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ------------------ | ------- | --------------------------------------------------- | +| Sudo | | | :heavy_check_mark: | | `Call`call
| +| Sudo unchecked weight | | | :heavy_check_mark: | | `Call`call
`Weight`\_weight
| +| Set key | | | :heavy_check_mark: | | `LookupasStaticLookupSource`new\_
| +| Sudo as | | | :heavy_check_mark: | | `LookupasStaticLookupSource`who
`Call`call
| + ## Asset -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------------------- | ------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Register ticker | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Accept ticker transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Accept asset ownership transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| -| Create asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetName`name
`Ticker`ticker
`bool`divisible
`AssetType`asset_type
`VecAssetIdentifier`identifiers
`OptionFundingRoundName`funding_round
| -| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Rename asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`AssetName`name
| -| Issue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| -| Redeem | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`BalanceNoSymbol`amount
| -| Make divisible | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Add documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocument`docs
`Ticker`ticker
| -| Remove documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocumentId`ids
`Ticker`ticker
| -| Set funding round | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`FundingRoundName`name
| -| Update identifiers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecAssetIdentifier`asset_identifiers
| -| Controller transfer | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioId`from_portfolio
| -| Register custom asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`ty
| -| Create asset with custom type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetName`name
`Ticker`ticker
`bool`divisible
`Vecu8`custom_asset_type
`VecAssetIdentifier`identifiers
`OptionFundingRoundName`funding_round
| -| Set asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`key
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| -| Set asset metadata details | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`key
`AssetMetadataValueDetailMoment`detail
| -| Register and set local asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataName`name
`AssetMetadataSpec`spec
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| -| Register asset metadata local type | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataName`name
`AssetMetadataSpec`spec
| -| Register asset metadata global type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetMetadataName`name
`AssetMetadataSpec`spec
| -| Redeem from portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`BalanceNoSymbol`amount
`PortfolioKind`portfolio
| -| Update asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetType`asset_type
| -| Remove local metadata key | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataLocalKey`local_key
| -| Remove metadata value | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetMetadataKey`metadata_key
| -| Exempt ticker affirmation | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Remove ticker affirmation exemption | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Pre approve ticker | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Remove ticker pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Add mandatory mediators | | | :heavy_check_mark: | | `Ticker`ticker
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| -| Remove mandatory mediators | | | :heavy_check_mark: | | `Ticker`ticker
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Register unique ticker | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| +| Accept ticker transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Accept asset ownership transfer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`auth_id
| +| Create asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetName`asset_name
`bool`divisible
`AssetType`asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Freeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Unfreeze | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Rename asset | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`AssetName`asset_name
| +| Issue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Redeem | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioKind`portfolio_kind
| +| Make divisible | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocument`docs
`AssetId`asset_id
| +| Remove documents | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecDocumentId`docs_id
`AssetId`asset_id
| +| Set funding round | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`FundingRoundName`founding_round_name
| +| Update identifiers | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecAssetIdentifier`asset_identifiers
| +| Controller transfer | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`BalanceNoSymbol`amount
`PortfolioId`from_portfolio
| +| Register custom asset type | | :heavy_check_mark: | :heavy_check_mark: | | `Vecu8`ty
| +| Create asset with custom type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetName`asset_name
`bool`divisible
`Vecu8`custom_asset_type
`VecAssetIdentifier`asset_identifiers
`OptionFundingRoundName`funding_round_name
| +| Set asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`key
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Set asset metadata details | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`key
`AssetMetadataValueDetailMoment`detail
| +| Register and set local asset metadata | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
`AssetMetadataValue`value
`OptionAssetMetadataValueDetailMoment`detail
| +| Register asset metadata local type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Register asset metadata global type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetMetadataName`name
`AssetMetadataSpec`spec
| +| Update asset type | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetType`asset_type
| +| Remove local metadata key | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataLocalKey`local_key
| +| Remove metadata value | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AssetMetadataKey`metadata_key
| +| Exempt asset affirmation | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset affirmation exemption | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Pre approve asset | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Remove asset pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Add mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Remove mandatory mediators | | | :heavy_check_mark: | | `AssetId`asset_id
`BoundedBTreeSetIdentityIdMaxAssetMediators`mediators
| +| Link ticker to asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| +| Unlink ticker from asset id | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AssetId`asset_id
| ## CapitalDistribution -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------- | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Distribute | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionPortfolioNumber`portfolio
`Ticker`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| -| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Push benefit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`IdentityId`holder
| -| Reclaim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Remove distribution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Distribute | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| +| Claim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Push benefit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`IdentityId`holder
| +| Reclaim | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Remove distribution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| ## Checkpoint -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------- | ------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------- | -| Create checkpoint | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Set schedules max complexity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`max_complexity
| -| Create schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ScheduleCheckpoints`schedule
| -| Remove schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ScheduleId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------- | +| Create checkpoint | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Set schedules max complexity | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u64`max_complexity
| +| Create schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleCheckpoints`schedule
| +| Remove schedule | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ScheduleId`id
| ## ComplianceManager -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | --------------------------------------------------------------------------------------------- | -| Add compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecCondition`sender_conditions
`VecCondition`receiver_conditions
| -| Remove compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`u32`id
| -| Replace asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecComplianceRequirement`asset_compliance
| -| Reset asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Pause asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Resume asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
| -| Add default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`TrustedIssuer`issuer
| -| Remove default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`IdentityId`issuer
| -| Change compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`ComplianceRequirement`new_req
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------------- | ------ | ------------------ | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------ | +| Add compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecCondition`sender_conditions
`VecCondition`receiver_conditions
| +| Remove compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`u32`id
| +| Replace asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecComplianceRequirement`asset_compliance
| +| Reset asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Pause asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Resume asset compliance | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
| +| Add default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TrustedIssuer`issuer
| +| Remove default trusted claim issuer | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`issuer
| +| Change compliance requirement | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`ComplianceRequirement`new_req
| ## CorporateAction -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------------------- | ------ | --------- | ------------------ | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Set max details length | | | :heavy_check_mark: | :heavy_check_mark: | `u32`length
| -| Set default targets | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`TargetIdentities`targets
| -| Set default withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`Tax`tax
| -| Set did withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`IdentityId`taxed_did
`OptionTax`tax
| -| Initiate corporate action | | | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`CAKind`kind
`Moment`decl_date
`OptionRecordDateSpec`record_date
`CADetails`details
`OptionTargetIdentities`targets
`OptionTax`default_withholding_tax
`OptionVecTupleIdentityIdTax`withholding_tax
| -| Link ca doc | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`id
`VecDocumentId`docs
| -| Remove ca | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| -| Change record date | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionRecordDateSpec`record_date
| -| Initiate corporate action and distribute | | | :heavy_check_mark: | :heavy_check_mark: | `InitiateCorporateActionArgs`ca_args
`OptionPortfolioNumber`portfolio
`Ticker`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------------------- | ------ | --------- | ------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Set max details length | | | :heavy_check_mark: | :heavy_check_mark: | `u32`length
| +| Set default targets | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`TargetIdentities`targets
| +| Set default withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`Tax`tax
| +| Set did withholding tax | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`IdentityId`taxed_did
`OptionTax`tax
| +| Initiate corporate action | | | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`CAKind`kind
`Moment`decl_date
`OptionRecordDateSpec`record_date
`CADetails`details
`OptionTargetIdentities`targets
`OptionTax`default_withholding_tax
`OptionVecTupleIdentityIdTax`withholding_tax
| +| Link ca doc | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`id
`VecDocumentId`docs
| +| Remove ca | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
| +| Change record date | | | :heavy_check_mark: | :heavy_check_mark: | `CAId`ca_id
`OptionRecordDateSpec`record_date
| +| Initiate corporate action and distribute | | | :heavy_check_mark: | :heavy_check_mark: | `InitiateCorporateActionArgs`ca_args
`OptionPortfolioNumber`portfolio
`AssetId`currency
`Balance`per_share
`Balance`amount
`Moment`payment_at
`OptionMoment`expires_at
| ## CorporateBallot @@ -359,25 +344,25 @@ ## Pips -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | -| Set prune historical pips | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `bool`prune
| -| Set min proposal deposit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Balance`deposit
| -| Set default enactment period | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`duration
| -| Set pending pip expiry | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| -| Set max pip skip count | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `SkippedCount`max
| -| Set active pip limit | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u32`limit
| -| Propose | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Proposal`proposal
`Balance`deposit
`OptionUrl`url
`OptionPipDescription`description
| -| Vote | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`bool`aye_or_nay
`Balance`deposit
| -| Approve committee proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Reject proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Prune proposal | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Reschedule execution | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`OptionBlockNumber`until
| -| Clear snapshot | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Snapshot | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | -| Enact snapshot results | | | :heavy_check_mark: | :heavy_check_mark: | `VecTuplePipIdSnapshotResult`results
| -| Execute scheduled pip | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| -| Expire scheduled pip | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`did
`PipId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ---------------------------- | ------------------ | --------- | ------------------ | ------------------ | ----------------------------------------------------------------------------------------------------- | +| Set prune historical pips | | | :heavy_check_mark: | :heavy_check_mark: | `bool`prune
| +| Set min proposal deposit | | | :heavy_check_mark: | :heavy_check_mark: | `Balance`deposit
| +| Set default enactment period | | | :heavy_check_mark: | :heavy_check_mark: | `BlockNumber`duration
| +| Set pending pip expiry | | | :heavy_check_mark: | :heavy_check_mark: | `MaybeBlockBlockNumber`expiry
| +| Set max pip skip count | | | :heavy_check_mark: | :heavy_check_mark: | `SkippedCount`max
| +| Set active pip limit | | | :heavy_check_mark: | :heavy_check_mark: | `u32`limit
| +| Propose | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `Proposal`proposal
`Balance`deposit
`OptionUrl`url
`OptionPipDescription`description
| +| Vote | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`bool`aye_or_nay
`Balance`deposit
| +| Approve committee proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reject proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Prune proposal | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Reschedule execution | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
`OptionBlockNumber`until
| +| Clear snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Snapshot | | | :heavy_check_mark: | :heavy_check_mark: | | +| Enact snapshot results | | | :heavy_check_mark: | :heavy_check_mark: | `VecTuplePipIdSnapshotResult`results
| +| Execute scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `PipId`id
| +| Expire scheduled pip | | | :heavy_check_mark: | :heavy_check_mark: | `IdentityId`did
`PipId`id
| ## Portfolio @@ -389,8 +374,8 @@ | Quit portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`pid
| | Accept portfolio custody | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| | Move portfolio funds | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `PortfolioId`from
`PortfolioId`to
`VecFund`funds
| -| Pre approve portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`PortfolioId`portfolio_id
| -| Remove portfolio pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`PortfolioId`portfolio_id
| +| Pre approve portfolio | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| +| Remove portfolio pre approval | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`PortfolioId`portfolio_id
| | Allow identity to create portfolios | | | :heavy_check_mark: | | `IdentityId`trusted_identity
| | Revoke create portfolios permission | | | :heavy_check_mark: | | `IdentityId`identity
| | Create custody portfolio | | | :heavy_check_mark: | | `IdentityId`portfolio_owner_id
`PortfolioName`portfolio_name
| @@ -415,52 +400,52 @@ ## Settlement -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Create venue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueDetails`details
`VecAccountId`signers
`VenueType`typ
| -| Update venue details | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueDetails`details
| -| Update venue type | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueType`typ
| -| Affirm with receipts | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
| -| Set venue filtering | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`bool`enabled
| -| Allow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecVenueId`venues
| -| Disallow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `Ticker`ticker
`VecVenueId`venues
| -| Update venue signers | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VecAccountId`signers
`bool`add_signers
| -| Execute manual instruction | | :heavy_check_mark: | :heavy_check_mark: | | `InstructionId`id
`OptionPortfolioId`portfolio
`u32`fungible_transfers
`u32`nfts_transfers
`u32`offchain_transfers
`OptionWeight`weight_limit
| -| Add instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
| -| Add and affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
| -| Affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| -| Withdraw affirmation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| -| Reject instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`PortfolioId`portfolio
| -| Execute scheduled instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`Weight`weight_limit
| -| Affirm with receipts with count | | | :heavy_check_mark: | | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Affirm instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Reject instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`PortfolioId`portfolio
`OptionAssetCount`number_of_assets
| -| Withdraw affirmation with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| -| Add instruction with mediators | | | :heavy_check_mark: | | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| -| Add and affirm with mediators | | | :heavy_check_mark: | | `VenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| -| Affirm instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionMoment`expiry
| -| Withdraw affirmation as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
| -| Reject instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionAssetCount`number_of_assets
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| -------------------------------- | ------ | ------------------ | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Create venue | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VenueDetails`details
`VecAccountId`signers
`VenueType`typ
| +| Update venue details | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueDetails`details
| +| Update venue type | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VenueType`typ
| +| Affirm with receipts | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
| +| Set venue filtering | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`bool`enabled
| +| Allow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Disallow venues | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AssetId`asset_id
`VecVenueId`venues
| +| Update venue signers | | :heavy_check_mark: | :heavy_check_mark: | | `VenueId`id
`VecAccountId`signers
`bool`add_signers
| +| Execute manual instruction | | :heavy_check_mark: | :heavy_check_mark: | | `InstructionId`id
`OptionPortfolioId`portfolio
`u32`fungible_transfers
`u32`nfts_transfers
`u32`offchain_transfers
`OptionWeight`weight_limit
| +| Add instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
| +| Add and affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
| +| Affirm instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Withdraw affirmation | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`VecPortfolioId`portfolios
| +| Reject instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`PortfolioId`portfolio
| +| Execute scheduled instruction | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `InstructionId`id
`Weight`weight_limit
| +| Affirm with receipts with count | | | :heavy_check_mark: | | `InstructionId`id
`VecReceiptDetails`receipt_details
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Affirm instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Reject instruction with count | | | :heavy_check_mark: | | `InstructionId`id
`PortfolioId`portfolio
`OptionAssetCount`number_of_assets
| +| Withdraw affirmation with count | | | :heavy_check_mark: | | `InstructionId`id
`VecPortfolioId`portfolios
`OptionAffirmationCount`number_of_assets
| +| Add instruction with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Add and affirm with mediators | | | :heavy_check_mark: | | `OptionVenueId`venue_id
`SettlementTypeBlockNumber`settlement_type
`OptionMoment`trade_date
`OptionMoment`value_date
`VecLeg`legs
`VecPortfolioId`portfolios
`OptionMemo`instruction_memo
`BoundedBTreeSetIdentityIdMaxInstructionMediators`mediators
| +| Affirm instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionMoment`expiry
| +| Withdraw affirmation as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
| +| Reject instruction as mediator | | | :heavy_check_mark: | | `InstructionId`instruction_id
`OptionAssetCount`number_of_assets
| ## Statistics | Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | | ----------------------------- | ------ | --------- | ---------------- | ------- | ------------------------------------------------------------------------------------------------ | -| Set active asset stats | | | | | `AssetScope`asset
`BTreeSetStatType`stat_types
| -| Batch update asset stats | | | | | `AssetScope`asset
`StatType`stat_type
`BTreeSetStatUpdate`values
| -| Set asset transfer compliance | | | | | `AssetScope`asset
`BTreeSetTransferCondition`transfer_conditions
| +| Set active asset stats | | | | | `AssetId`asset_id
`BTreeSetStatType`stat_types
| +| Batch update asset stats | | | | | `AssetId`asset_id
`StatType`stat_type
`BTreeSetStatUpdate`values
| +| Set asset transfer compliance | | | | | `AssetId`asset_id
`BTreeSetTransferCondition`transfer_conditions
| | Set entities exempt | | | | | `bool`is_exempt
`TransferConditionExemptKey`exempt_key
`BTreeSetIdentityId`entities
| ## Sto -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------ | ------ | ------------------ | ------------------ | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Create fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`offering_portfolio
`Ticker`offering_asset
`PortfolioId`raising_portfolio
`Ticker`raising_asset
`VecPriceTier`tiers
`VenueId`venue_id
`OptionMoment`start
`OptionMoment`end
`BalanceNoSymbol`minimum_investment
`FundraiserName`fundraiser_name
| -| Invest | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`investment_portfolio
`PortfolioId`funding_portfolio
`Ticker`offering_asset
`FundraiserId`id
`BalanceNoSymbol`purchase_amount
`OptionBalance`max_price
`OptionReceiptDetails`receipt
| -| Freeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| -| Unfreeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| -| Modify fundraiser window | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
`Moment`start
`OptionMoment`end
| -| Stop | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`offering_asset
`FundraiserId`id
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Create fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`offering_portfolio
`AssetId`offering_asset
`PortfolioId`raising_portfolio
`AssetId`raising_asset
`VecPriceTier`tiers
`VenueId`venue_id
`OptionMoment`start
`OptionMoment`end
`BalanceNoSymbol`minimum_investment
`FundraiserName`fundraiser_name
| +| Invest | | :heavy_check_mark: | :heavy_check_mark: | | `PortfolioId`investment_portfolio
`PortfolioId`funding_portfolio
`AssetId`offering_asset
`FundraiserId`id
`BalanceNoSymbol`purchase_amount
`OptionBalance`max_price
`OptionReceiptDetails`receipt
| +| Freeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Unfreeze fundraiser | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| +| Modify fundraiser window | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
`Moment`start
`OptionMoment`end
| +| Stop | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`offering_asset
`FundraiserId`id
| ## Treasury @@ -471,18 +456,15 @@ ## Utility -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------- | -| Batch | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| Relay tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target
`OffChainSignature`signature
`UniqueCall`call
| -| Batch all | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| Dispatch as | | :heavy_check_mark: | :heavy_check_mark: | | `BoxPalletsOrigin`as_origin
`Call`call
| -| Force batch | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| With weight | | :heavy_check_mark: | :heavy_check_mark: | | `Call`call
`Weight`weight
| -| Batch old | | :heavy_check_mark: | :heavy_check_mark: | | `VecCall`calls
| -| Batch atomic | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| Batch optimistic | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| -| As derivative | | :heavy_check_mark: | :heavy_check_mark: | | `u16`index
`Call`call
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------- | ------------------ | ------------------ | ------------------ | ------------------ | ---------------------------------------------------------------------------- | +| Batch | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Relay tx | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `AccountId`target
`OffChainSignature`signature
`UniqueCall`call
| +| Batch all | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| Dispatch as | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `BoxPalletsOrigin`as_origin
`Call`call
| +| Force batch | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `VecCall`calls
| +| With weight | | :heavy_check_mark: | :heavy_check_mark: | | `Call`call
`Weight`weight
| +| As derivative | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | `u16`index
`Call`call
| ## Base @@ -491,16 +473,16 @@ ## ExternalAgents -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ------------------------------ | ------ | ------------------ | ------------------ | ------- | --------------------------------------------------------------------------------------------------- | -| Create group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
| -| Set group permissions | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`AGId`id
`ExtrinsicPermissions`perms
| -| Remove agent | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`IdentityId`agent
| -| Abdicate | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
| -| Change group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`IdentityId`agent
`AgentGroup`group
| -| Accept become agent | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| -| Create group and add auth | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
`IdentityId`target
`OptionMoment`expiry
| -| Create and change custom group | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`ExtrinsicPermissions`perms
`IdentityId`agent
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ------------------------------ | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------ | +| Create group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
| +| Set group permissions | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`AGId`id
`ExtrinsicPermissions`perms
| +| Remove agent | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
| +| Abdicate | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
| +| Change group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`IdentityId`agent
`AgentGroup`group
| +| Accept become agent | | :heavy_check_mark: | :heavy_check_mark: | | `u64`auth_id
| +| Create group and add auth | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`target
`OptionMoment`expiry
| +| Create and change custom group | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`ExtrinsicPermissions`perms
`IdentityId`agent
| ## Relayer @@ -549,20 +531,28 @@ ## Nft -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| --------------------- | ------ | ------------------ | ------------------ | ------- | -------------------------------------------------------------------------------------------------------------- | -| Create nft collection | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`OptionNonFungibleType`nft_type
`VecAssetMetadataKey`collection_keys
| -| Issue nft | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`VecNFTMetadataAttribute`nft_metadata_attributes
`PortfolioKind`portfolio_kind
| -| Redeem nft | | :heavy_check_mark: | :heavy_check_mark: | | `Ticker`ticker
`NFTId`nft_id
`PortfolioKind`portfolio_kind
| -| Controller transfer | | | :heavy_check_mark: | | `Ticker`ticker
`NFTs`nfts
`PortfolioId`source_portfolio
`PortfolioKind`callers_portfolio_kind
| - -## StateTrieMigration - -| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | -| ---------------------- | ------ | --------- | ---------------- | ------- | -------------------------------------------------------------------------------------- | -| Control auto migration | | | | | `OptionMigrationLimits`maybe_config
| -| Continue migrate | | | | | `MigrationLimits`limits
`u32`real_size_upper
`MigrationTaskT`witness_task
| -| Migrate custom top | | | | | `VecVecu8`keys
`u32`witness_size
| -| Migrate custom child | | | | | `Vecu8`root
`VecVecu8`child_keys
`u32`total_size
| -| Set signed max limits | | | | | `MigrationLimits`limits
| -| Force set progress | | | | | `ProgressOfT`progress_top
`ProgressOfT`progress_child
| +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------- | +| Create nft collection | | :heavy_check_mark: | :heavy_check_mark: | | `OptionAssetId`asset_id
`OptionNonFungibleType`nft_type
`VecAssetMetadataKey`collection_keys
| +| Issue nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`VecNFTMetadataAttribute`nft_metadata_attributes
`PortfolioKind`portfolio_kind
| +| Redeem nft | | :heavy_check_mark: | :heavy_check_mark: | | `AssetId`asset_id
`NFTId`nft_id
`PortfolioKind`portfolio_kind
`Optionu8`number_of_keys
| +| Controller transfer | | | :heavy_check_mark: | | `NFTs`nfts
`PortfolioId`source_portfolio
`PortfolioKind`callers_portfolio_kind
| + +## ElectionProviderMultiPhase + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| ----------------------------- | ------ | ------------------ | ------------------ | ------- | ------------------------------------------------------------------------------------------ | +| Submit unsigned | | :heavy_check_mark: | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
`SolutionOrSnapshotSize`witness
| +| Set minimum untrusted score | | | :heavy_check_mark: | | `OptionElectionScore`maybe_next_score
| +| Set emergency election result | | | :heavy_check_mark: | | `SupportsAccountId`supports
| +| Submit | | | :heavy_check_mark: | | `BoxRawSolutionSolutionOfMinerConfig`raw_solution
| +| Governance fallback | | | :heavy_check_mark: | | `Optionu32`maybe_max_voters
`Optionu32`maybe_max_targets
| + +## TestUtils + +| Name | Nano S | Nano S XL | Nano SP/X - Stax | Nesting | Arguments | +| --------------------- | ------ | --------- | ---------------- | ------- | --------------------------------------------- | +| Register did | | | | | `VecSecondaryKeyAccountId`secondary_keys
| +| Mock cdd register did | | | | | `AccountId`target_account
| +| Get my did | | | | | | +| Get cdd of | | | | | `AccountId`of
| diff --git a/tests/testcases_current.json b/tests/testcases_current.json index 235ba5ff..e105c26a 100644 --- a/tests/testcases_current.json +++ b/tests/testcases_current.json @@ -2,199 +2,235 @@ { "index": 1, "name": "System_Remark", - "blob": "0000801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00000102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Remark [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Remark [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Remark [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Remark [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Remark [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Remark [7/7] : 46119a2df878e53f4a185c8a0acb", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Remark [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Remark [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Remark [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Remark [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Remark [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Remark [7/7] : 46119a2df878e53f4a185c8a0acb", "2 | Chain : Polymesh", "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 2, "name": "System_Remark", - "blob": "0000801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00000102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", - "2 | Tip : POLYX 55.555555" + "1 | Remark [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Remark [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Remark [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Remark [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Remark [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Remark [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Remark [7/7] : 46119a2df878e53f4a185c8a0acb", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Remark [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Remark [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Remark [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Remark [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Remark [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Remark [7/7] : 46119a2df878e53f4a185c8a0acb", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 3, "name": "System_Remark", - "blob": "000001012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00000102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Remark [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Remark [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Remark [4/4] : 230bed8fba7de1", + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Remark [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Remark [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Remark [4/4] : 230bed8fba7de1", + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 4, "name": "System_Remark", - "blob": "000001026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00000101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark", - "1 | Remark [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Remark [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Remark [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Remark [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Remark [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Remark [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Remark [7/7] : 295486a09d426dbe1db90a814010", - "2 | Tip : POLYX 55.555555" + "1 | Remark [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Remark [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Remark [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Remark [4/4] : 5a2fde9cfbe9e1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Remark [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Remark [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Remark [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Remark [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Remark [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Remark [7/7] : 295486a09d426dbe1db90a814010", + "1 | Remark [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Remark [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Remark [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Remark [4/4] : 5a2fde9cfbe9e1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 5, "name": "System_Remark", - "blob": "0000801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00000102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", - "2 | Tip : POLYX 0.000987" + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 6, "name": "System_Set_heap_pages", - "blob": "00010100000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00016400000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set heap pages", - "1 | Pages : 1", - "2 | Tip : POLYX 55.555555" + "1 | Pages : 100", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 1", + "1 | Pages : 100", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 7, "name": "System_Set_heap_pages", - "blob": "00010100000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00016400000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set heap pages", - "1 | Pages : 1", - "2 | Tip : POLYX 1234.56789" + "1 | Pages : 100" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 1", + "1 | Pages : 100", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 8, "name": "System_Set_heap_pages", - "blob": "00016bc4000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00010000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Tip : POLYX 5552342.355555" + "1 | Pages : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 9, "name": "System_Set_heap_pages", - "blob": "00010100000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00010100000000000000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set heap pages", "1 | Pages : 1", @@ -204,3014 +240,2960 @@ "0 | System : Set heap pages", "1 | Pages : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 10, "name": "System_Set_heap_pages", - "blob": "00010000000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00010100000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set heap pages", - "1 | Pages : 0", - "2 | Tip : POLYX 1234.56789" + "1 | Pages : 1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 0", + "1 | Pages : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 11, "name": "System_Set_code", - "blob": "000201013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa6d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00020102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "1 | Code [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "1 | Code [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "1 | Code [4/4] : 4cbdae8e046aa6", - "2 | Tip : POLYX 55.555555" + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "1 | Code [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "1 | Code [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "1 | Code [4/4] : 4cbdae8e046aa6", + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 12, "name": "System_Set_code", - "blob": "00020102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00020101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code", - "1 | Code [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "1 | Code [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "1 | Code [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "1 | Code [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "1 | Code [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "1 | Code [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "1 | Code [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Code [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Code [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Code [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Code [4/4] : 5a2fde9cfbe9e1", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "1 | Code [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "1 | Code [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "1 | Code [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "1 | Code [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "1 | Code [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "1 | Code [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Code [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Code [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Code [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Code [4/4] : 5a2fde9cfbe9e1", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 13, "name": "System_Set_code", - "blob": "0002801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00020102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code", - "1 | Code [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Code [2/2] : 4c9287525258b51b22fc481e03" + "1 | Code [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Code [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Code [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Code [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Code [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Code [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Code [7/7] : f857171a298bfe11b3e31658dbd1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Code [2/2] : 4c9287525258b51b22fc481e03", + "1 | Code [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Code [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Code [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Code [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Code [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Code [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Code [7/7] : f857171a298bfe11b3e31658dbd1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 14, "name": "System_Set_code", - "blob": "00028076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "000280185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code", - "1 | Code [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "1 | Code [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Code [2/2] : ff01683ca1cca30187103897f0", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "1 | Code [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Code [2/2] : ff01683ca1cca30187103897f0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 15, "name": "System_Set_code", - "blob": "000201012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00020102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 16, "name": "System_Set_code_without_checks", - "blob": "0003100d0c1323d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0003100e2a0c49d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35", - "2 | Tip : POLYX 0.000987" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : POLYX 1234.56789" ], "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 : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 17, "name": "System_Set_code_without_checks", - "blob": "000310200b200bd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0003100c293435d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11" + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 18, "name": "System_Set_code_without_checks", - "blob": "0003100e2a0c49d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0003100c293435d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "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 : POLYX 5552342.355555" + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 14", - "1 | Code [2/4] : 42", - "1 | Code [3/4] : 12", - "1 | Code [4/4] : 73", + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 19, "name": "System_Set_code_without_checks", - "blob": "000310200b200bd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0003100e2a0c49d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Tip : POLYX 55.555555" + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", + "1 | Code [1/4] : 14", + "1 | Code [2/4] : 42", + "1 | Code [3/4] : 12", + "1 | Code [4/4] : 73", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 20, "name": "System_Set_code_without_checks", - "blob": "0003100d0c1323d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0003100c293435d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "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] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53" ], "output_expert": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35", + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 21, "name": "System_Remark_with_event", - "blob": "000701026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00070102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Remark [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Remark [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Remark [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Remark [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Remark [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Remark [7/7] : 295486a09d426dbe1db90a814010", - "2 | Tip : POLYX 1234.56789" + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Remark [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Remark [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Remark [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Remark [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Remark [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Remark [7/7] : 295486a09d426dbe1db90a814010", + "1 | Remark [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "1 | Remark [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "1 | Remark [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "1 | Remark [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "1 | Remark [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "1 | Remark [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "1 | Remark [7/7] : f857171a298bfe11b3e31658dbd1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 22, "name": "System_Remark_with_event", - "blob": "00070101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6add5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00070101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "1 | Remark [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "1 | Remark [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "1 | Remark [4/4] : 39f178dd5ac6ad", - "2 | Tip : POLYX 55.555555" + "1 | Remark [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Remark [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Remark [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Remark [4/4] : 48bce232994a67", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "1 | Remark [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "1 | Remark [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "1 | Remark [4/4] : 39f178dd5ac6ad", + "1 | Remark [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Remark [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Remark [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Remark [4/4] : 48bce232994a67", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 23, "name": "System_Remark_with_event", - "blob": "0007801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00070101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark with event", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", - "2 | Tip : POLYX 0.000987" + "1 | Remark [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Remark [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Remark [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Remark [4/4] : 5a2fde9cfbe9e1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "1 | Remark [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "1 | Remark [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "1 | Remark [4/4] : 5a2fde9cfbe9e1", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 24, "name": "System_Remark_with_event", - "blob": "0007801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "00070101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark with event", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Remark [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Remark [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Remark [4/4] : 48bce232994a67", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Remark [2/2] : 4c9287525258b51b22fc481e03", + "1 | Remark [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Remark [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Remark [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Remark [4/4] : 48bce232994a67", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 25, "name": "System_Remark_with_event", - "blob": "000701013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa6d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "000780185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "1 | Remark [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "1 | Remark [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "1 | Remark [4/4] : 4cbdae8e046aa6" + "1 | Remark [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Remark [2/2] : ff01683ca1cca30187103897f0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "1 | Remark [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "1 | Remark [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "1 | Remark [4/4] : 4cbdae8e046aa6", + "1 | Remark [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Remark [2/2] : ff01683ca1cca30187103897f0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 26, "name": "Timestamp_Set", - "blob": "0200621dba9fd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "020094d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Timestamp : Set", - "1 | Now : 669943640", - "2 | Tip : POLYX 55.555555" + "1 | Now : 37", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 669943640", + "1 | Now : 37", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 27, "name": "Timestamp_Set", - "blob": "0200a9f5d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "02005661556ad503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Timestamp : Set", - "1 | Now : 15722", - "2 | Tip : POLYX 0.000987" + "1 | Now : 445995093", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 15722", + "1 | Now : 445995093", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 28, "name": "Timestamp_Set", - "blob": "020098d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "02005661556ad503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Timestamp : Set", - "1 | Now : 38", - "2 | Tip : POLYX 1234.56789" + "1 | Now : 445995093", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 38", + "1 | Now : 445995093", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 29, "name": "Timestamp_Set", - "blob": "0200a9f5d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0200eadd12d3d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Timestamp : Set", - "1 | Now : 15722", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Now : 885307258", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 15722", + "1 | Now : 885307258", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 30, "name": "Timestamp_Set", - "blob": "0200c9c7d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "02005661556ad503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Timestamp : Set", - "1 | Now : 12786" + "1 | Now : 445995093", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 12786", + "1 | Now : 445995093", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 31, "name": "Indices_Claim", - "blob": "03007c3076a1d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0300a9a23d3ed5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Claim", - "1 | Index : 2708877436" + "1 | Index : 1044226729" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 32, "name": "Indices_Claim", - "blob": "03007c3076a1d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0300a9a23d3ed5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Claim", - "1 | Index : 2708877436" + "1 | Index : 1044226729", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 33, "name": "Indices_Claim", - "blob": "03007c3076a1d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0300a9a23d3ed503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Claim", - "1 | Index : 2708877436", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Index : 1044226729" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 34, "name": "Indices_Claim", - "blob": "03007c3076a1d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0300a9a23d3ed5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 35, "name": "Indices_Claim", - "blob": "03007c3076a1d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0300a9a23d3ed503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Claim", - "1 | Index : 2708877436", - "2 | Tip : POLYX 55.555555" + "1 | Index : 1044226729", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 36, "name": "Indices_Transfer", - "blob": "03010280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba97c3076a1d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0301047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2a9a23d3ed5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | New [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | New [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 37, "name": "Indices_Transfer", - "blob": "03010329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f7c3076a1d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "030103e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3da9a23d3ed50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | New [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Index : 2708877436", - "3 | Tip : POLYX 55.555555" + "1 | New [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | New [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Index : 1044226729", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | New [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Index : 2708877436", + "1 | New [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | New [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Index : 1044226729", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 38, "name": "Indices_Transfer", - "blob": "030100f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a79787c3076a1d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0301047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2a9a23d3ed5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", - "3 | Tip : POLYX 0.000987" + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 39, "name": "Indices_Transfer", - "blob": "03010329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f7c3076a1d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "03010280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2ea9a23d3ed503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | New [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Index : 2708877436", - "3 | Tip : POLYX 55.555555" + "1 | New [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | New [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Index : 1044226729", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | New [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Index : 2708877436", + "1 | New [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | New [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Index : 1044226729", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 40, "name": "Indices_Transfer", - "blob": "030104efc69eb57bee12ce817edd57c3a641cdd2d9db9f7c3076a1d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0301047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2a9a23d3ed5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", - "3 | Tip : POLYX 5552342.355555" + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 41, "name": "Indices_Free", - "blob": "03027c3076a1d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0302a9a23d3ed503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Free", - "1 | Index : 2708877436", - "2 | Tip : POLYX 1234.56789" + "1 | Index : 1044226729", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 42, "name": "Indices_Free", - "blob": "03027c3076a1d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0302a9a23d3ed503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Free", - "1 | Index : 2708877436", - "2 | Tip : POLYX 5552342.355555" + "1 | Index : 1044226729", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 43, "name": "Indices_Free", - "blob": "03027c3076a1d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0302a9a23d3ed5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Free", - "1 | Index : 2708877436", - "2 | Tip : POLYX 1234.56789" + "1 | Index : 1044226729", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 44, "name": "Indices_Free", - "blob": "03027c3076a1d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0302a9a23d3ed5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Free", - "1 | Index : 2708877436", - "2 | Tip : POLYX 0.000987" + "1 | Index : 1044226729", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 45, "name": "Indices_Free", - "blob": "03027c3076a1d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0302a9a23d3ed503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Free", - "1 | Index : 2708877436", - "2 | Tip : POLYX 55.555555" + "1 | Index : 1044226729", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 46, "name": "Indices_Force_transfer", - "blob": "030304efc69eb57bee12ce817edd57c3a641cdd2d9db9f7c3076a101d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0303047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2a9a23d3e01d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Freeze : True" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Freeze : True", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 50283", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 47, "name": "Indices_Force_transfer", - "blob": "030300f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a79787c3076a101d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "03030280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2ea9a23d3e00d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", - "3 | Freeze : True", - "4 | Tip : POLYX 5552342.355555" + "1 | New [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | New [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Index : 1044226729", + "3 | Freeze : False" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", - "3 | Freeze : True", + "1 | New [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | New [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Index : 1044226729", + "3 | Freeze : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 48, "name": "Indices_Force_transfer", - "blob": "03030280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba97c3076a101d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0303001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca0a9a23d3e01d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | New [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Index : 2708877436", + "1 | New [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | New [2/2] : LwPLKPGNUm", + "2 | Index : 1044226729", "3 | Freeze : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | New [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Index : 2708877436", + "1 | New [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | New [2/2] : LwPLKPGNUm", + "2 | Index : 1044226729", "3 | Freeze : True", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 49, "name": "Indices_Force_transfer", - "blob": "030300f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a79787c3076a100d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "030303e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3da9a23d3e01d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", - "3 | Freeze : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | New [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | New [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Index : 1044226729", + "3 | Freeze : True", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | New [2/2] : fWpNQcigCk", - "2 | Index : 2708877436", - "3 | Freeze : False", + "1 | New [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | New [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Index : 1044226729", + "3 | Freeze : True", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 50, "name": "Indices_Force_transfer", - "blob": "030304efc69eb57bee12ce817edd57c3a641cdd2d9db9f7c3076a100d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0303047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2a9a23d3e00d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Freeze : False", - "4 | Tip : POLYX 0.000987" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | New [2/2] : 9f", - "2 | Index : 2708877436", + "1 | New [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | New [2/2] : f2", + "2 | Index : 1044226729", "3 | Freeze : False", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 51, "name": "Indices_Freeze", - "blob": "03047c3076a1d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0304a9a23d3ed50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Freeze", - "1 | Index : 2708877436" + "1 | Index : 1044226729", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 52, "name": "Indices_Freeze", - "blob": "03047c3076a1d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0304a9a23d3ed5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 53, "name": "Indices_Freeze", - "blob": "03047c3076a1d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0304a9a23d3ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Freeze", - "1 | Index : 2708877436" + "1 | Index : 1044226729", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 54, "name": "Indices_Freeze", - "blob": "03047c3076a1d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0304a9a23d3ed503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", - "2 | Tip : POLYX 5552342.355555" + "1 | Index : 1044226729", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 55, "name": "Indices_Freeze", - "blob": "03047c3076a1d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0304a9a23d3ed503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", - "2 | Tip : POLYX 0.000987" + "1 | Index : 1044226729" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2708877436", + "1 | Index : 1044226729", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 56, "name": "Balances_Transfer", - "blob": "0500000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d2029649d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05000000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01518ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 1234.56789", - "3 | Tip : POLYX 1234.56789" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 55.555555", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 1234.56789", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 55.555555", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 57, "name": "Balances_Transfer", - "blob": "0500000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d2029649d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05000000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d2029649d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", "2 | Amount : POLYX 1234.56789", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", "2 | Amount : POLYX 1234.56789", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 58, "name": "Balances_Transfer", - "blob": "0500000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410b63ce64c10c05d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05000000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510b63ce64c10c05d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", "2 | Amount : POLYX 5552342.355555", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", "2 | Amount : POLYX 5552342.355555", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 59, "name": "Balances_Transfer", - "blob": "0500000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622416d0fd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05000000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d2029649d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 0.000987", - "3 | Tip : POLYX 55.555555" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 0.000987", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 60, "name": "Balances_Transfer", - "blob": "0500000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224133158139ae28a3dfaac5fe1560a5e9e05cd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05000000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d2029649d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 61, "name": "Balances_Transfer_with_memo", - "blob": "0501000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224133158139ae28a3dfaac5fe1560a5e9e05c01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05010000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510b63ce64c10c050191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "4 | Tip : POLYX 1234.56789" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 5552342.355555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 5552342.355555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 62, "name": "Balances_Transfer_with_memo", - "blob": "0501000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622418ed73e0d01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05010000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d20296490191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 50283", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 63, "name": "Balances_Transfer_with_memo", - "blob": "0501000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622418ed73e0d01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05010000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d20296490191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "4 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 64, "name": "Balances_Transfer_with_memo", - "blob": "0501000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05010000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01518ed73e0d0191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "4 | Tip : POLYX 0.000987" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 65, "name": "Balances_Transfer_with_memo", - "blob": "0501000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d202964901ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05010000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510b63ce64c10c050191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 1234.56789", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "4 | Tip : POLYX 0.000987" + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 5552342.355555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Dest [2/2] : hsXzy7fsCx", - "2 | Amount : POLYX 1234.56789", - "3 | Memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "3 | Memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "1 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Dest [2/2] : 3sP6BZwPH7", + "2 | Amount : POLYX 5552342.355555", + "3 | Memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "3 | Memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 66, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050203d2029649d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "050200d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 1234.56789", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 0.0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 1234.56789", + "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 67, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05028ed73e0dd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "050203d2029649d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 68, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05020b63ce64c10c05d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "050200d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555" + "1 | Amount : POLYX 0.0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 69, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05028ed73e0dd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "050233158139ae28a3dfaac5fe1560a5e9e05cd503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555" + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 70, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050200d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "050200d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Deposit block reward reserve balance", "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 71, "name": "Balances_Set_balance", - "blob": "0503000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d20296496d0fd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d20296496d0fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | New free : POLYX 1234.56789", "3 | New reserved : POLYX 0.000987", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | New free : POLYX 1234.56789", "3 | New reserved : POLYX 0.000987", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 72, "name": "Balances_Set_balance", - "blob": "0503000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410b63ce64c10c0533158139ae28a3dfaac5fe1560a5e9e05cd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01518ed73e0d0b63ce64c10c05d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free : POLYX 55.555555", + "3 | New reserved : POLYX 5552342.355555", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free : POLYX 55.555555", + "3 | New reserved : POLYX 5552342.355555", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 100", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 73, "name": "Balances_Set_balance", - "blob": "0503000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410b63ce64c10c056d0fd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510b63ce64c10c0533158139ae28a3dfaac5fe1560a5e9e05cd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | New free : POLYX 5552342.355555", - "3 | New reserved : POLYX 0.000987", - "4 | Tip : POLYX 55.555555" - ], + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" + ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | New free : POLYX 5552342.355555", - "3 | New reserved : POLYX 0.000987", + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 74, "name": "Balances_Set_balance", - "blob": "0503000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241008ed73e0dd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015133158139ae28a3dfaac5fe1560a5e9e05c6d0fd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free : POLYX 0.0", - "3 | New reserved : POLYX 55.555555", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free [1/2] : POLYX 12345678901234567890123456789012", + "2 | New free [2/2] : 3.456789", + "3 | New reserved : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free : POLYX 0.0", - "3 | New reserved : POLYX 55.555555", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free [1/2] : POLYX 12345678901234567890123456789012", + "2 | New free [2/2] : 3.456789", + "3 | New reserved : POLYX 0.000987", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 75, "name": "Balances_Set_balance", - "blob": "0503000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224133158139ae28a3dfaac5fe1560a5e9e05c0b63ce64c10c05d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01516d0f03d2029649d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free [1/2] : POLYX 12345678901234567890123456789012", - "2 | New free [2/2] : 3.456789", - "3 | New reserved : POLYX 5552342.355555", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free : POLYX 0.000987", + "3 | New reserved : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", - "2 | New free [1/2] : POLYX 12345678901234567890123456789012", - "2 | New free [2/2] : 3.456789", - "3 | New reserved : POLYX 5552342.355555", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", + "2 | New free : POLYX 0.000987", + "3 | New reserved : POLYX 1234.56789", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 76, "name": "Balances_Force_transfer", - "blob": "0504000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410b63ce64c10c05d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05040000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01518ed73e0dd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 5552342.355555", - "4 | Tip : POLYX 5552342.355555" + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount : POLYX 55.555555", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 5552342.355555", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount : POLYX 55.555555", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 77, "name": "Balances_Force_transfer", - "blob": "0504000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d2029649d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05040000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015133158139ae28a3dfaac5fe1560a5e9e05cd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 1234.56789", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "3 | Amount [2/2] : 3.456789", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 1234.56789", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "3 | Amount [2/2] : 3.456789", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 78, "name": "Balances_Force_transfer", - "blob": "0504000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224103d2029649d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05040000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d2029649d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", "3 | Amount : POLYX 1234.56789", - "4 | Tip : POLYX 0.000987" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", "3 | Amount : POLYX 1234.56789", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 79, "name": "Balances_Force_transfer", - "blob": "0504000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622416d0fd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05040000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01516d0fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", "3 | Amount : POLYX 0.000987", - "4 | Tip : POLYX 0.000987" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", "3 | Amount : POLYX 0.000987", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 80, "name": "Balances_Force_transfer", - "blob": "0504000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd6224100d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "05040000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f015103d2029649d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 0.0", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount : POLYX 1234.56789", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Source [2/2] : hsXzy7fsCx", - "2 | Dest [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "2 | Dest [2/2] : hsXzy7fsCx", - "3 | Amount : POLYX 0.0", + "1 | Source [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Source [2/2] : 3sP6BZwPH7", + "2 | Dest [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "2 | Dest [2/2] : 3sP6BZwPH7", + "3 | Amount : POLYX 1234.56789", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 81, "name": "Balances_Burn_account_balance", - "blob": "0505e9f2fb1c9c0e574344ad0ce218e5c53dd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0505a9698bb58f31528289cbe66c452b62fed50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 1234.56789" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 82, "name": "Balances_Burn_account_balance", - "blob": "0505e9f2fb1c9c0e574344ad0ce218e5c53dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0505a9698bb58f31528289cbe66c452b62fed503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 5552342.355555" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 83, "name": "Balances_Burn_account_balance", - "blob": "0505e9f2fb1c9c0e574344ad0ce218e5c53dd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0505a9698bb58f31528289cbe66c452b62fed5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 84, "name": "Balances_Burn_account_balance", - "blob": "0505e9f2fb1c9c0e574344ad0ce218e5c53dd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0505a9698bb58f31528289cbe66c452b62fed503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 1234.56789" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 85, "name": "Balances_Burn_account_balance", - "blob": "0505e9f2fb1c9c0e574344ad0ce218e5c53dd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0505a9698bb58f31528289cbe66c452b62fed5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 0.000987" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 86, "name": "Identity_Cdd_register_did", - "blob": "0700eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f0465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070094c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3204bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Tip : POLYX 1234.56789" + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 87, "name": "Identity_Cdd_register_did", - "blob": "07009a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0700b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f00d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456" + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys : ", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 88, "name": "Identity_Cdd_register_did", - "blob": "0700b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f0465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070094c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3200d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Target account [2/2] : oDSmtZ2wNU", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Tip : POLYX 1234.56789" + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys : ", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Target account [2/2] : oDSmtZ2wNU", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys : ", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 89, "name": "Identity_Cdd_register_did", - "blob": "070088bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b3670465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0700b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f00d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target account [2/2] : giQysSa189", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Tip : POLYX 0.000987" + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys : " ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target account [2/2] : giQysSa189", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 90, "name": "Identity_Cdd_register_did", - "blob": "0700eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f0465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07006e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac83004bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Tip : POLYX 1234.56789" + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 91, "name": "Identity_Invalidate_cdd_claims", - "blob": "0701117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40008000000000000010008000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0001000000000000018000000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 2048", - "3 | Expiry : 2048", - "4 | Tip : POLYX 55.555555" + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 256", + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 2048", - "3 | Expiry : 2048", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 256", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 92, "name": "Identity_Invalidate_cdd_claims", - "blob": "0701117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40008000000000000018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0008000000000000010001000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Disable from : 2048", - "3 | Expiry : 128" + "3 | Expiry : 256", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Disable from : 2048", - "3 | Expiry : 128", + "3 | Expiry : 256", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 93, "name": "Identity_Invalidate_cdd_claims", - "blob": "0701117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d48000000000000000010008000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0008000000000000010008000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 128", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 2048", "3 | Expiry : 2048", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 128", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 2048", "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 94, "name": "Identity_Invalidate_cdd_claims", - "blob": "0701117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d48000000000000000010001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0008000000000000010001000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 128", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 2048", "3 | Expiry : 256", - "4 | Tip : POLYX 55.555555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 128", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 2048", "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 95, "name": "Identity_Invalidate_cdd_claims", - "blob": "0701117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40008000000000000010008000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0001000000000000010008000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 2048", - "3 | Expiry : 2048" + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 256", + "3 | Expiry : 2048", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Cdd [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Disable from : 2048", + "1 | Cdd [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Cdd [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Disable from : 256", "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 96, "name": "Identity_Accept_primary_key", - "blob": "07026400000000000000018813000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07020100000000000000018813000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", + "1 | Rotation auth id : 1", "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", + "1 | Rotation auth id : 1", "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 97, "name": "Identity_Accept_primary_key", - "blob": "07020000000000000000011a00000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07020100000000000000018813000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 0", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 5552342.355555" + "1 | Rotation auth id : 1", + "2 | Optional cdd auth id : 5000", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 0", - "2 | Optional cdd auth id : 26", + "1 | Rotation auth id : 1", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 98, "name": "Identity_Accept_primary_key", - "blob": "07026bc400000000000001d8c9760100000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0702640000000000000001d8c9760100000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 1234.56789" + "1 | Rotation auth id : 100", + "2 | Optional cdd auth id : 24562136" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", + "1 | Rotation auth id : 100", "2 | Optional cdd auth id : 24562136", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 99, "name": "Identity_Accept_primary_key", - "blob": "07026bc4000000000000018813000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07022309000000000000011a00000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 0.000987" + "1 | Rotation auth id : 2339", + "2 | Optional cdd auth id : 26", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", - "2 | Optional cdd auth id : 5000", + "1 | Rotation auth id : 2339", + "2 | Optional cdd auth id : 26", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 100, "name": "Identity_Accept_primary_key", - "blob": "07020000000000000000011a00000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07026400000000000000018813000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 0", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 0.000987" + "1 | Rotation auth id : 100", + "2 | Optional cdd auth id : 5000", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 0", - "2 | Optional cdd auth id : 26", + "1 | Rotation auth id : 100", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 101, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070301d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 55.555555" + "1 | Auth required : True" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : True", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 102, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070301d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False" + "1 | Auth required : True", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False", + "1 | Auth required : True", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { "index": 103, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070300d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Auth required : False", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", + "1 | Auth required : False", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 104, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070300d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 105, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070301d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Auth required : True" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : True", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 106, "name": "Identity_Join_identity_as_key", - "blob": "07046400000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07040100000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", - "2 | Tip : POLYX 1234.56789" + "1 | Auth id : 1" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 107, "name": "Identity_Join_identity_as_key", - "blob": "07046400000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07042309000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 2339" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", + "1 | Auth id : 2339", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 108, "name": "Identity_Join_identity_as_key", - "blob": "07046bc4000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07042309000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 2339", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 50283", + "1 | Auth id : 2339", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 109, "name": "Identity_Join_identity_as_key", - "blob": "07040000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07040000000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Join identity as key", "1 | Auth id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Join identity as key", "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 110, "name": "Identity_Join_identity_as_key", - "blob": "07046bc4000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07040100000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 50283", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 111, "name": "Identity_Leave_identity_as_key", - "blob": "0705d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0705d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 0.000987" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 112, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0705d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 113, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0705d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 2339", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 114, "name": "Identity_Leave_identity_as_key", - "blob": "0705d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0705d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 5552342.355555" + "0 | Identity : Leave identity as key" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 115, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0705d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 50283", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 116, "name": "Identity_Add_claim", - "blob": "0706117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060001417373657449442d3537383632323132018000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07062910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060001417373657449442d3537383632323132010001000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" + "3 | Expiry : 256", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", - "3 | Expiry : 128", + "3 | Expiry : 256", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 117, "name": "Identity_Add_claim", - "blob": "0706117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060001417373657449442d3537383632323132018000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07062910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060001417373657449442d3537383632323132018000000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", - "3 | Expiry : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 118, "name": "Identity_Add_claim", - "blob": "0706117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40402ced4815d2a31e1115835bce3e1eab35fc30670670349cf00185b1a9686f244010001000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07062910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060101417373657449442d3537383632323132010008000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Expiry : 256" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 2048", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Expiry : 256", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 119, "name": "Identity_Add_claim", - "blob": "0706117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060101417373657449442d3537383632323132018000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07062910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb028b8d99536df1a92b0bac090c010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AX", - "2 | Claim [3/3] : AssetID-57862212", - "3 | Expiry : 128", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", + "3 | Expiry : 2048", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AX", - "2 | Claim [3/3] : AssetID-57862212", - "3 | Expiry : 128", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 0", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 120, "name": "Identity_Add_claim", - "blob": "0706117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40402ced4815d2a31e1115835bce3e1eab35fc30670670349cf00185b1a9686f244018000000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07062910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb028b8d99536df1a92b0bac090c010008000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", + "3 | Expiry : 2048", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Expiry : 128", + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", + "3 | Expiry : 2048", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 121, "name": "Identity_Revoke_claim", - "blob": "0707117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060101417373657449442d3537383632323132d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07072910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060001417373657449442d3537383632323132d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AX", + "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AX", + "2 | Claim [2/3] : AF", "2 | Claim [3/3] : AssetID-57862212", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 122, "name": "Identity_Revoke_claim", - "blob": "0707117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40402ced4815d2a31e1115835bce3e1eab35fc30670670349cf00185b1a9686f244d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07072910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb028b8d99536df1a92b0bac090cd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 123, "name": "Identity_Revoke_claim", - "blob": "0707117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40402ced4815d2a31e1115835bce3e1eab35fc30670670349cf00185b1a9686f244d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07072910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb028b8d99536df1a92b0bac090cd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 02ced4815d2a31e1115835bce3e1eab35fc306", - "2 | Claim [3/3] : 70670349cf00185b1a9686f244", + "2 | Claim [2/3] : ed71dfdfd4aa42e42c2ba88fd60dcb8056dadb", + "2 | Claim [3/3] : 028b8d99536df1a92b0bac090c", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 124, "name": "Identity_Revoke_claim", - "blob": "0707117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060001417373657449442d3537383632323132d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07072910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060101417373657449442d3537383632323132d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", + "2 | Claim [2/3] : AX", "2 | Claim [3/3] : AssetID-57862212", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", + "2 | Claim [2/3] : AX", "2 | Claim [3/3] : AssetID-57862212", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 125, "name": "Identity_Revoke_claim", - "blob": "0707117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4060001417373657449442d3537383632323132d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07072910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b060101417373657449442d3537383632323132d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : AssetID-57862212", - "3 | Tip : POLYX 0.000987" + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", + "2 | Claim [2/3] : AX", "2 | Claim [3/3] : AssetID-57862212", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 126, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0708d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Freeze secondary keys", "1 | Tip : POLYX 55.555555" @@ -3223,111 +3205,105 @@ "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 127, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0708d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 5552342.355555" + "0 | Identity : Freeze secondary keys" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 2339", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 128, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0708d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Freeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 129, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0708d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 0.000987" + "0 | Identity : Freeze secondary keys" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, { "index": 130, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0708d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 1", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 131, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0709d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 0.000987" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 0", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 132, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0709d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unfreeze secondary keys", "1 | Tip : POLYX 1234.56789" @@ -3335,757 +3311,776 @@ "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 100", + "2 | Nonce : 2339", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 133, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0709d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 1234.56789" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 134, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0709d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 100", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 135, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0709d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 55.555555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 136, "name": "Identity_Add_authorization", - "blob": "070a00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128025449434b45522d3132393833018000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070a00886d27402cb52f422bbd1f09f04df86b9491ceb743fe9aa470bfc61b68ef2f5a050104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010488127638ba91862b363b6e3ba2164ab7d854b292126f139ddbf5fa540719a2750140e2010000000000010001000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Data [1/12] : JoinIdentity", + "2 | Data [2/12] : These", + "2 | Data [3/12] : AssetID-12345678", + "2 | Data [4/12] : These", + "2 | Data [5/12] : 0", + "2 | Data [6/12] : Except", + "2 | Data [7/12] : DispatchABC", + "2 | Data [8/12] : DispatchXYZ", + "2 | Data [9/12] : These", + "2 | Data [10/12] : 88127638ba91862b363b6e3ba2164ab7d854b2", + "2 | Data [11/12] : 92126f139ddbf5fa540719a275", + "2 | Data [12/12] : 123456", + "3 | Expiry : 256", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 128", + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Data [1/12] : JoinIdentity", + "2 | Data [2/12] : These", + "2 | Data [3/12] : AssetID-12345678", + "2 | Data [4/12] : These", + "2 | Data [5/12] : 0", + "2 | Data [6/12] : Except", + "2 | Data [7/12] : DispatchABC", + "2 | Data [8/12] : DispatchXYZ", + "2 | Data [9/12] : These", + "2 | Data [10/12] : 88127638ba91862b363b6e3ba2164ab7d854b2", + "2 | Data [11/12] : 92126f139ddbf5fa540719a275", + "2 | Data [12/12] : 123456", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 137, "name": "Identity_Add_authorization", - "blob": "070a014a93d63357c59cdc297341ad87d7e7e28dd8885575755197569208646c55454806f956ceb055e3ea7178d895ac971502c05ab14adc8349e44f0f1c90903df066d90140e2010000000000010008000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070a01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f125025449434b45522d3132393833010008000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/2] : TransferTicker", + "2 | Data [2/2] : TICKER-12983", "3 | Expiry : 2048", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/2] : TransferTicker", + "2 | Data [2/2] : TICKER-12983", "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 138, "name": "Identity_Add_authorization", - "blob": "070a00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128025449434b45522d3132393833010008000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070a01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f12504417373657449442d3132333435363738010008000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 2048", - "4 | Tip : POLYX 1234.56789" + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/2] : TransferAssetOwnership", + "2 | Data [2/2] : AssetID-12345678", + "3 | Expiry : 2048" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/2] : TransferAssetOwnership", + "2 | Data [2/2] : AssetID-12345678", "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 139, "name": "Identity_Add_authorization", - "blob": "070a014a93d63357c59cdc297341ad87d7e7e28dd8885575755197569208646c55454806f956ceb055e3ea7178d895ac971502c05ab14adc8349e44f0f1c90903df066d90140e2010000000000018000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070a01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f12508ea5af49d2d287a3b80b8680b90d52ef24b7877d90a4e3080ace22e22079f24a53e68914e695939f41a6dc263bab0c25b6595cde49dd0bc62803ee7980812b7d1a0860100000000000000000000000000010001000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/6] : AddRelayerPayingKey", + "2 | Data [2/6] : 5HMz5gootHESH4CL72UApbGH4AAQxcynXU2M4H", + "2 | Data [3/6] : FhYTaQmYK7", + "2 | Data [4/6] : 5DUXtX7XsQRXYd6ZM66MKGP1oPuaMMzgSK9zA3", + "2 | Data [5/6] : 8pFtp8epc7", + "2 | Data [6/6] : POLYX 0.1", + "3 | Expiry : 256", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", - "3 | Expiry : 128", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Data [1/6] : AddRelayerPayingKey", + "2 | Data [2/6] : 5HMz5gootHESH4CL72UApbGH4AAQxcynXU2M4H", + "2 | Data [3/6] : FhYTaQmYK7", + "2 | Data [4/6] : 5DUXtX7XsQRXYd6ZM66MKGP1oPuaMMzgSK9zA3", + "2 | Data [5/6] : 8pFtp8epc7", + "2 | Data [6/6] : POLYX 0.1", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 140, "name": "Identity_Add_authorization", - "blob": "070a014a93d63357c59cdc297341ad87d7e7e28dd8885575755197569208646c55454806f956ceb055e3ea7178d895ac971502c05ab14adc8349e44f0f1c90903df066d90140e2010000000000010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070a00886d27402cb52f422bbd1f09f04df86b9491ceb743fe9aa470bfc61b68ef2f5a03963d3709a8276e30a858c5b7be2d1da7e6efc4a7a9db88ba573cd32497661528018000000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", - "3 | Expiry : 2048" + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Data [1/3] : AddMultiSigSigner", + "2 | Data [2/3] : 5FThDyXaWr3iPWPH3VJsUicSucbyUeUtuKoKut", + "2 | Data [3/3] : TnnSQogi2t", + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : f956ceb055e3ea7178d895ac971502c05ab14a", - "2 | Data [3/4] : dc8349e44f0f1c90903df066d9", - "2 | Data [4/4] : 123456", - "3 | Expiry : 2048", + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Data [1/3] : AddMultiSigSigner", + "2 | Data [2/3] : 5FThDyXaWr3iPWPH3VJsUicSucbyUeUtuKoKut", + "2 | Data [3/3] : TnnSQogi2t", + "3 | Expiry : 128", "4 | Chain : Polymesh", "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 141, "name": "Identity_Remove_authorization", - "blob": "070b00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128230900000000000001d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070b01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f125230900000000000001d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", "2 | Auth id : 2339", - "3 | Auth issuer pays : True" + "3 | Auth issuer pays : True", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", "2 | Auth id : 2339", "3 | Auth issuer pays : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 142, "name": "Identity_Remove_authorization", - "blob": "070b00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128000000000000000001d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070b00886d27402cb52f422bbd1f09f04df86b9491ceb743fe9aa470bfc61b68ef2f5a6bc400000000000001d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 0", - "3 | Auth issuer pays : True", - "4 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Auth id : 50283", + "3 | Auth issuer pays : True" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 0", + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Auth id : 50283", "3 | Auth issuer pays : True", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 143, "name": "Identity_Remove_authorization", - "blob": "070b014a93d63357c59cdc297341ad87d7e7e28dd8885575755197569208646c554548230900000000000001d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070b01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f125640000000000000001d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Auth id : 2339", - "3 | Auth issuer pays : True" + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Auth id : 100", + "3 | Auth issuer pays : True", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 5DkVKMgE8kNRrd8gPXLseJNFbzTBsPEtLiDezd", - "1 | Target [2/2] : pZ9EijAYR8", - "2 | Auth id : 2339", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Auth id : 100", "3 | Auth issuer pays : True", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 144, "name": "Identity_Remove_authorization", - "blob": "070b00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128230900000000000001d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070b00886d27402cb52f422bbd1f09f04df86b9491ceb743fe9aa470bfc61b68ef2f5a640000000000000001d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 2339", - "3 | Auth issuer pays : True", - "4 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Auth id : 100", + "3 | Auth issuer pays : True" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 2339", + "1 | Target [1/2] : 886d27402cb52f422bbd1f09f04df86b9491ce", + "1 | Target [2/2] : b743fe9aa470bfc61b68ef2f5a", + "2 | Auth id : 100", "3 | Auth issuer pays : True", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 145, "name": "Identity_Remove_authorization", - "blob": "070b00fa7e5ed22fd33d43e41dff5427963a4f849f5a1de11c34e12d83c9f463860128010000000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070b01c6984c870294e8473d69876fa806f3065729a442d3ff22fa50deaf7db488f125640000000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 1", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Auth id : 100", "3 | Auth issuer pays : False", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : fa7e5ed22fd33d43e41dff5427963a4f849f5a", - "1 | Target [2/2] : 1de11c34e12d83c9f463860128", - "2 | Auth id : 1", + "1 | Target [1/2] : 5GZ6adGzaLHVLyyewzsCkDN7nFYh5cDfZaVMXT", + "1 | Target [2/2] : BdX6pvRHrT", + "2 | Auth id : 100", "3 | Auth issuer pays : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 146, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070c2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 147, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070c2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 148, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070c2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 149, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070c2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 150, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070c2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 151, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070d2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 152, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070d2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 153, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070d2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 154, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070d2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 155, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070d2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 156, "name": "Identity_Revoke_claim_by_index", - "blob": "070e117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070e2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0200d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : Accredited", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : BuyLockup", "3 | Scope : None", - "4 | Tip : POLYX 0.000987" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : Accredited", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : BuyLockup", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 157, "name": "Identity_Revoke_claim_by_index", - "blob": "070e117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070e2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim type : Accredited", "3 | Scope : None", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim type : Accredited", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 158, "name": "Identity_Revoke_claim_by_index", - "blob": "070e117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40200d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070e2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : BuyLockup", - "3 | Scope : None" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : Affiliate", + "3 | Scope : None", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : BuyLockup", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : Affiliate", "3 | Scope : None", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 159, "name": "Identity_Revoke_claim_by_index", - "blob": "070e117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40200d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070e2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0200d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim type : BuyLockup", "3 | Scope : None", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Claim type : BuyLockup", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 160, "name": "Identity_Revoke_claim_by_index", - "blob": "070e117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40100d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070e2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : Affiliate", - "3 | Scope : None", - "4 | Tip : POLYX 0.000987" + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : Accredited", + "3 | Scope : None" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Claim type : Affiliate", + "1 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Claim type : Accredited", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 161, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f2309000000000000011a00000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070f0100000000000000018813000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 2339", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 55.555555" + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 2339", - "2 | Optional cdd auth id : 26", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 162, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f6400000000000000018813000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070f6400000000000000018813000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Rotate primary key to secondary", "1 | Auth id : 100", "2 | Optional cdd auth id : 5000", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", @@ -4093,507 +4088,525 @@ "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 163, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f010000000000000001d8c9760100000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070f230900000000000001d8c9760100000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", + "1 | Auth id : 2339", "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", + "1 | Auth id : 2339", "2 | Optional cdd auth id : 24562136", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 164, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f0100000000000000011a00000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070f0000000000000000018813000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 26" + "1 | Auth id : 0", + "2 | Optional cdd auth id : 5000", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 26", + "1 | Auth id : 0", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 165, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f0100000000000000018813000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "070f000000000000000001d8c9760100000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 5552342.355555" + "1 | Auth id : 0", + "2 | Optional cdd auth id : 24562136", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", + "1 | Auth id : 0", + "2 | Optional cdd auth id : 24562136", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 166, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100433cec4d60f1bf78e0bd145ac35a3620a5cf724d489a709b7576353b5a476ff550104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104b6cdfd4b4f5d0395d825cd6ad5dc16376301e07c2a3e91e72a7bee8380d331d40140e201000000000051b7f123b7647a0c1fbef179545bb38c3d5faa46f669c200f1035acc1f1fd7d678603baa2ce946668e5e87dab010d91e77e45bada7b0467c5a8fe55f6c9fd9100008000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071004142b922b5fbcb055fb0c6d4b58bd3fe7129c2a62b78203140013d142552a54890104417373657449442d31323334353637380104043001042c446973706174636858595a01042949bc33c0f17257e43c42f7d55e2c38ed146a7dc8c63eceecaf1335c2a66d5f0140e2010000000000073d2e122a19acb2c166b6cebdd67c9c035b857540c0b79f6456bff8ef648635f3dc6f37a5ef57a643bd4cea96a55f9092eb1ee3a4c8edc5434530d0cf5717cd0008000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", "2 | Expires at : 2048", - "3 | Tip : POLYX 1234.56789" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", "2 | Expires at : 2048", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 167, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100433cec4d60f1bf78e0bd145ac35a3620a5cf724d489a709b7576353b5a476ff550104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104b6cdfd4b4f5d0395d825cd6ad5dc16376301e07c2a3e91e72a7bee8380d331d40140e201000000000051b7f123b7647a0c1fbef179545bb38c3d5faa46f669c200f1035acc1f1fd7d678603baa2ce946668e5e87dab010d91e77e45bada7b0467c5a8fe55f6c9fd9100001000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071004142b922b5fbcb055fb0c6d4b58bd3fe7129c2a62b78203140013d142552a54890104417373657449442d31323334353637380104043001042c446973706174636858595a01042949bc33c0f17257e43c42f7d55e2c38ed146a7dc8c63eceecaf1335c2a66d5f0140e2010000000000073d2e122a19acb2c166b6cebdd67c9c035b857540c0b79f6456bff8ef648635f3dc6f37a5ef57a643bd4cea96a55f9092eb1ee3a4c8edc5434530d0cf5717cd8000000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 256", - "3 | Tip : POLYX 5552342.355555" + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 256", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 168, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100433cec4d60f1bf78e0bd145ac35a3620a5cf724d489a709b7576353b5a476ff550104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104b6cdfd4b4f5d0395d825cd6ad5dc16376301e07c2a3e91e72a7bee8380d331d40140e201000000000051b7f123b7647a0c1fbef179545bb38c3d5faa46f669c200f1035acc1f1fd7d678603baa2ce946668e5e87dab010d91e77e45bada7b0467c5a8fe55f6c9fd9100001000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071004142b922b5fbcb055fb0c6d4b58bd3fe7129c2a62b78203140013d142552a54890104417373657449442d31323334353637380104043001042c446973706174636858595a01042949bc33c0f17257e43c42f7d55e2c38ed146a7dc8c63eceecaf1335c2a66d5f0140e2010000000000073d2e122a19acb2c166b6cebdd67c9c035b857540c0b79f6456bff8ef648635f3dc6f37a5ef57a643bd4cea96a55f9092eb1ee3a4c8edc5434530d0cf5717cd8000000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 256", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 169, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100433cec4d60f1bf78e0bd145ac35a3620a5cf724d489a709b7576353b5a476ff550104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104b6cdfd4b4f5d0395d825cd6ad5dc16376301e07c2a3e91e72a7bee8380d331d40140e201000000000051b7f123b7647a0c1fbef179545bb38c3d5faa46f669c200f1035acc1f1fd7d678603baa2ce946668e5e87dab010d91e77e45bada7b0467c5a8fe55f6c9fd9108000000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071004142b922b5fbcb055fb0c6d4b58bd3fe7129c2a62b78203140013d142552a54890104417373657449442d31323334353637380104043001042c446973706174636858595a01042949bc33c0f17257e43c42f7d55e2c38ed146a7dc8c63eceecaf1335c2a66d5f0140e2010000000000073d2e122a19acb2c166b6cebdd67c9c035b857540c0b79f6456bff8ef648635f3dc6f37a5ef57a643bd4cea96a55f9092eb1ee3a4c8edc5434530d0cf5717cd0001000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 128", - "3 | Tip : POLYX 55.555555" + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 256" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 128", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 256", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 170, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100433cec4d60f1bf78e0bd145ac35a3620a5cf724d489a709b7576353b5a476ff550104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104b6cdfd4b4f5d0395d825cd6ad5dc16376301e07c2a3e91e72a7bee8380d331d40140e201000000000051b7f123b7647a0c1fbef179545bb38c3d5faa46f669c200f1035acc1f1fd7d678603baa2ce946668e5e87dab010d91e77e45bada7b0467c5a8fe55f6c9fd9100008000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071004142b922b5fbcb055fb0c6d4b58bd3fe7129c2a62b78203140013d142552a54890104417373657449442d31323334353637380104043001042c446973706174636858595a01042949bc33c0f17257e43c42f7d55e2c38ed146a7dc8c63eceecaf1335c2a66d5f0140e2010000000000073d2e122a19acb2c166b6cebdd67c9c035b857540c0b79f6456bff8ef648635f3dc6f37a5ef57a643bd4cea96a55f9092eb1ee3a4c8edc5434530d0cf5717cd8000000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 2048", - "3 | Tip : POLYX 55.555555" + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/17] : 5DEdireQpvicgRm5o7GgUi4Vc2iHxnugmbdWCB", - "1 | Additional keys [2/17] : c6KN4sbcwx", - "1 | Additional keys [3/17] : These", - "1 | Additional keys [4/17] : AssetID-12345678", - "1 | Additional keys [5/17] : These", - "1 | Additional keys [6/17] : 0", - "1 | Additional keys [7/17] : These", - "1 | Additional keys [8/17] : DispatchABC", - "1 | Additional keys [9/17] : DispatchXYZ", - "1 | Additional keys [10/17] : These", - "1 | Additional keys [11/17] : b6cdfd4b4f5d0395d825cd6ad5dc16376301e0", - "1 | Additional keys [12/17] : 7c2a3e91e72a7bee8380d331d4", - "1 | Additional keys [13/17] : 123456", - "1 | Additional keys [14/17] : 51b7f123b7647a0c1fbef179545bb38c3d5faa", - "1 | Additional keys [15/17] : 46f669c200f1035acc1f1fd7d678603baa2ce9", - "1 | Additional keys [16/17] : 46668e5e87dab010d91e77e45bada7b0467c5a", - "1 | Additional keys [17/17] : 8fe55f6c9fd910", - "2 | Expires at : 2048", + "1 | Additional keys [1/16] : 5CX9kvdN7oeYNQWr1njJjfhmjDTrwcR6GpeFvY", + "1 | Additional keys [2/16] : N1hxaWgZxm", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 2949bc33c0f17257e43c42f7d55e2c38ed146a", + "1 | Additional keys [11/16] : 7dc8c63eceecaf1335c2a66d5f", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 073d2e122a19acb2c166b6cebdd67c9c035b85", + "1 | Additional keys [14/16] : 7540c0b79f6456bff8ef648635f3dc6f37a5ef", + "1 | Additional keys [15/16] : 57a643bd4cea96a55f9092eb1ee3a4c8edc543", + "1 | Additional keys [16/16] : 4530d0cf5717cd", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 171, "name": "Identity_Set_secondary_key_permissions", - "blob": "071188bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b3670104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071194c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Key [2/2] : giQysSa189", + "1 | Key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Key [2/2] : MUoEsZrND5", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Key [2/2] : giQysSa189", + "1 | Key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Key [2/2] : MUoEsZrND5", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 172, "name": "Identity_Set_secondary_key_permissions", - "blob": "07119a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071194c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Identity : Set secondary key permissions", + "1 | Key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Key [2/2] : MUoEsZrND5", + "2 | Perms [1/3] : Whole", + "2 | Perms [2/3] : Whole", + "2 | Perms [3/3] : Whole", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Identity : Set secondary key permissions", + "1 | Key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Key [2/2] : MUoEsZrND5", + "2 | Perms [1/3] : Whole", + "2 | Perms [2/3] : Whole", + "2 | Perms [3/3] : Whole", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 173, + "name": "Identity_Set_secondary_key_permissions", + "blob": "07116e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Key [2/2] : WSoxS5U55S", + "1 | Key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Key [2/2] : Ue5Ex9ptDp", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Key [2/2] : WSoxS5U55S", + "1 | Key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Key [2/2] : Ue5Ex9ptDp", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 173, + "index": 174, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f397590104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07116e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Key [2/2] : eVpueLTi3R", + "1 | Key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Key [2/2] : Ue5Ex9ptDp", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Key [2/2] : eVpueLTi3R", + "1 | Key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Key [2/2] : Ue5Ex9ptDp", "2 | Perms [1/11] : These", "2 | Perms [2/11] : AssetID-12345678", "2 | Perms [3/11] : These", "2 | Perms [4/11] : 0", - "2 | Perms [5/11] : Except", + "2 | Perms [5/11] : These", "2 | Perms [6/11] : DispatchABC", "2 | Perms [7/11] : DispatchXYZ", "2 | Perms [8/11] : These", - "2 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "2 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "2 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "2 | Perms [10/11] : 981eaacf330b25f053be787093", "2 | Perms [11/11] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 174, + "index": 175, "name": "Identity_Set_secondary_key_permissions", - "blob": "07119a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0711b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Key [2/2] : WSoxS5U55S", + "1 | Key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Key [2/2] : S2eWQeEoGM", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Key [2/2] : WSoxS5U55S", + "1 | Key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Key [2/2] : S2eWQeEoGM", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole", @@ -4601,259 +4614,205 @@ "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 175, - "name": "Identity_Set_secondary_key_permissions", - "blob": "071130a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Key [2/2] : 21jTx7FmVL", - "2 | Perms [1/3] : Whole", - "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Key [2/2] : 21jTx7FmVL", - "2 | Perms [1/3] : Whole", - "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 176, "name": "Identity_Remove_secondary_keys", - "blob": "071220dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071210f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", - "2 | Tip : POLYX 0.000987" + "1 | Keys to remove [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Keys to remove [2/8] : 4WsdVZdTEZ", + "1 | Keys to remove [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Keys to remove [4/8] : ZKWhXp3DFM", + "1 | Keys to remove [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Keys to remove [6/8] : TXFeuVBVFn", + "1 | Keys to remove [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Keys to remove [8/8] : kuNGAaBgwB", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", + "1 | Keys to remove [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Keys to remove [2/8] : 4WsdVZdTEZ", + "1 | Keys to remove [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Keys to remove [4/8] : ZKWhXp3DFM", + "1 | Keys to remove [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Keys to remove [6/8] : TXFeuVBVFn", + "1 | Keys to remove [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Keys to remove [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 177, "name": "Identity_Remove_secondary_keys", - "blob": "071220dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07121410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 178, "name": "Identity_Remove_secondary_keys", - "blob": "071220dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07121410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", - "2 | Tip : POLYX 5552342.355555" + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Keys to remove [2/16] : 8vjy5sVa9B", - "1 | Keys to remove [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Keys to remove [4/16] : z9mBZSgDsc", - "1 | Keys to remove [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Keys to remove [6/16] : kCwkrpqs9Q", - "1 | Keys to remove [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Keys to remove [8/16] : 35oBi2h5Bv", - "1 | Keys to remove [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Keys to remove [10/16] : XhgjBF2tmK", - "1 | Keys to remove [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Keys to remove [12/16] : 3yNjHoshVs", - "1 | Keys to remove [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Keys to remove [14/16] : 5SHQC1xWWu", - "1 | Keys to remove [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Keys to remove [16/16] : ewdGCNYSkS", + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 179, "name": "Identity_Remove_secondary_keys", - "blob": "0712086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071210f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Keys to remove [2/4] : K6MpSXt3iY", - "1 | Keys to remove [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Keys to remove [4/4] : G6cuGg7X9G", + "1 | Keys to remove [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Keys to remove [2/8] : 4WsdVZdTEZ", + "1 | Keys to remove [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Keys to remove [4/8] : ZKWhXp3DFM", + "1 | Keys to remove [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Keys to remove [6/8] : TXFeuVBVFn", + "1 | Keys to remove [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Keys to remove [8/8] : kuNGAaBgwB", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Keys to remove [2/4] : K6MpSXt3iY", - "1 | Keys to remove [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Keys to remove [4/4] : G6cuGg7X9G", + "1 | Keys to remove [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Keys to remove [2/8] : 4WsdVZdTEZ", + "1 | Keys to remove [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Keys to remove [4/8] : ZKWhXp3DFM", + "1 | Keys to remove [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Keys to remove [6/8] : TXFeuVBVFn", + "1 | Keys to remove [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Keys to remove [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 180, "name": "Identity_Remove_secondary_keys", - "blob": "0712086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07121410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Keys to remove [2/4] : K6MpSXt3iY", - "1 | Keys to remove [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Keys to remove [4/4] : G6cuGg7X9G", - "2 | Tip : POLYX 5552342.355555" + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Keys to remove [2/4] : K6MpSXt3iY", - "1 | Keys to remove [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Keys to remove [4/4] : G6cuGg7X9G", + "1 | Keys to remove [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Keys to remove [2/10] : mAQmPAv3py", + "1 | Keys to remove [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Keys to remove [4/10] : 4nPV7SRNhS", + "1 | Keys to remove [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Keys to remove [6/10] : M8PtP3suCY", + "1 | Keys to remove [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Keys to remove [8/10] : ZCZxbsVkJF", + "1 | Keys to remove [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Keys to remove [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 181, "name": "Identity_Register_custom_claim_type", - "blob": "071310200b200bd503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071310200b200bd5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Register custom claim type", "1 | Ty [1/4] : 32", "1 | Ty [2/4] : 11", "1 | Ty [3/4] : 32", - "1 | Ty [4/4] : 11", - "2 | Tip : POLYX 5552342.355555" + "1 | Ty [4/4] : 11" ], "output_expert": [ "0 | Identity : Register custom claim type", @@ -4863,76 +4822,75 @@ "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 182, "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071310200b200bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 5552342.355555" + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 183, "name": "Identity_Register_custom_claim_type", - "blob": "0713100e2a0c49d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071310200b200bd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73" + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11" ], "output_expert": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 184, "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0713100d0c1323d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Register custom claim type", "1 | Ty [1/4] : 13", "1 | Ty [2/4] : 12", "1 | Ty [3/4] : 19", "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Register custom claim type", @@ -4942,451 +4900,531 @@ "1 | Ty [4/4] : 35", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 185, "name": "Identity_Register_custom_claim_type", - "blob": "0713100e2a0c49d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0713100d0c1323d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Tip : POLYX 0.000987" + "1 | Ty [1/4] : 13", + "1 | Ty [2/4] : 12", + "1 | Ty [3/4] : 19", + "1 | Ty [4/4] : 35", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "1 | Ty [1/4] : 13", + "1 | Ty [2/4] : 12", + "1 | Ty [3/4] : 19", + "1 | Ty [4/4] : 35", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 186, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "07149a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda5601074900010001000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0714b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f04bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000010008000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys : ", - "3 | Expiry : 256", + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 2048", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys : ", - "3 | Expiry : 256", + "1 | Target account [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target account [2/2] : S2eWQeEoGM", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 2048", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 187, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f0465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071494c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3204bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000010001000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Target account [2/2] : oDSmtZ2wNU", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Expiry : 2048" + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 256" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Target account [2/2] : oDSmtZ2wNU", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Expiry : 2048", + "1 | Target account [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target account [2/2] : MUoEsZrND5", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 188, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "07149a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000010008000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07146e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac83004bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000010008000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Expiry : 2048", - "4 | Tip : POLYX 1234.56789" + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 2048" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", "3 | Expiry : 2048", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 189, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f0465795bda747add1e4492e6b825089bf91a3fde81181b776ab011940f42fc63ab0104417373657449442d31323334353637380208043001042c446973706174636858595a043101042c446973706174636858595a01049ef1bfe3112ab0e86dc28c9efacf87ceab004fb634e444ea288b5ea8535b76870140e2010000000000010008000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0714b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76100018000000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Expiry : 2048", - "4 | Tip : POLYX 5552342.355555" + "1 | Target account [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Target account [2/2] : 1hw5BtHfxM", + "2 | Secondary keys : ", + "3 | Expiry : 128", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Target account [2/2] : Zf9wr3U3rh", - "2 | Secondary keys [1/15] : 5EMkk981eTFfhqVUkBqK9sKc9ZWHcS7vV4kXpf", - "2 | Secondary keys [2/15] : T3veKVU41N", - "2 | Secondary keys [3/15] : These", - "2 | Secondary keys [4/15] : AssetID-12345678", - "2 | Secondary keys [5/15] : Except", - "2 | Secondary keys [6/15] : 0", - "2 | Secondary keys [7/15] : These", - "2 | Secondary keys [8/15] : DispatchXYZ", - "2 | Secondary keys [9/15] : 1", - "2 | Secondary keys [10/15] : These", - "2 | Secondary keys [11/15] : DispatchXYZ", - "2 | Secondary keys [12/15] : These", - "2 | Secondary keys [13/15] : 9ef1bfe3112ab0e86dc28c9efacf87ceab004f", - "2 | Secondary keys [14/15] : b634e444ea288b5ea8535b7687", - "2 | Secondary keys [15/15] : 123456", - "3 | Expiry : 2048", + "1 | Target account [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Target account [2/2] : 1hw5BtHfxM", + "2 | Secondary keys : ", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 190, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "07149a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda5601074900010001000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07146e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac83004bd4d8ba41d1be4d9bd604e57e407038f457e9a93661f84a0dffee8619c3ac5390104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a010466b1638f3a8d097778d9368d2b39d2c44a166d4e1e3a89ec72c7d62b023393e50140e2010000000000018000000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys : ", - "3 | Expiry : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target account [2/2] : WSoxS5U55S", - "2 | Secondary keys : ", - "3 | Expiry : 256", + "1 | Target account [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target account [2/2] : Ue5Ex9ptDp", + "2 | Secondary keys [1/17] : 5GLuwf8hMEiPtQsFfRc8zmP1u6iYbZEo9Ktto6", + "2 | Secondary keys [2/17] : 9a4kzuKcrm", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 66b1638f3a8d097778d9368d2b39d2c44a166d", + "2 | Secondary keys [16/17] : 4e1e3a89ec72c7d62b023393e5", + "2 | Secondary keys [17/17] : 123456", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 191, "name": "Identity_Create_child_identity", - "blob": "0715b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0715b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Secondary key [2/2] : oDSmtZ2wNU", + "1 | Secondary key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Secondary key [2/2] : S2eWQeEoGM", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Secondary key [2/2] : oDSmtZ2wNU", + "1 | Secondary key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Secondary key [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 192, "name": "Identity_Create_child_identity", - "blob": "0715eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924fd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071594c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Secondary key [2/2] : Zf9wr3U3rh" + "1 | Secondary key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Secondary key [2/2] : MUoEsZrND5" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Secondary key [2/2] : Zf9wr3U3rh", + "1 | Secondary key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Secondary key [2/2] : MUoEsZrND5", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 193, "name": "Identity_Create_child_identity", - "blob": "071530a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0715b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Secondary key [2/2] : 21jTx7FmVL" + "1 | Secondary key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Secondary key [2/2] : 1hw5BtHfxM" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Secondary key [2/2] : 21jTx7FmVL", + "1 | Secondary key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Secondary key [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 194, "name": "Identity_Create_child_identity", - "blob": "07159a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0715b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Secondary key [2/2] : WSoxS5U55S", - "2 | Tip : POLYX 1234.56789" + "1 | Secondary key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Secondary key [2/2] : 1hw5BtHfxM", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Secondary key [2/2] : WSoxS5U55S", + "1 | Secondary key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Secondary key [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 195, "name": "Identity_Create_child_identity", - "blob": "0715b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0715b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Secondary key [2/2] : oDSmtZ2wNU", + "1 | Secondary key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Secondary key [2/2] : S2eWQeEoGM", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Secondary key [2/2] : oDSmtZ2wNU", + "1 | Secondary key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Secondary key [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 196, "name": "Identity_Create_child_identities", - "blob": "0716046cb6da2acf22163cf290f4d1fb97b704ce14ea375c2405bc969be7ae0cccfdc6e917a9215ab136d5f8af2d87cccd33aedf05a168949be5f1e797a2346ddfbd1b048603ccc94d8d11d1063315e7d0ba8eb0c0a40b855a1913502fc7879fa355710001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0716008000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 5EXFM67DfBDCd57sLtW4zn5EEfGYpwdSrXfDER", - "1 | Child keys [2/6] : sxrY74yDvx", - "1 | Child keys [3/6] : e917a9215ab136d5f8af2d87cccd33aedf05a1", - "1 | Child keys [4/6] : 68949be5f1e797a2346ddfbd1b048603ccc94d", - "1 | Child keys [5/6] : 8d11d1063315e7d0ba8eb0c0a40b855a191350", - "1 | Child keys [6/6] : 2fc7879fa35571", - "2 | Expires at : 256", - "3 | Tip : POLYX 55.555555" + "1 | Child keys : ", + "2 | Expires at : 128", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 5EXFM67DfBDCd57sLtW4zn5EEfGYpwdSrXfDER", - "1 | Child keys [2/6] : sxrY74yDvx", - "1 | Child keys [3/6] : e917a9215ab136d5f8af2d87cccd33aedf05a1", - "1 | Child keys [4/6] : 68949be5f1e797a2346ddfbd1b048603ccc94d", - "1 | Child keys [5/6] : 8d11d1063315e7d0ba8eb0c0a40b855a191350", - "1 | Child keys [6/6] : 2fc7879fa35571", - "2 | Expires at : 256", + "1 | Child keys : ", + "2 | Expires at : 128", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 197, "name": "Identity_Create_child_identities", - "blob": "0716000001000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0716041db6020a79d642f200d15207a79b54f84011d5ce978d107661b2f5d4b1b211c68ba94d6e2b5d597e674886618adcb53c6a72a9189e6543c3d2469b6f0ef8481d1580d6c28d9fe2a328c04b8e90d3b892cd4b6f218ca864db1e51c0147afd7aac0001000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identities", - "1 | Child keys : ", + "1 | Child keys [1/6] : 5CjfK8o17Kzoqup7EouaSFLUyJMkgD2Xh8c4Ga", + "1 | Child keys [2/6] : Yj9FnbVm3w", + "1 | Child keys [3/6] : 8ba94d6e2b5d597e674886618adcb53c6a72a9", + "1 | Child keys [4/6] : 189e6543c3d2469b6f0ef8481d1580d6c28d9f", + "1 | Child keys [5/6] : e2a328c04b8e90d3b892cd4b6f218ca864db1e", + "1 | Child keys [6/6] : 51c0147afd7aac", "2 | Expires at : 256", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys : ", + "1 | Child keys [1/6] : 5CjfK8o17Kzoqup7EouaSFLUyJMkgD2Xh8c4Ga", + "1 | Child keys [2/6] : Yj9FnbVm3w", + "1 | Child keys [3/6] : 8ba94d6e2b5d597e674886618adcb53c6a72a9", + "1 | Child keys [4/6] : 189e6543c3d2469b6f0ef8481d1580d6c28d9f", + "1 | Child keys [5/6] : e2a328c04b8e90d3b892cd4b6f218ca864db1e", + "1 | Child keys [6/6] : 51c0147afd7aac", "2 | Expires at : 256", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 198, "name": "Identity_Create_child_identities", - "blob": "0716000001000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07160c14395af6b8afb14f709862b1fb8b3a3cc1489b8526767b1283e90b206a3c53dc8f3a1be133e0f8c82f3c4a8c1ad4c46afb14e51729d199b2c41a824f642e7b44ae5ff30a2fd9e0a2f8d6dbdf145bd8ee1c30964e0d20e4df07fdc0d452928972936409c9de6d5bb1f18706a50a8c409b8fbb0340909a012e95d135380e436453fb9a8bdbda70a4a8e2485a6da66baa97f62f862ec8a881a5b995b2ea0f646a48e978a535088b979758f0e9aa0a1c7cd36b711c24ad114a6563d56e094238bcd4a2f54757c7e87fd5212e20860a6d8d3c6f122504776aef8d318a0ba97561ea825e1d1c521c9145d0dfae2ebe408be5743fbdcf197281c96f2f07935cdb3ea504416ba8358d983c44179c32fe79e922160d81d2d7f08638fc7326a3086c08229b0001000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identities", - "1 | Child keys : ", + "1 | Child keys [1/18] : 5CXDrRZZfzhvs5Xi6vEnD65xyv1C1Vc7BhpkQ6", + "1 | Child keys [2/18] : pxbukMcWto", + "1 | Child keys [3/18] : 8f3a1be133e0f8c82f3c4a8c1ad4c46afb14e5", + "1 | Child keys [4/18] : 1729d199b2c41a824f642e7b44ae5ff30a2fd9", + "1 | Child keys [5/18] : e0a2f8d6dbdf145bd8ee1c30964e0d20e4df07", + "1 | Child keys [6/18] : fdc0d452928972", + "1 | Child keys [7/18] : 5FPxcYzdYNnvStkKE8zFYghKbEG1vExpYQQyHu", + "1 | Child keys [8/18] : QwkEUntmNd", + "1 | Child keys [9/18] : fb9a8bdbda70a4a8e2485a6da66baa97f62f86", + "1 | Child keys [10/18] : 2ec8a881a5b995b2ea0f646a48e978a535088b", + "1 | Child keys [11/18] : 979758f0e9aa0a1c7cd36b711c24ad114a6563", + "1 | Child keys [12/18] : d56e094238bcd4", + "1 | Child keys [13/18] : 5FkNUeTxR2b7VXQuT1crUewJkXB96dv5GPQCBw", + "1 | Child keys [14/18] : somz4hJsDP", + "1 | Child keys [15/18] : 5e1d1c521c9145d0dfae2ebe408be5743fbdcf", + "1 | Child keys [16/18] : 197281c96f2f07935cdb3ea504416ba8358d98", + "1 | Child keys [17/18] : 3c44179c32fe79e922160d81d2d7f08638fc73", + "1 | Child keys [18/18] : 26a3086c08229b", "2 | Expires at : 256", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys : ", + "1 | Child keys [1/18] : 5CXDrRZZfzhvs5Xi6vEnD65xyv1C1Vc7BhpkQ6", + "1 | Child keys [2/18] : pxbukMcWto", + "1 | Child keys [3/18] : 8f3a1be133e0f8c82f3c4a8c1ad4c46afb14e5", + "1 | Child keys [4/18] : 1729d199b2c41a824f642e7b44ae5ff30a2fd9", + "1 | Child keys [5/18] : e0a2f8d6dbdf145bd8ee1c30964e0d20e4df07", + "1 | Child keys [6/18] : fdc0d452928972", + "1 | Child keys [7/18] : 5FPxcYzdYNnvStkKE8zFYghKbEG1vExpYQQyHu", + "1 | Child keys [8/18] : QwkEUntmNd", + "1 | Child keys [9/18] : fb9a8bdbda70a4a8e2485a6da66baa97f62f86", + "1 | Child keys [10/18] : 2ec8a881a5b995b2ea0f646a48e978a535088b", + "1 | Child keys [11/18] : 979758f0e9aa0a1c7cd36b711c24ad114a6563", + "1 | Child keys [12/18] : d56e094238bcd4", + "1 | Child keys [13/18] : 5FkNUeTxR2b7VXQuT1crUewJkXB96dv5GPQCBw", + "1 | Child keys [14/18] : somz4hJsDP", + "1 | Child keys [15/18] : 5e1d1c521c9145d0dfae2ebe408be5743fbdcf", + "1 | Child keys [16/18] : 197281c96f2f07935cdb3ea504416ba8358d98", + "1 | Child keys [17/18] : 3c44179c32fe79e922160d81d2d7f08638fc73", + "1 | Child keys [18/18] : 26a3086c08229b", "2 | Expires at : 256", "3 | Chain : Polymesh", "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 199, "name": "Identity_Create_child_identities", - "blob": "0716008000000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0716008000000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identities", "1 | Child keys : ", @@ -5398,907 +5436,913 @@ "1 | Child keys : ", "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 200, "name": "Identity_Create_child_identities", - "blob": "0716008000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "071608eb38aa9d1ac1ea73970f3cad2a12e0085b4c421490e7e952ada3e9aa908801528a04442602cb91ac6a507604cee866534fd64cc7d1ba6fe884232de66d4951ec63494b515ae7c1bca480cae6b94f81bd219d393b284573fa6a5b78e2c564c361a1f3624669773137ad9f4f548cf28ec13fa2adb1684131b76b300600aa3a9e5f5b71356c201a4ee4b7486ca6c7575b5d57a4b249e112914df382346454b319ccf45f60ba268befb33f5ce9015bd85a7080b5979f5ce3b9c0dae25851e04922080008000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 128", - "3 | Tip : POLYX 0.000987" + "1 | Child keys [1/12] : 5HP7wgFrYuPM5AyXhupaHCGp3u6Sc7xL3aaNVs", + "1 | Child keys [2/12] : WN6hR6iNtz", + "1 | Child keys [3/12] : 8a04442602cb91ac6a507604cee866534fd64c", + "1 | Child keys [4/12] : c7d1ba6fe884232de66d4951ec63494b515ae7", + "1 | Child keys [5/12] : c1bca480cae6b94f81bd219d393b284573fa6a", + "1 | Child keys [6/12] : 5b78e2c564c361", + "1 | Child keys [7/12] : 5Fj3sDsyrx2WCf6VEfESgKatKxoXjAW3EXaVw1", + "1 | Child keys [8/12] : nSUuD41DRS", + "1 | Child keys [9/12] : 5b71356c201a4ee4b7486ca6c7575b5d57a4b2", + "1 | Child keys [10/12] : 49e112914df382346454b319ccf45f60ba268b", + "1 | Child keys [11/12] : efb33f5ce9015bd85a7080b5979f5ce3b9c0da", + "1 | Child keys [12/12] : e25851e0492208", + "2 | Expires at : 2048" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 128", + "1 | Child keys [1/12] : 5HP7wgFrYuPM5AyXhupaHCGp3u6Sc7xL3aaNVs", + "1 | Child keys [2/12] : WN6hR6iNtz", + "1 | Child keys [3/12] : 8a04442602cb91ac6a507604cee866534fd64c", + "1 | Child keys [4/12] : c7d1ba6fe884232de66d4951ec63494b515ae7", + "1 | Child keys [5/12] : c1bca480cae6b94f81bd219d393b284573fa6a", + "1 | Child keys [6/12] : 5b78e2c564c361", + "1 | Child keys [7/12] : 5Fj3sDsyrx2WCf6VEfESgKatKxoXjAW3EXaVw1", + "1 | Child keys [8/12] : nSUuD41DRS", + "1 | Child keys [9/12] : 5b71356c201a4ee4b7486ca6c7575b5d57a4b2", + "1 | Child keys [10/12] : 49e112914df382346454b319ccf45f60ba268b", + "1 | Child keys [11/12] : efb33f5ce9015bd85a7080b5979f5ce3b9c0da", + "1 | Child keys [12/12] : e25851e0492208", + "2 | Expires at : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 201, "name": "Identity_Unlink_child_identity", - "blob": "0717117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07172910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 202, "name": "Identity_Unlink_child_identity", - "blob": "0717117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07172910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 203, "name": "Identity_Unlink_child_identity", - "blob": "0717117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07172910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 204, "name": "Identity_Unlink_child_identity", - "blob": "0717117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07172910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 205, "name": "Identity_Unlink_child_identity", - "blob": "0717117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "07172910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Child did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Child did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Child did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 206, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000f000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080007000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Limit : 7", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 7", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 207, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080009000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", + "1 | Limit : 9", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", + "1 | Limit : 9", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 208, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08002a000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080009000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 9", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 9", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 209, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08000c000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Set active members limit", "1 | Limit : 12", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 210, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000f000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080004000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 4", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 211, "name": "Cddserviceproviders_Disable_member", - "blob": "0801117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000010008000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000010008000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", "3 | At : 2048", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 212, "name": "Cddserviceproviders_Disable_member", - "blob": "0801117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000010008000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 128" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 213, "name": "Cddserviceproviders_Disable_member", - "blob": "0801117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000010008000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000018000000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 128" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 2048", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 214, "name": "Cddserviceproviders_Disable_member", - "blob": "0801117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010001000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000010008000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", - "3 | At : 256", + "3 | At : 2048", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", - "3 | At : 256", + "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 50283", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 215, "name": "Cddserviceproviders_Disable_member", - "blob": "0801117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000018000000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000010008000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 128", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 216, "name": "Cddserviceproviders_Add_member", - "blob": "0802117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 217, "name": "Cddserviceproviders_Add_member", - "blob": "0802117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 218, "name": "Cddserviceproviders_Add_member", - "blob": "0802117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 219, "name": "Cddserviceproviders_Add_member", - "blob": "0802117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] }, { "index": 220, "name": "Cddserviceproviders_Add_member", - "blob": "0802117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 221, "name": "Cddserviceproviders_Remove_member", - "blob": "0803117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 222, "name": "Cddserviceproviders_Remove_member", - "blob": "0803117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 223, "name": "Cddserviceproviders_Remove_member", - "blob": "0803117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 224, "name": "Cddserviceproviders_Remove_member", - "blob": "0803117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 225, "name": "Cddserviceproviders_Remove_member", - "blob": "0803117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 226, "name": "Cddserviceproviders_Swap_member", - "blob": "0804117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 227, "name": "Cddserviceproviders_Swap_member", - "blob": "0804117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 228, "name": "Cddserviceproviders_Swap_member", - "blob": "0804117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 229, "name": "Cddserviceproviders_Swap_member", - "blob": "0804117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 230, "name": "Cddserviceproviders_Swap_member", - "blob": "0804117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 231, "name": "Cddserviceproviders_Reset_members", - "blob": "080504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 55.555555" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 232, "name": "Cddserviceproviders_Reset_members", - "blob": "080500d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080500d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Reset members", "1 | Members : ", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 233, "name": "Cddserviceproviders_Reset_members", - "blob": "080504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "08050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 1234.56789" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 234, "name": "Cddserviceproviders_Reset_members", - "blob": "080504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 1234.56789" + "1 | Members : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members : ", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 235, "name": "Cddserviceproviders_Reset_members", - "blob": "080500d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "080500d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Reset members", "1 | Members : ", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 236, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0806d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", + "2 | Nonce : 0", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 237, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0806d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Tip : POLYX 0.000987" @@ -6306,18 +6350,18 @@ "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", + "2 | Nonce : 2339", "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 238, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0806d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Tip : POLYX 1234.56789" @@ -6325,37 +6369,37 @@ "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 2339", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 239, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0806d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 0.000987" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 240, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0806d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Tip : POLYX 1234.56789" @@ -6363,359 +6407,359 @@ "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 100", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 241, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "0900d3040000f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090000000000f7010000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 0", + "2 | D : 503" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", + "1 | N : 0", "2 | D : 503", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 242, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09000000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0900d3040000d3040000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", - "3 | Tip : POLYX 5552342.355555" + "1 | N : 1235", + "2 | D : 1235", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", + "1 | N : 1235", + "2 | D : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 243, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09000000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0900d3040000f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0" + "1 | N : 1235", + "2 | D : 503", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", + "1 | N : 1235", + "2 | D : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 244, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09009d1c000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0900f70100009d1c0000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 503", + "2 | D : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 0", + "1 | N : 503", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 245, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09003430000034300000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09009d1c000034300000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", + "1 | N : 7325", "2 | D : 12340", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", + "1 | N : 7325", "2 | D : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 246, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "0901117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 247, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "0901117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 248, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "0901117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 249, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "0901117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 250, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "0901117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "09012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 251, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090200a1860100d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 1234.56789" + "1 | Expiry : 100001", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 252, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090200a1860100d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 0.000987" + "1 | Expiry : 100001", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 253, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090201d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001" + "1 | Expiry : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 254, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090200a1860100d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 255, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "090201d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" + "1 | Expiry : None", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 256, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0903010000083434d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", @@ -6723,21 +6767,21 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 257, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0903000000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -6745,55 +6789,54 @@ ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 258, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0903010000083434d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 259, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0903010000083434d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", @@ -6801,1259 +6844,1264 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 260, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0903000000083434d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 261, "name": "Polymeshcommittee_Vote", - "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0904c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3df3e0010000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", - "3 | Approve : True", - "4 | Tip : POLYX 5552342.355555" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", + "3 | Approve : False", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", + "3 | Approve : False", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 262, "name": "Polymeshcommittee_Vote", - "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a4930000001d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0904c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3ddb03000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", - "3 | Approve : True", - "4 | Tip : POLYX 1234.56789" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : False" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : False", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 263, "name": "Polymeshcommittee_Vote", - "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0904c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3ddb03000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", "3 | Approve : False", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 2339", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 264, "name": "Polymeshcommittee_Vote", - "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0904c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d4930000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 265, "name": "Polymeshcommittee_Vote", - "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0904c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3df3e0010001d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", + "3 | Approve : True", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : False", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 266, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0004000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a000f000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 15", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 15", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 267, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0004000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a0007000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip : POLYX 55.555555" + "1 | Limit : 7", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 7", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 268, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0004000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a0000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip : POLYX 55.555555" + "1 | Limit : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 269, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0007000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a0000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 0", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 270, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0004000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a0004000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Set active members limit", "1 | Limit : 4", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Set active members limit", "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 271, "name": "Committeemembership_Disable_member", - "blob": "0a01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010001000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000010008000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 272, "name": "Committeemembership_Disable_member", - "blob": "0a01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000010001000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000018000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 128", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 273, "name": "Committeemembership_Disable_member", - "blob": "0a01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000010008000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000010008000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 2048" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 274, "name": "Committeemembership_Disable_member", - "blob": "0a01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010008000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000010001000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" + "3 | At : 256", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", - "3 | At : 2048", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 275, "name": "Committeemembership_Disable_member", - "blob": "0a01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000010001000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 128" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 256", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 276, "name": "Committeemembership_Add_member", - "blob": "0a02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 277, "name": "Committeemembership_Add_member", - "blob": "0a02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 278, "name": "Committeemembership_Add_member", - "blob": "0a02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 279, "name": "Committeemembership_Add_member", - "blob": "0a02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 280, "name": "Committeemembership_Add_member", - "blob": "0a02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" - ], + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" + ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 281, "name": "Committeemembership_Remove_member", - "blob": "0a03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 282, "name": "Committeemembership_Remove_member", - "blob": "0a03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 283, "name": "Committeemembership_Remove_member", - "blob": "0a03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 284, "name": "Committeemembership_Remove_member", - "blob": "0a03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 285, "name": "Committeemembership_Remove_member", - "blob": "0a03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 286, "name": "Committeemembership_Swap_member", - "blob": "0a04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 287, "name": "Committeemembership_Swap_member", - "blob": "0a04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 288, "name": "Committeemembership_Swap_member", - "blob": "0a04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", "4 | Nonce : 1", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 289, "name": "Committeemembership_Swap_member", - "blob": "0a04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 290, "name": "Committeemembership_Swap_member", - "blob": "0a04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 291, "name": "Committeemembership_Reset_members", - "blob": "0a050805d3d61e40f4f270859bddbe6f47ec5b4c8ff0fbb710e4e38bd0897307b6fc30c8681ed8e159511505324c32d3cc9b00109d0229e021cfc12243eacafd493fadd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 292, "name": "Committeemembership_Reset_members", - "blob": "0a050c3cd24cff26508c66c7ba72453e8fc2196f8fd3a544bd04821b76b6179996fbb7325bd205079534fcb347da407b112c7c16ebc12de67c7edf76b03c9830c376051a9d5ea084787776663632283b5b6ebdd29906721b7b71080538ca2c849f957cd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a05083de9d9383730760c080fc0aae67e1fe38f3f51f265b0af62568a8b97e7a8a47bbb551ce706405ba8466241a8acca390a685d6e61afe1c8c2ffbf69b7b0c73709d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c" + "1 | Members [1/4] : 3de9d9383730760c080fc0aae67e1fe38f3f51", + "1 | Members [2/4] : f265b0af62568a8b97e7a8a47b", + "1 | Members [3/4] : bb551ce706405ba8466241a8acca390a685d6e", + "1 | Members [4/4] : 61afe1c8c2ffbf69b7b0c73709", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c", + "1 | Members [1/4] : 3de9d9383730760c080fc0aae67e1fe38f3f51", + "1 | Members [2/4] : f265b0af62568a8b97e7a8a47b", + "1 | Members [3/4] : bb551ce706405ba8466241a8acca390a685d6e", + "1 | Members [4/4] : 61afe1c8c2ffbf69b7b0c73709", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 293, "name": "Committeemembership_Reset_members", - "blob": "0a050805d3d61e40f4f270859bddbe6f47ec5b4c8ff0fbb710e4e38bd0897307b6fc30c8681ed8e159511505324c32d3cc9b00109d0229e021cfc12243eacafd493fadd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 294, "name": "Committeemembership_Reset_members", - "blob": "0a0504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 295, "name": "Committeemembership_Reset_members", - "blob": "0a0504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a050cb3e9eed1ab02264691455d4fe67a39c76ec2159a25e8434ba062347d4c0b5c566b01b10b0658ae232bb5dbd82ddf0f2dcf86c96fd748bf22488af97adad5a7dddaf7fb366036f01b539490cd5f7862ccc02c24e58865af8a1444d2b0bf7ee043d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 1234.56789" + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 296, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a06d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", + "2 | Nonce : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 297, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a06d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 298, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a06d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 299, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a06d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "0 | Committeemembership : Abdicate membership" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 300, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0a06d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Committeemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 2339", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 301, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b009d1c0000d3040000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b009d1c000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set vote threshold", "1 | N : 7325", - "2 | D : 1235", - "3 | Tip : POLYX 55.555555" + "2 | D : 0" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", "1 | N : 7325", - "2 | D : 1235", + "2 | D : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 302, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00343000009d1c0000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b00d3040000f7010000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 7325", - "3 | Tip : POLYX 1234.56789" + "1 | N : 1235", + "2 | D : 503", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 7325", + "1 | N : 1235", + "2 | D : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 303, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b0034300000d3040000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b00f70100009d1c0000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 1235", - "3 | Tip : POLYX 5552342.355555" + "1 | N : 503", + "2 | D : 7325" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 1235", + "1 | N : 503", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 304, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b0000000000d3040000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b00000000009d1c0000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set vote threshold", "1 | N : 0", - "2 | D : 1235", - "3 | Tip : POLYX 0.000987" + "2 | D : 7325" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", "1 | N : 0", - "2 | D : 1235", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 305, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b000000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b00d304000034300000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 1235", + "2 | D : 12340", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", + "1 | N : 1235", + "2 | D : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 306, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 307, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 308, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 309, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 310, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 311, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b0201d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 1234.56789" + "1 | Expiry : None", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 312, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b0200a1860100d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : 100001" @@ -8062,134 +8110,128 @@ "0 | Technicalcommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 313, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b0201d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 314, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b0201d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Expiry : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 315, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b0200a1860100d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" + "1 | Expiry : 100001" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 316, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b03010000083434d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 317, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b03000000083434d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 318, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b03000000083434d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote or propose", "1 | Approve : False", @@ -8207,45 +8249,43 @@ "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 319, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b03000000083434d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 320, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b03010000083434d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", @@ -8253,917 +8293,913 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 321, "name": "Technicalcommittee_Vote", - "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a4930000001d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3df3e0010001d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", "3 | Approve : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 322, "name": "Technicalcommittee_Vote", - "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0000000001d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 0", + "3 | Approve : True", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 0", "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 323, "name": "Technicalcommittee_Vote", - "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d4930000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 324, "name": "Technicalcommittee_Vote", - "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a4930000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3ddb03000001d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Tip : POLYX 55.555555" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : True", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 12361", - "3 | Approve : False", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 325, "name": "Technicalcommittee_Vote", - "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0b04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d4930000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", "3 | Approve : False" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", "3 | Approve : False", "4 | Chain : Polymesh", "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 326, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0004000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c000c000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 4" + "1 | Limit : 12" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 327, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c000c000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0" + "1 | Limit : 12", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 328, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c000f000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c000c000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 1234.56789" + "1 | Limit : 12", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 329, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c002a000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c0009000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 1234.56789" + "1 | Limit : 9", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 9", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 330, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c002a000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c0004000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 55.555555" + "1 | Limit : 4", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 331, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000018000000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000018000000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 128", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 128" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 332, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010008000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000010008000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 2048", "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 333, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000010001000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000010001000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 256", - "3 | At : 256" + "3 | At : 256", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 256", "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 334, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010001000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000010008000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 2048" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 2048", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 335, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000010001000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000010001000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip : POLYX 1234.56789" + "3 | At : 256" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Expiry : 128", "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 336, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 337, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 338, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 339, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 340, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 341, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 342, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 343, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 344, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 345, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 346, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 347, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 348, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 1234.56789" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 349, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 350, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 351, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c050c3cd24cff26508c66c7ba72453e8fc2196f8fd3a544bd04821b76b6179996fbb7325bd205079534fcb347da407b112c7c16ebc12de67c7edf76b03c9830c376051a9d5ea084787776663632283b5b6ebdd29906721b7b71080538ca2c849f957cd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c05083de9d9383730760c080fc0aae67e1fe38f3f51f265b0af62568a8b97e7a8a47bbb551ce706405ba8466241a8acca390a685d6e61afe1c8c2ffbf69b7b0c73709d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c", - "2 | Tip : POLYX 55.555555" + "1 | Members [1/4] : 3de9d9383730760c080fc0aae67e1fe38f3f51", + "1 | Members [2/4] : f265b0af62568a8b97e7a8a47b", + "1 | Members [3/4] : bb551ce706405ba8466241a8acca390a685d6e", + "1 | Members [4/4] : 61afe1c8c2ffbf69b7b0c73709", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c", + "1 | Members [1/4] : 3de9d9383730760c080fc0aae67e1fe38f3f51", + "1 | Members [2/4] : f265b0af62568a8b97e7a8a47b", + "1 | Members [3/4] : bb551ce706405ba8466241a8acca390a685d6e", + "1 | Members [4/4] : 61afe1c8c2ffbf69b7b0c73709", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 352, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c050c3cd24cff26508c66c7ba72453e8fc2196f8fd3a544bd04821b76b6179996fbb7325bd205079534fcb347da407b112c7c16ebc12de67c7edf76b03c9830c376051a9d5ea084787776663632283b5b6ebdd29906721b7b71080538ca2c849f957cd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c", - "2 | Tip : POLYX 55.555555" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 3cd24cff26508c66c7ba72453e8fc2196f8fd3", - "1 | Members [2/6] : a544bd04821b76b6179996fbb7", - "1 | Members [3/6] : 325bd205079534fcb347da407b112c7c16ebc1", - "1 | Members [4/6] : 2de67c7edf76b03c9830c37605", - "1 | Members [5/6] : 1a9d5ea084787776663632283b5b6ebdd29906", - "1 | Members [6/6] : 721b7b71080538ca2c849f957c", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 353, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c0500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Reset members", "1 | Members : ", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 354, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c050cb3e9eed1ab02264691455d4fe67a39c76ec2159a25e8434ba062347d4c0b5c566b01b10b0658ae232bb5dbd82ddf0f2dcf86c96fd748bf22488af97adad5a7dddaf7fb366036f01b539490cd5f7862ccc02c24e58865af8a1444d2b0bf7ee043d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee" + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 355, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c050cb3e9eed1ab02264691455d4fe67a39c76ec2159a25e8434ba062347d4c0b5c566b01b10b0658ae232bb5dbd82ddf0f2dcf86c96fd748bf22488af97adad5a7dddaf7fb366036f01b539490cd5f7862ccc02c24e58865af8a1444d2b0bf7ee043d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 356, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c06d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 357, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c06d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Technicalcommitteemembership : Abdicate membership" + "0 | Technicalcommitteemembership : Abdicate membership", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 50283", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 358, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c06d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Tip : POLYX 1234.56789" @@ -9171,328 +9207,334 @@ "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", + "2 | Nonce : 0", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 359, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c06d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 2339", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 360, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0c06d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Technicalcommitteemembership : Abdicate membership" + "0 | Technicalcommitteemembership : Abdicate membership", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 0", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 361, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d000000000034300000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d00f70100009d1c0000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 12340", + "1 | N : 503", + "2 | D : 7325", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 12340", + "1 | N : 503", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 362, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d000000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d009d1c00009d1c0000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 7325", + "2 | D : 7325" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 0", + "1 | N : 7325", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 363, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d009d1c0000f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0000000000d3040000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 0", + "2 | D : 1235", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 503", + "1 | N : 0", + "2 | D : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 364, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d0034300000f7010000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d009d1c000034300000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 503", - "3 | Tip : POLYX 1234.56789" + "1 | N : 7325", + "2 | D : 12340", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 503", + "1 | N : 7325", + "2 | D : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 365, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00d30400009d1c0000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d009d1c000034300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 7325" + "1 | N : 7325", + "2 | D : 12340", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 7325", + "1 | N : 7325", + "2 | D : 12340", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 366, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 367, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 368, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 369, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 370, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 371, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0201d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0200a1860100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 1234.56789" + "1 | Expiry : 100001", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 372, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0201d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0200a1860100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 55.555555" + "1 | Expiry : 100001", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 373, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0200a1860100d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set expires after", "1 | Expiry : 100001", @@ -9502,113 +9544,113 @@ "0 | Upgradecommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 374, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0201d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001" + "1 | Expiry : None", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 375, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d0201d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Expiry : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 376, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d03010000083434d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 377, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d03000000083434d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 378, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d03010000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -9616,966 +9658,978 @@ ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 379, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d03000000083434d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 380, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d03000000083434d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 381, "name": "Upgradecommittee_Vote", - "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d4930000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 0", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 0", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 382, "name": "Upgradecommittee_Vote", - "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True", - "4 | Tip : POLYX 0.000987" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 0", + "3 | Approve : False", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 0", + "3 | Approve : False", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 383, "name": "Upgradecommittee_Vote", - "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3df3e0010000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", "3 | Approve : False", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 987", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 123123", "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 0", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 384, "name": "Upgradecommittee_Vote", - "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010001d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3ddb03000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 123123", - "3 | Approve : True", - "4 | Tip : POLYX 5552342.355555" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : False", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 123123", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 987", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 385, "name": "Upgradecommittee_Vote", - "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010001d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0d04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d4930000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 123123", - "3 | Approve : True", - "4 | Tip : POLYX 1234.56789" + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Index : 123123", - "3 | Approve : True", + "1 | Proposal [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Proposal [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Index : 12361", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 386, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000f000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0004000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 5552342.355555" + "1 | Limit : 4", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 387, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000f000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0007000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 1234.56789" + "1 | Limit : 7", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 7", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 388, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e002a000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0004000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 4", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 389, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0007000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e000c000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 7", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 12", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 390, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e002a000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42" + "1 | Limit : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 391, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000010008000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000010001000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 2048" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 256", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 256", - "3 | At : 2048", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 392, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010008000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000018000000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 2048" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 128" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 2048", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 393, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000010001000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000018000000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 128" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 256", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 394, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000010008000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000010001000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 2048", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 256", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 2048", - "3 | At : 2048", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 128", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 50283", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 395, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e01117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000010008000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e012910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000010008000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", + "3 | At : 2048" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Expiry : 128", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Expiry : 256", "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 396, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 397, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 398, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 399, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 400, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e02117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e022910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 401, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 402, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 403, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 404, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 405, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e03117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e032910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Who [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Who [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Who [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 406, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 407, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 408, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 409, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 410, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e04117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e042910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Remove [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Add [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Add [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Remove [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Remove [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Add [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Add [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 411, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e050805d3d61e40f4f270859bddbe6f47ec5b4c8ff0fbb710e4e38bd0897307b6fc30c8681ed8e159511505324c32d3cc9b00109d0229e021cfc12243eacafd493fadd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0500d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", - "2 | Tip : POLYX 1234.56789" + "1 | Members : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : 05d3d61e40f4f270859bddbe6f47ec5b4c8ff0", - "1 | Members [2/4] : fbb710e4e38bd0897307b6fc30", - "1 | Members [3/4] : c8681ed8e159511505324c32d3cc9b00109d02", - "1 | Members [4/4] : 29e021cfc12243eacafd493fad", + "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 412, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e050427b12c1e7a4cc363f2e9f623cf22223d8a9cd6782cd41cac624d232bf53aefa1d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/2] : 27b12c1e7a4cc363f2e9f623cf22223d8a9cd6", + "1 | Members [2/2] : 782cd41cac624d232bf53aefa1", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 413, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0500d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0500d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 1234.56789" + "1 | Members : " ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", "1 | Members : ", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 414, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0500d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e0500d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Reset members", "1 | Members : ", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 415, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0504d8e6ce33e7e18f94864f127c0c5f01e99db8585499148a6c71cb4c47ef5703eed503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e050cb3e9eed1ab02264691455d4fe67a39c76ec2159a25e8434ba062347d4c0b5c566b01b10b0658ae232bb5dbd82ddf0f2dcf86c96fd748bf22488af97adad5a7dddaf7fb366036f01b539490cd5f7862ccc02c24e58865af8a1444d2b0bf7ee043d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : d8e6ce33e7e18f94864f127c0c5f01e99db858", - "1 | Members [2/2] : 5499148a6c71cb4c47ef5703ee", + "1 | Members [1/6] : b3e9eed1ab02264691455d4fe67a39c76ec215", + "1 | Members [2/6] : 9a25e8434ba062347d4c0b5c56", + "1 | Members [3/6] : 6b01b10b0658ae232bb5dbd82ddf0f2dcf86c9", + "1 | Members [4/6] : 6fd748bf22488af97adad5a7dd", + "1 | Members [5/6] : daf7fb366036f01b539490cd5f7862ccc02c24", + "1 | Members [6/6] : e58865af8a1444d2b0bf7ee043", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 416, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e06d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "0 | Upgradecommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 417, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e06d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Upgradecommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 418, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e06d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -10584,1738 +10638,1770 @@ "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", + "2 | Nonce : 2339", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 419, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e06d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 420, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0e06d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 421, "name": "Multisig_Create_multisig", - "blob": "0f0024741d92db0681b9cb1cea3a614ebd3d6a133af26c70853e482a719d5d82ccbd02c61ecfd280e48d1a6067fe27772bc457e12217a213dce8b36550d14351c4ae25c639fcb14c55efa20308950675c75fea6054eb347333d710a5d3469afbe02457c45e4833c87fb3c05cdb17251ce9970ee862b44553a17afd9e783c8dc69bef6a5a4d182f69b4744164e7e1014f230b7d539eeaaa397754e8d307491efaf3c3334458065400dfc145655e7044042db6951538ca310aa445d6f5d534b48960441346e0a2337da4da9ddc947f0d6cc0b0452e00625bde832aadb779b87340d69f40c6118c3eeca4e8dd215212ea86009255640138de2fed83c3d652a3eed2733b0d7ae36b75d3c0118d1e14cb76e8a6737fa5f7e01fe327dab8e8fc1fc4b70045672309000000000000010104417373657449442d31323334353637380000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0024dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f080000000000000000010104417373657449442d31323334353637380000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "1 | Signers [2/18] : 5bs3pLzJHX", - "1 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "1 | Signers [4/18] : hGZ4e9A8sZ", - "1 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "1 | Signers [6/18] : ver7M94dHa", - "1 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "1 | Signers [8/18] : uTYuFZgLTj", - "1 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "1 | Signers [10/18] : TSbVkxmYhe", - "1 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "1 | Signers [12/18] : dBRS4tYvyE", - "1 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "1 | Signers [14/18] : 5MveiEEdYb", - "1 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "1 | Signers [16/18] : pnoZyToYK2", - "1 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "1 | Signers [18/18] : W2mDPeW5km", - "2 | Sigs required : 2339", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Sigs required : 0", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", - "3 | Permissions [4/4] : Whole" + "3 | Permissions [4/4] : Whole", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "1 | Signers [2/18] : 5bs3pLzJHX", - "1 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "1 | Signers [4/18] : hGZ4e9A8sZ", - "1 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "1 | Signers [6/18] : ver7M94dHa", - "1 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "1 | Signers [8/18] : uTYuFZgLTj", - "1 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "1 | Signers [10/18] : TSbVkxmYhe", - "1 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "1 | Signers [12/18] : dBRS4tYvyE", - "1 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "1 | Signers [14/18] : 5MveiEEdYb", - "1 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "1 | Signers [16/18] : pnoZyToYK2", - "1 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "1 | Signers [18/18] : W2mDPeW5km", - "2 | Sigs required : 2339", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Sigs required : 0", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 422, "name": "Multisig_Create_multisig", - "blob": "0f0014f24ff0ededd177fbf0a07fc6dad935081f0708e5561fee3a155d00aee6a84c11bcf65bf993277eb906ed9dc6413843c8da7b0e16ef7cc8aeb44eae3bdc83451ef638facdfb5d17e9fcae5ad5feb340ae7ade512030e36203472df18201aae87c7030ac35e77fcfe0d579caf8e58423e1934dfd26c4d069dbf2a998de42eba37c4e9155fe5da4203d2ff93ad0d98932a573f6d1ebcd7cee3f2c35db9256a7d0660000000000000000010104417373657449442d31323334353637380000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f000464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f5276bc4000000000000010104417373657449442d31323334353637380000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "1 | Signers [2/10] : FRRATjd6gG", - "1 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "1 | Signers [4/10] : xg19k1U7Nu", - "1 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "1 | Signers [6/10] : 9mxrnJfmBi", - "1 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "1 | Signers [8/10] : bHXcfaFkKX", - "1 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "1 | Signers [10/10] : ULvz7PE8Jk", - "2 | Sigs required : 0", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", + "2 | Sigs required : 50283", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "1 | Signers [2/10] : FRRATjd6gG", - "1 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "1 | Signers [4/10] : xg19k1U7Nu", - "1 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "1 | Signers [6/10] : 9mxrnJfmBi", - "1 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "1 | Signers [8/10] : bHXcfaFkKX", - "1 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "1 | Signers [10/10] : ULvz7PE8Jk", - "2 | Sigs required : 0", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", + "2 | Sigs required : 50283", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 423, "name": "Multisig_Create_multisig", - "blob": "0f0010a225aecdace484f615e37c2934ea97eecdbf33fe885fc873221fcd2a0414ff1480898ddad519c88f29acd7506175b18a20ba6f1df4cf15bb7d40485937e183599204a93fb441955e6b98378cdf3a971ecaa91d31a8fbe75f9ca1755e13e0a30dc66aea6aaae09c733f2dc1892353ddaebac709b863594209ca22900d6aa5816a6400000000000000010104417373657449442d31323334353637380000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0018ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685a6400000000000000010104417373657449442d31323334353637380000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/8] : 5FjJorT8DMx4sWJKS7yAG6tnka8S2EYZ7L5FAX", - "1 | Signers [2/8] : qBtW1Q1AVb", - "1 | Signers [3/8] : 5EyErAeS75AszSSUK4UJFMV7o92t1KWx5tbJ9s", - "1 | Signers [4/8] : fLzYsXyPXV", - "1 | Signers [5/8] : 5FNAETyD2iwDiYpsXuddhbEvgUku15pgNBDUnY", - "1 | Signers [6/8] : S1GZNpLnoE", - "1 | Signers [7/8] : 5GYs6h3J39gNX352Ko2LAyKUGzX6e7WABQ6vhH", - "1 | Signers [8/8] : ncFQRGiwk2", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Sigs required : 100", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/8] : 5FjJorT8DMx4sWJKS7yAG6tnka8S2EYZ7L5FAX", - "1 | Signers [2/8] : qBtW1Q1AVb", - "1 | Signers [3/8] : 5EyErAeS75AszSSUK4UJFMV7o92t1KWx5tbJ9s", - "1 | Signers [4/8] : fLzYsXyPXV", - "1 | Signers [5/8] : 5FNAETyD2iwDiYpsXuddhbEvgUku15pgNBDUnY", - "1 | Signers [6/8] : S1GZNpLnoE", - "1 | Signers [7/8] : 5GYs6h3J39gNX352Ko2LAyKUGzX6e7WABQ6vhH", - "1 | Signers [8/8] : ncFQRGiwk2", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Sigs required : 100", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 424, "name": "Multisig_Create_multisig", - "blob": "0f00186ab7da57a8fb1ed8a5dc9ab4ccdf70dbe155f37608344771f8a44ba0802ad43114bf7b81c19afbdcd787a13dafbf908caae9f50014671164b181073b86f5aa73683f3e0b5f04b22897724b6e61701c5de8d526df6c99f0131aaa7af2a102480764d12db851bab638d067494fe7f43cccde40fef668cb432a58f16390bdb9961b067b3c4c168c7f0e373de6a9907c91d89941753cbb540fbdfdade3e29ec00f0558acd47eca9ca141e3787c7d8ee3a5dfc5d56d504828bbefd977af27ca264a4b6400000000000000010104417373657449442d31323334353637380000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0024dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f086400000000000000010104417373657449442d31323334353637380000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/12] : 5EUdYmwVfwHLoZtV4a8kH8BDW9eWnPst7SN9Zi", - "1 | Signers [2/12] : NKThtbcp2x", - "1 | Signers [3/12] : 5CXuhP3EjUSsG3Ce7y2dnbPX12SUrbzdvZLECN", - "1 | Signers [4/12] : Aa2Xbqunjw", - "1 | Signers [5/12] : 5ERPd9eBr2yG9edx9Wm4uwZ59u349uGHthzGzP", - "1 | Signers [6/12] : Gm7bRwmKJQ", - "1 | Signers [7/12] : 5ELtnTpoWaMdNvRY4NvXT9fWGXDPPwDryKn82B", - "1 | Signers [8/12] : 3ed8yh14yi", - "1 | Signers [9/12] : 5CDCkdaZNBhTb8za2EVVZ1tMHX8VrMACXBGQzK", - "1 | Signers [10/12] : qeqm12yCzF", - "1 | Signers [11/12] : 5E4yQs7jNeRgB3tEAY2mS8nPpLTXWGQD1M5C5X", - "1 | Signers [12/12] : HvaCw6diwm", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Sigs required : 100", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/12] : 5EUdYmwVfwHLoZtV4a8kH8BDW9eWnPst7SN9Zi", - "1 | Signers [2/12] : NKThtbcp2x", - "1 | Signers [3/12] : 5CXuhP3EjUSsG3Ce7y2dnbPX12SUrbzdvZLECN", - "1 | Signers [4/12] : Aa2Xbqunjw", - "1 | Signers [5/12] : 5ERPd9eBr2yG9edx9Wm4uwZ59u349uGHthzGzP", - "1 | Signers [6/12] : Gm7bRwmKJQ", - "1 | Signers [7/12] : 5ELtnTpoWaMdNvRY4NvXT9fWGXDPPwDryKn82B", - "1 | Signers [8/12] : 3ed8yh14yi", - "1 | Signers [9/12] : 5CDCkdaZNBhTb8za2EVVZ1tMHX8VrMACXBGQzK", - "1 | Signers [10/12] : qeqm12yCzF", - "1 | Signers [11/12] : 5E4yQs7jNeRgB3tEAY2mS8nPpLTXWGQD1M5C5X", - "1 | Signers [12/12] : HvaCw6diwm", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Sigs required : 100", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 425, "name": "Multisig_Create_multisig", - "blob": "0f0010a225aecdace484f615e37c2934ea97eecdbf33fe885fc873221fcd2a0414ff1480898ddad519c88f29acd7506175b18a20ba6f1df4cf15bb7d40485937e183599204a93fb441955e6b98378cdf3a971ecaa91d31a8fbe75f9ca1755e13e0a30dc66aea6aaae09c733f2dc1892353ddaebac709b863594209ca22900d6aa5816a0100000000000000010104417373657449442d31323334353637380000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f000464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f5276bc4000000000000010104417373657449442d31323334353637380000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/8] : 5FjJorT8DMx4sWJKS7yAG6tnka8S2EYZ7L5FAX", - "1 | Signers [2/8] : qBtW1Q1AVb", - "1 | Signers [3/8] : 5EyErAeS75AszSSUK4UJFMV7o92t1KWx5tbJ9s", - "1 | Signers [4/8] : fLzYsXyPXV", - "1 | Signers [5/8] : 5FNAETyD2iwDiYpsXuddhbEvgUku15pgNBDUnY", - "1 | Signers [6/8] : S1GZNpLnoE", - "1 | Signers [7/8] : 5GYs6h3J39gNX352Ko2LAyKUGzX6e7WABQ6vhH", - "1 | Signers [8/8] : ncFQRGiwk2", - "2 | Sigs required : 1", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", + "2 | Sigs required : 50283", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", - "3 | Permissions [4/4] : Whole" + "3 | Permissions [4/4] : Whole", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/8] : 5FjJorT8DMx4sWJKS7yAG6tnka8S2EYZ7L5FAX", - "1 | Signers [2/8] : qBtW1Q1AVb", - "1 | Signers [3/8] : 5EyErAeS75AszSSUK4UJFMV7o92t1KWx5tbJ9s", - "1 | Signers [4/8] : fLzYsXyPXV", - "1 | Signers [5/8] : 5FNAETyD2iwDiYpsXuddhbEvgUku15pgNBDUnY", - "1 | Signers [6/8] : S1GZNpLnoE", - "1 | Signers [7/8] : 5GYs6h3J39gNX352Ko2LAyKUGzX6e7WABQ6vhH", - "1 | Signers [8/8] : ncFQRGiwk2", - "2 | Sigs required : 1", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", + "2 | Sigs required : 50283", "3 | Permissions [1/4] : These", "3 | Permissions [2/4] : AssetID-12345678", "3 | Permissions [3/4] : Whole", "3 | Permissions [4/4] : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 426, "name": "Multisig_Create_proposal", - "blob": "0f01eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f0000083434010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0194c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320000083434010001000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048" + "3 | Expiry : 256", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", + "3 | Expiry : 256", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 427, "name": "Multisig_Create_proposal", - "blob": "0f0188bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b3670000083434010008000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f016e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300000083434018000000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Tip : POLYX 55.555555" + "3 | Expiry : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 428, "name": "Multisig_Create_proposal", - "blob": "0f0188bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b3670000083434018000000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0194c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320000083434010008000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" + "3 | Expiry : 2048", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 429, "name": "Multisig_Create_proposal", - "blob": "0f019a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490000083434010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f016e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300000083434010001000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", "3 | Expiry : 256", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 430, "name": "Multisig_Create_proposal", - "blob": "0f01b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f0000083434010008000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f01b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f0000083434018000000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048" + "3 | Expiry : 128", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Create proposal", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 431, "name": "Multisig_Approve", - "blob": "0f0230a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e230900000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f02b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f6bc4000000000000017efd596351ffd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Proposal id : 2339", - "3 | Max weight : None", - "4 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 50283", + "3 | Max weight [1/2] : 416710495", + "3 | Max weight [2/2] : 16340", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Proposal id : 2339", - "3 | Max weight : None", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 50283", + "3 | Max weight [1/2] : 416710495", + "3 | Max weight [2/2] : 16340", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 432, "name": "Multisig_Approve", - "blob": "0f029a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749000000000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb326bc4000000000000018e86179f60d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 0", - "3 | Max weight : None", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Proposal id : 50283", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 0", - "3 | Max weight : None", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Proposal id : 50283", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 433, "name": "Multisig_Approve", - "blob": "0f0230a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e0000000000000000010fefd3f3300ac5a40ff9a6a5a103f7a3d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f026e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8306400000000000000018e86179f60d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Proposal id : 0", - "3 | Max weight [1/2] : 46378543742178287", - "3 | Max weight [2/2] : 46152016172787449", - "4 | Tip : POLYX 5552342.355555" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Proposal id : 100", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Proposal id : 0", - "3 | Max weight [1/2] : 46378543742178287", - "3 | Max weight [2/2] : 46152016172787449", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Proposal id : 100", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 434, "name": "Multisig_Approve", - "blob": "0f02eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f0000000000000000010f1e5dae2450338f0fb1229a21cbd611d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320000000000000000018e86179f60d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal id : 0", - "3 | Max weight [1/2] : 40307340975430942", - "3 | Max weight [2/2] : 5021242534535857", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Proposal id : 0", - "3 | Max weight [1/2] : 40307340975430942", - "3 | Max weight [2/2] : 5021242534535857", + "3 | Max weight [1/2] : 667279779", + "3 | Max weight [2/2] : 24", "4 | Chain : Polymesh", "5 | Nonce : 1", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 435, "name": "Multisig_Approve", - "blob": "0f02b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f2309000000000000010f1e5dae2450338f0fb1229a21cbd611d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f02b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f0100000000000000017efd596351ffd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Proposal id : 2339", - "3 | Max weight [1/2] : 40307340975430942", - "3 | Max weight [2/2] : 5021242534535857", - "4 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 416710495", + "3 | Max weight [2/2] : 16340", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Approve", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Proposal id : 2339", - "3 | Max weight [1/2] : 40307340975430942", - "3 | Max weight [2/2] : 5021242534535857", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 416710495", + "3 | Max weight [2/2] : 16340", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 436, "name": "Multisig_Reject", - "blob": "0f039a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107496400000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f03b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7610100000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 100", - "3 | Tip : POLYX 1234.56789" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Proposal id : 1", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 100", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Proposal id : 1", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 437, "name": "Multisig_Reject", - "blob": "0f039a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f03b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f2309000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 0" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Proposal id : 0", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 2339", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 438, "name": "Multisig_Reject", - "blob": "0f03eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f2309000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f036e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300100000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Proposal id : 2339", - "3 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Proposal id : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Proposal id : 2339", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Proposal id : 1", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 439, "name": "Multisig_Reject", - "blob": "0f03eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f6bc4000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f03b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f0000000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Proposal id : 50283" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 0" ], "output_expert": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Proposal id : 50283", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Proposal id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 440, "name": "Multisig_Reject", - "blob": "0f03ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f397596400000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f03b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7610000000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Proposal id : 100" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Proposal id : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Reject", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Proposal id : 100", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Proposal id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 441, "name": "Multisig_Accept_multisig_signer", - "blob": "0f040100000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f042309000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 1", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 2339", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 1", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 442, "name": "Multisig_Accept_multisig_signer", - "blob": "0f040100000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f046400000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 1", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 100", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 1", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 443, "name": "Multisig_Accept_multisig_signer", - "blob": "0f046400000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f046400000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 100", - "2 | Tip : POLYX 0.000987" + "1 | Auth id : 100" ], "output_expert": [ "0 | Multisig : Accept multisig signer", "1 | Auth id : 100", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 444, "name": "Multisig_Accept_multisig_signer", - "blob": "0f046400000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f042309000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 100", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 2339", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 100", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 445, "name": "Multisig_Accept_multisig_signer", - "blob": "0f046400000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f042309000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 100" + "1 | Auth id : 2339", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Accept multisig signer", - "1 | Auth id : 100", + "1 | Auth id : 2339", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 446, "name": "Multisig_Add_multisig_signers", - "blob": "0f0520243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0524dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", - "2 | Tip : POLYX 1234.56789" + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 447, "name": "Multisig_Add_multisig_signers", - "blob": "0f05144463c08f04590a0e2ace87e2fc73fa1b149d3b7ffb3dfaf225ab09a4aff5c6232af02c4b6978da8c2ae4f3fc762feb555862e49d1087877957f8e214a81d6b588672be6a96af2c8bb9deb395af3c7448516d55fd09e9d8e34d6c523c82739220aad1418e035fe41e28dfa8a6c9056ba57df270ba53fb7e0eb6579077ec8dcb52fe163cf9b8cd30205d72f79b87aefd05b7cac85abd3884e36d6f9953ef2cdc65d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0518ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", - "2 | Tip : POLYX 1234.56789" + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7" ], "output_expert": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 448, "name": "Multisig_Add_multisig_signers", - "blob": "0f0524741d92db0681b9cb1cea3a614ebd3d6a133af26c70853e482a719d5d82ccbd02c61ecfd280e48d1a6067fe27772bc457e12217a213dce8b36550d14351c4ae25c639fcb14c55efa20308950675c75fea6054eb347333d710a5d3469afbe02457c45e4833c87fb3c05cdb17251ce9970ee862b44553a17afd9e783c8dc69bef6a5a4d182f69b4744164e7e1014f230b7d539eeaaa397754e8d307491efaf3c3334458065400dfc145655e7044042db6951538ca310aa445d6f5d534b48960441346e0a2337da4da9ddc947f0d6cc0b0452e00625bde832aadb779b87340d69f40c6118c3eeca4e8dd215212ea86009255640138de2fed83c3d652a3eed2733b0d7ae36b75d3c0118d1e14cb76e8a6737fa5f7e01fe327dab8e8fc1fc4b7004567d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0518ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "1 | Signers [2/18] : 5bs3pLzJHX", - "1 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "1 | Signers [4/18] : hGZ4e9A8sZ", - "1 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "1 | Signers [6/18] : ver7M94dHa", - "1 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "1 | Signers [8/18] : uTYuFZgLTj", - "1 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "1 | Signers [10/18] : TSbVkxmYhe", - "1 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "1 | Signers [12/18] : dBRS4tYvyE", - "1 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "1 | Signers [14/18] : 5MveiEEdYb", - "1 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "1 | Signers [16/18] : pnoZyToYK2", - "1 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "1 | Signers [18/18] : W2mDPeW5km", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "1 | Signers [2/18] : 5bs3pLzJHX", - "1 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "1 | Signers [4/18] : hGZ4e9A8sZ", - "1 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "1 | Signers [6/18] : ver7M94dHa", - "1 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "1 | Signers [8/18] : uTYuFZgLTj", - "1 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "1 | Signers [10/18] : TSbVkxmYhe", - "1 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "1 | Signers [12/18] : dBRS4tYvyE", - "1 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "1 | Signers [14/18] : 5MveiEEdYb", - "1 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "1 | Signers [16/18] : pnoZyToYK2", - "1 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "1 | Signers [18/18] : W2mDPeW5km", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 449, "name": "Multisig_Add_multisig_signers", - "blob": "0f05144463c08f04590a0e2ace87e2fc73fa1b149d3b7ffb3dfaf225ab09a4aff5c6232af02c4b6978da8c2ae4f3fc762feb555862e49d1087877957f8e214a81d6b588672be6a96af2c8bb9deb395af3c7448516d55fd09e9d8e34d6c523c82739220aad1418e035fe41e28dfa8a6c9056ba57df270ba53fb7e0eb6579077ec8dcb52fe163cf9b8cd30205d72f79b87aefd05b7cac85abd3884e36d6f9953ef2cdc65d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0518ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", - "2 | Tip : POLYX 1234.56789" + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", + "1 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "1 | Signers [2/12] : Zt6nBvLLUu", + "1 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "1 | Signers [4/12] : Z72fmhaJ8q", + "1 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "1 | Signers [6/12] : jnWufFh451", + "1 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "1 | Signers [8/12] : jvHdz2SLkN", + "1 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "1 | Signers [10/12] : tt1LYjQB1y", + "1 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "1 | Signers [12/12] : 17pMqbRgj7", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 450, "name": "Multisig_Add_multisig_signers", - "blob": "0f0514f24ff0ededd177fbf0a07fc6dad935081f0708e5561fee3a155d00aee6a84c11bcf65bf993277eb906ed9dc6413843c8da7b0e16ef7cc8aeb44eae3bdc83451ef638facdfb5d17e9fcae5ad5feb340ae7ade512030e36203472df18201aae87c7030ac35e77fcfe0d579caf8e58423e1934dfd26c4d069dbf2a998de42eba37c4e9155fe5da4203d2ff93ad0d98932a573f6d1ebcd7cee3f2c35db9256a7d066d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f050464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f527d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "1 | Signers [2/10] : FRRATjd6gG", - "1 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "1 | Signers [4/10] : xg19k1U7Nu", - "1 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "1 | Signers [6/10] : 9mxrnJfmBi", - "1 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "1 | Signers [8/10] : bHXcfaFkKX", - "1 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "1 | Signers [10/10] : ULvz7PE8Jk", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh" ], "output_expert": [ "0 | Multisig : Add multisig signers", - "1 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "1 | Signers [2/10] : FRRATjd6gG", - "1 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "1 | Signers [4/10] : xg19k1U7Nu", - "1 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "1 | Signers [6/10] : 9mxrnJfmBi", - "1 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "1 | Signers [8/10] : bHXcfaFkKX", - "1 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "1 | Signers [10/10] : ULvz7PE8Jk", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 451, "name": "Multisig_Remove_multisig_signers", - "blob": "0f06144463c08f04590a0e2ace87e2fc73fa1b149d3b7ffb3dfaf225ab09a4aff5c6232af02c4b6978da8c2ae4f3fc762feb555862e49d1087877957f8e214a81d6b588672be6a96af2c8bb9deb395af3c7448516d55fd09e9d8e34d6c523c82739220aad1418e035fe41e28dfa8a6c9056ba57df270ba53fb7e0eb6579077ec8dcb52fe163cf9b8cd30205d72f79b87aefd05b7cac85abd3884e36d6f9953ef2cdc65d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0624dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", - "2 | Tip : POLYX 0.000987" + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk" ], "output_expert": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "1 | Signers [2/10] : f4XVq4foFk", - "1 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "1 | Signers [4/10] : Hthyd6KKTz", - "1 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "1 | Signers [6/10] : EUX7ioQd8k", - "1 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "1 | Signers [8/10] : AzK9t64p2J", - "1 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "1 | Signers [10/10] : 6hoNyHEyU9", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 452, "name": "Multisig_Remove_multisig_signers", - "blob": "0f06145072decb8959ff3d87277a9473cee0f83e9e161fc47a84ef740cc724c6b48a76ec17d788ab0387e97a62e60c4e0553a15db1c7bf2723e228940c66cbd1ae2c075c26e01e8f04eed65865ef5eef0bb5b5b8fa89bdb5820946335c015fb145da7e5c8ca4fa7e26e0af3c8459e89a2eb8efcfd8446d5a786358856b503e0d175c301c9515489bded5425ed1c7cc883a672de199686b79774f8d4cad271ac866722fd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0624dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "1 | Signers [2/10] : BjQw3VAW93", - "1 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "1 | Signers [4/10] : TeZxtSfqBp", - "1 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "1 | Signers [6/10] : LDzJZxRB3r", - "1 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "1 | Signers [8/10] : 9gSXTp7tAB", - "1 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "1 | Signers [10/10] : RjXcnQT2Zd" + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "1 | Signers [2/10] : BjQw3VAW93", - "1 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "1 | Signers [4/10] : TeZxtSfqBp", - "1 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "1 | Signers [6/10] : LDzJZxRB3r", - "1 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "1 | Signers [8/10] : 9gSXTp7tAB", - "1 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "1 | Signers [10/10] : RjXcnQT2Zd", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 453, "name": "Multisig_Remove_multisig_signers", - "blob": "0f0620243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0624dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", - "2 | Tip : POLYX 5552342.355555" + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 454, "name": "Multisig_Remove_multisig_signers", - "blob": "0f0620243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f060464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f527d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", - "2 | Tip : POLYX 1234.56789" + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "1 | Signers [2/2] : JT89iYb9Eh", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 455, "name": "Multisig_Remove_multisig_signers", - "blob": "0f0620243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0624dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Remove multisig signers", - "1 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "1 | Signers [2/16] : gwAc7t833n", - "1 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "1 | Signers [4/16] : TTnrpt1FGL", - "1 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "1 | Signers [6/16] : Kne3bJ43mG", - "1 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "1 | Signers [8/16] : D7VRS9LMoY", - "1 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "1 | Signers [10/16] : ZCXmnaH8gP", - "1 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "1 | Signers [12/16] : YPeF1UNokW", - "1 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "1 | Signers [14/16] : AL7VfCLnvc", - "1 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "1 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "1 | Signers [2/18] : XmDn3DLu8f", + "1 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "1 | Signers [4/18] : 2BnUz2Aw5K", + "1 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "1 | Signers [6/18] : QuSkZm6w72", + "1 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "1 | Signers [8/18] : y2Nij6NqMA", + "1 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "1 | Signers [10/18] : YwQgVfEHnf", + "1 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "1 | Signers [12/18] : VWgVqUeG3G", + "1 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "1 | Signers [14/18] : ok9peMuiCj", + "1 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "1 | Signers [16/18] : VzATui5tqG", + "1 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "1 | Signers [18/18] : Y9UR8vktuk", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 456, "name": "Multisig_Add_multisig_signers_via_admin", - "blob": "0f079a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda5601074920243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0794c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f527d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "2 | Signers [2/16] : gwAc7t833n", - "2 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "2 | Signers [4/16] : TTnrpt1FGL", - "2 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "2 | Signers [6/16] : Kne3bJ43mG", - "2 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "2 | Signers [8/16] : D7VRS9LMoY", - "2 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "2 | Signers [10/16] : ZCXmnaH8gP", - "2 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "2 | Signers [12/16] : YPeF1UNokW", - "2 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "2 | Signers [14/16] : AL7VfCLnvc", - "2 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "2 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "2 | Signers [2/2] : JT89iYb9Eh", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "2 | Signers [2/16] : gwAc7t833n", - "2 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "2 | Signers [4/16] : TTnrpt1FGL", - "2 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "2 | Signers [6/16] : Kne3bJ43mG", - "2 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "2 | Signers [8/16] : D7VRS9LMoY", - "2 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "2 | Signers [10/16] : ZCXmnaH8gP", - "2 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "2 | Signers [12/16] : YPeF1UNokW", - "2 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "2 | Signers [14/16] : AL7VfCLnvc", - "2 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "2 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "2 | Signers [2/2] : JT89iYb9Eh", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 457, "name": "Multisig_Add_multisig_signers_via_admin", - "blob": "0f07ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759186ab7da57a8fb1ed8a5dc9ab4ccdf70dbe155f37608344771f8a44ba0802ad43114bf7b81c19afbdcd787a13dafbf908caae9f50014671164b181073b86f5aa73683f3e0b5f04b22897724b6e61701c5de8d526df6c99f0131aaa7af2a102480764d12db851bab638d067494fe7f43cccde40fef668cb432a58f16390bdb9961b067b3c4c168c7f0e373de6a9907c91d89941753cbb540fbdfdade3e29ec00f0558acd47eca9ca141e3787c7d8ee3a5dfc5d56d504828bbefd977af27ca264a4bd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f07b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76118ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Signers [1/12] : 5EUdYmwVfwHLoZtV4a8kH8BDW9eWnPst7SN9Zi", - "2 | Signers [2/12] : NKThtbcp2x", - "2 | Signers [3/12] : 5CXuhP3EjUSsG3Ce7y2dnbPX12SUrbzdvZLECN", - "2 | Signers [4/12] : Aa2Xbqunjw", - "2 | Signers [5/12] : 5ERPd9eBr2yG9edx9Wm4uwZ59u349uGHthzGzP", - "2 | Signers [6/12] : Gm7bRwmKJQ", - "2 | Signers [7/12] : 5ELtnTpoWaMdNvRY4NvXT9fWGXDPPwDryKn82B", - "2 | Signers [8/12] : 3ed8yh14yi", - "2 | Signers [9/12] : 5CDCkdaZNBhTb8za2EVVZ1tMHX8VrMACXBGQzK", - "2 | Signers [10/12] : qeqm12yCzF", - "2 | Signers [11/12] : 5E4yQs7jNeRgB3tEAY2mS8nPpLTXWGQD1M5C5X", - "2 | Signers [12/12] : HvaCw6diwm", - "3 | Tip : POLYX 5552342.355555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Signers [1/12] : 5EUdYmwVfwHLoZtV4a8kH8BDW9eWnPst7SN9Zi", - "2 | Signers [2/12] : NKThtbcp2x", - "2 | Signers [3/12] : 5CXuhP3EjUSsG3Ce7y2dnbPX12SUrbzdvZLECN", - "2 | Signers [4/12] : Aa2Xbqunjw", - "2 | Signers [5/12] : 5ERPd9eBr2yG9edx9Wm4uwZ59u349uGHthzGzP", - "2 | Signers [6/12] : Gm7bRwmKJQ", - "2 | Signers [7/12] : 5ELtnTpoWaMdNvRY4NvXT9fWGXDPPwDryKn82B", - "2 | Signers [8/12] : 3ed8yh14yi", - "2 | Signers [9/12] : 5CDCkdaZNBhTb8za2EVVZ1tMHX8VrMACXBGQzK", - "2 | Signers [10/12] : qeqm12yCzF", - "2 | Signers [11/12] : 5E4yQs7jNeRgB3tEAY2mS8nPpLTXWGQD1M5C5X", - "2 | Signers [12/12] : HvaCw6diwm", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 458, "name": "Multisig_Add_multisig_signers_via_admin", - "blob": "0f07b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f145072decb8959ff3d87277a9473cee0f83e9e161fc47a84ef740cc724c6b48a76ec17d788ab0387e97a62e60c4e0553a15db1c7bf2723e228940c66cbd1ae2c075c26e01e8f04eed65865ef5eef0bb5b5b8fa89bdb5820946335c015fb145da7e5c8ca4fa7e26e0af3c8459e89a2eb8efcfd8446d5a786358856b503e0d175c301c9515489bded5425ed1c7cc883a672de199686b79774f8d4cad271ac866722fd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f07b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76124dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "2 | Signers [2/10] : BjQw3VAW93", - "2 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "2 | Signers [4/10] : TeZxtSfqBp", - "2 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "2 | Signers [6/10] : LDzJZxRB3r", - "2 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "2 | Signers [8/10] : 9gSXTp7tAB", - "2 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "2 | Signers [10/10] : RjXcnQT2Zd" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "2 | Signers [2/10] : BjQw3VAW93", - "2 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "2 | Signers [4/10] : TeZxtSfqBp", - "2 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "2 | Signers [6/10] : LDzJZxRB3r", - "2 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "2 | Signers [8/10] : 9gSXTp7tAB", - "2 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "2 | Signers [10/10] : RjXcnQT2Zd", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 459, "name": "Multisig_Add_multisig_signers_via_admin", - "blob": "0f0788bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b36724741d92db0681b9cb1cea3a614ebd3d6a133af26c70853e482a719d5d82ccbd02c61ecfd280e48d1a6067fe27772bc457e12217a213dce8b36550d14351c4ae25c639fcb14c55efa20308950675c75fea6054eb347333d710a5d3469afbe02457c45e4833c87fb3c05cdb17251ce9970ee862b44553a17afd9e783c8dc69bef6a5a4d182f69b4744164e7e1014f230b7d539eeaaa397754e8d307491efaf3c3334458065400dfc145655e7044042db6951538ca310aa445d6f5d534b48960441346e0a2337da4da9ddc947f0d6cc0b0452e00625bde832aadb779b87340d69f40c6118c3eeca4e8dd215212ea86009255640138de2fed83c3d652a3eed2733b0d7ae36b75d3c0118d1e14cb76e8a6737fa5f7e01fe327dab8e8fc1fc4b7004567d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f07b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7610464520141f31f23b7fa234aa4724a44026a9953fba3d48ce6b1f5c273d866f527d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", - "2 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "2 | Signers [2/18] : 5bs3pLzJHX", - "2 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "2 | Signers [4/18] : hGZ4e9A8sZ", - "2 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "2 | Signers [6/18] : ver7M94dHa", - "2 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "2 | Signers [8/18] : uTYuFZgLTj", - "2 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "2 | Signers [10/18] : TSbVkxmYhe", - "2 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "2 | Signers [12/18] : dBRS4tYvyE", - "2 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "2 | Signers [14/18] : 5MveiEEdYb", - "2 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "2 | Signers [16/18] : pnoZyToYK2", - "2 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "2 | Signers [18/18] : W2mDPeW5km", - "3 | Tip : POLYX 55.555555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "2 | Signers [2/2] : JT89iYb9Eh" ], "output_expert": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", - "2 | Signers [1/18] : 5EgxCNx3pGh8ZuTPvDHAAbt1bFA79U41GvypSf", - "2 | Signers [2/18] : 5bs3pLzJHX", - "2 | Signers [3/18] : 5GYUVT9xBKPK74uup5T714rU6kvg8M5bVHbAdF", - "2 | Signers [4/18] : hGZ4e9A8sZ", - "2 | Signers [5/18] : 5GYcZfrwPXb91Lms4QHxaqLStqmuy2sWoWUTAH", - "2 | Signers [6/18] : ver7M94dHa", - "2 | Signers [7/18] : 5GWBFTrVuCQe4fNdVBEvMCMkKEg5nM3ubgsgwL", - "2 | Signers [8/18] : uTYuFZgLTj", - "2 | Signers [9/18] : 5E774w7S4JajWHCorbmxLWX9D9exqYgC4uGFA8", - "2 | Signers [10/18] : TSbVkxmYhe", - "2 | Signers [11/18] : 5DcKGA3AKEtnQ5soGMQ49hkd3cVBjLeCdEn36Q", - "2 | Signers [12/18] : dBRS4tYvyE", - "2 | Signers [13/18] : 5DfdwRkB47b4TxeYweAfnoE4AUuWmUswKZWMrk", - "2 | Signers [14/18] : 5MveiEEdYb", - "2 | Signers [15/18] : 5GYQYvFJGc9kUnWW8Dq4JmKojyPe93B6C6xTrh", - "2 | Signers [16/18] : pnoZyToYK2", - "2 | Signers [17/18] : 5EqqFrPKGu16MUfWJ6Ri6wydS22144XDAnD5Ah", - "2 | Signers [18/18] : W2mDPeW5km", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/2] : 5ELF1K37CkEdc2Eh178kEgCTTXDTCrnpdvjwef", + "2 | Signers [2/2] : JT89iYb9Eh", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 460, "name": "Multisig_Add_multisig_signers_via_admin", - "blob": "0f0730a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e0c94ffa335d0a51cef43bfc3fa5eb4e8d50e8353e6f6c8e9fcf40298928be47b367ea0f8ce127adf5b0f9a4c053243f2df1b85f1847e988ed681a83c922d366d0964a2fac01c07e7835f8c150ff3c8a1d25035a369ea66ca67346aab5105263f50d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f07b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76118ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/6] : 5FS4tF4ocAKvUCJkHQ5m3m8Lh9bvS45gBsy15m", - "2 | Signers [2/6] : Wcy7jLu4aY", - "2 | Signers [3/6] : 5Evji6FY1rf3HUrNj3tGWbD6tpaYkrdheCBMVX", - "2 | Signers [4/6] : uWZUTyKhyz", - "2 | Signers [5/6] : 5ELf4UHrK5PssvBXN9WLchwqJgurgekU91BK6u", - "2 | Signers [6/6] : 6HvmSZe5ND", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Add multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/6] : 5FS4tF4ocAKvUCJkHQ5m3m8Lh9bvS45gBsy15m", - "2 | Signers [2/6] : Wcy7jLu4aY", - "2 | Signers [3/6] : 5Evji6FY1rf3HUrNj3tGWbD6tpaYkrdheCBMVX", - "2 | Signers [4/6] : uWZUTyKhyz", - "2 | Signers [5/6] : 5ELf4UHrK5PssvBXN9WLchwqJgurgekU91BK6u", - "2 | Signers [6/6] : 6HvmSZe5ND", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 461, "name": "Multisig_Remove_multisig_signers_via_admin", - "blob": "0f08eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f14f24ff0ededd177fbf0a07fc6dad935081f0708e5561fee3a155d00aee6a84c11bcf65bf993277eb906ed9dc6413843c8da7b0e16ef7cc8aeb44eae3bdc83451ef638facdfb5d17e9fcae5ad5feb340ae7ade512030e36203472df18201aae87c7030ac35e77fcfe0d579caf8e58423e1934dfd26c4d069dbf2a998de42eba37c4e9155fe5da4203d2ff93ad0d98932a573f6d1ebcd7cee3f2c35db9256a7d066d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f08b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76124dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "2 | Signers [2/10] : FRRATjd6gG", - "2 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "2 | Signers [4/10] : xg19k1U7Nu", - "2 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "2 | Signers [6/10] : 9mxrnJfmBi", - "2 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "2 | Signers [8/10] : bHXcfaFkKX", - "2 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "2 | Signers [10/10] : ULvz7PE8Jk", - "3 | Tip : POLYX 55.555555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk" ], "output_expert": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signers [1/10] : 5HYRC8cZdFRtx3QxXrttdo2Z4LbYx1Ep3G8BTi", - "2 | Signers [2/10] : FRRATjd6gG", - "2 | Signers [3/10] : 5GLU3UWTuW4mczeuAMwRiLpuNZMQnvnbSZdYQX", - "2 | Signers [4/10] : xg19k1U7Nu", - "2 | Signers [5/10] : 5HdYZdDPCoAhXnoBzmoiz7CYUU5v8netYSbsjZ", - "2 | Signers [6/10] : 9mxrnJfmBi", - "2 | Signers [7/10] : 5EbogLc8p9RbgNT2NHrKAuW7g7Rj6h6RXtzRhU", - "2 | Signers [8/10] : bHXcfaFkKX", - "2 | Signers [9/10] : 5DqimNuyBPh4gR9jHLMsezvjzCj3WPsd16LtNa", - "2 | Signers [10/10] : ULvz7PE8Jk", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 462, "name": "Multisig_Remove_multisig_signers_via_admin", - "blob": "0f0830a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e145072decb8959ff3d87277a9473cee0f83e9e161fc47a84ef740cc724c6b48a76ec17d788ab0387e97a62e60c4e0553a15db1c7bf2723e228940c66cbd1ae2c075c26e01e8f04eed65865ef5eef0bb5b5b8fa89bdb5820946335c015fb145da7e5c8ca4fa7e26e0af3c8459e89a2eb8efcfd8446d5a786358856b503e0d175c301c9515489bded5425ed1c7cc883a672de199686b79774f8d4cad271ac866722fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f08b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f24dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "2 | Signers [2/10] : BjQw3VAW93", - "2 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "2 | Signers [4/10] : TeZxtSfqBp", - "2 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "2 | Signers [6/10] : LDzJZxRB3r", - "2 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "2 | Signers [8/10] : 9gSXTp7tAB", - "2 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "2 | Signers [10/10] : RjXcnQT2Zd", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk" ], "output_expert": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/10] : 5DtBp2H9BamaxmRdd8b4jWkRiTd4pu1EgN6aNK", - "2 | Signers [2/10] : BjQw3VAW93", - "2 | Signers [3/10] : 5HQGEuEn2gTT4HAU15vHqpVu9TciiuDUFBcQWe", - "2 | Signers [4/10] : TeZxtSfqBp", - "2 | Signers [5/10] : 5E9XozPNamV8SMnzZEPw4HX2dwzg9Hxgdp6cga", - "2 | Signers [6/10] : LDzJZxRB3r", - "2 | Signers [7/10] : 5EA43RqE3zHfNZPu41aCMTzKRd6BzyXDaKwVQP", - "2 | Signers [8/10] : 9gSXTp7tAB", - "2 | Signers [9/10] : 5CiBV5Nb5tZsoX7r2LD9vxXa9ERZBThKaxcRhn", - "2 | Signers [10/10] : RjXcnQT2Zd", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 463, "name": "Multisig_Remove_multisig_signers_via_admin", - "blob": "0f08eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f144463c08f04590a0e2ace87e2fc73fa1b149d3b7ffb3dfaf225ab09a4aff5c6232af02c4b6978da8c2ae4f3fc762feb555862e49d1087877957f8e214a81d6b588672be6a96af2c8bb9deb395af3c7448516d55fd09e9d8e34d6c523c82739220aad1418e035fe41e28dfa8a6c9056ba57df270ba53fb7e0eb6579077ec8dcb52fe163cf9b8cd30205d72f79b87aefd05b7cac85abd3884e36d6f9953ef2cdc65d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f08b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76124dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "2 | Signers [2/10] : f4XVq4foFk", - "2 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "2 | Signers [4/10] : Hthyd6KKTz", - "2 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "2 | Signers [6/10] : EUX7ioQd8k", - "2 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "2 | Signers [8/10] : AzK9t64p2J", - "2 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "2 | Signers [10/10] : 6hoNyHEyU9", - "3 | Tip : POLYX 55.555555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "2 | Signers [2/10] : f4XVq4foFk", - "2 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "2 | Signers [4/10] : Hthyd6KKTz", - "2 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "2 | Signers [6/10] : EUX7ioQd8k", - "2 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "2 | Signers [8/10] : AzK9t64p2J", - "2 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "2 | Signers [10/10] : 6hoNyHEyU9", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 464, "name": "Multisig_Remove_multisig_signers_via_admin", - "blob": "0f0830a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e20243b8f5fbd86c87f3ebbe34338eb6401f162dfbf65685c58c888c5d0a365844a0e3840df66e7986507d9df6ef20de569e390bcb424c85702b91aa818d4e74c073ae0036636f3f81b6200acdee201f4db2d0a557208b64c9a5c68c27c080b7d60b00322ad92fe10748cfd29f593b2a318f6133094ab77149c28d72de9e7ff1719503815825e22dbd49a324a9f3eac13759e06b849ada3bd65e7bbe6212fbf0524fa1585177584a4fea9a2cba6ecb37bea5ea7023be27d718ef2849c707ab22626568459c6959e0636fefd0d0b2ca95dc0c29ff3ecf08cfd042190b93352ddbc40b844c758008135841202f0acac34b43ee300af3af205c7c1d61dc465c6c68b19d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f08b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76124dccf2fee218049bebe099baeeccec53d665be021916935029da4bad8b32d4b30b2c39e680472d6eb96929ad45653b2e42526d38abb3c0015daf65af57dc88f4bfe5a5e8aa2affaab58ef2acde8688e36c84198c0f0ed9a15be38ebd4cc56f517c427b318b4207667270b58a7b2e34ca771c61373b3349ee80558c98acbed86635c8929a3ada6ff9af61eeca712a8c11147ffeef18589879f428411274d4a4507e68afe797e0aa239e0aadbdf003869dcf3316352af2565ae973b72dc100d9f72dc647631270d1291646a10b7f4da91ad912eee67f904639192cfdab794a5007454b41df0cfc71572eca834b20010a136cc64eb2e1d52a2de80adfafa64419d4a60630dfc7c25005a354ca10d5e17d70657a0631e6add9f16942edd5113ca1f08d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "2 | Signers [2/16] : gwAc7t833n", - "2 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "2 | Signers [4/16] : TTnrpt1FGL", - "2 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "2 | Signers [6/16] : Kne3bJ43mG", - "2 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "2 | Signers [8/16] : D7VRS9LMoY", - "2 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "2 | Signers [10/16] : ZCXmnaH8gP", - "2 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "2 | Signers [12/16] : YPeF1UNokW", - "2 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "2 | Signers [14/16] : AL7VfCLnvc", - "2 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "2 | Signers [16/16] : 3WPxbBKmTQ", - "3 | Tip : POLYX 1234.56789" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signers [1/16] : 5CtDGr8UN9xEt1a1XV8FQDHbb5LvxzBgMtPubx", - "2 | Signers [2/16] : gwAc7t833n", - "2 | Signers [3/16] : 5CPMEmtgn5B9C7gtHqDTVPj4KpWcqynBrBFaAC", - "2 | Signers [4/16] : TTnrpt1FGL", - "2 | Signers [5/16] : 5DPuBQqeMdUwaouMB55msvd1SdAd8o4fcdewBK", - "2 | Signers [6/16] : Kne3bJ43mG", - "2 | Signers [7/16] : 5G3VDVsP8uUWXpnnWArVJMLsEaXW4CX474ANWE", - "2 | Signers [8/16] : D7VRS9LMoY", - "2 | Signers [9/16] : 5DstMAAzDvjAUUPJrZFAS9ZGixiQELK9trcUtM", - "2 | Signers [10/16] : ZCXmnaH8gP", - "2 | Signers [11/16] : 5HicDmxosFtdDsJHGrH4e4wYXjeBaxpSYeHqjS", - "2 | Signers [12/16] : YPeF1UNokW", - "2 | Signers [13/16] : 5E29HsEVXQ1SphANtLz1CZUWgmgCVhaGbveqW8", - "2 | Signers [14/16] : AL7VfCLnvc", - "2 | Signers [15/16] : 5GEK6iv79CGeGiTnStZgqjJrHQoXs2LanMFwwx", - "2 | Signers [16/16] : 3WPxbBKmTQ", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/18] : 5H4DwRv8Fd1gE5TxfvS7U59SV3mgtDw9F7XBg9", + "2 | Signers [2/18] : XmDn3DLu8f", + "2 | Signers [3/18] : 5G76VTqLnVQ68b3WUWLTiTRnL5eWx3Enc9AfQQ", + "2 | Signers [4/18] : 2BnUz2Aw5K", + "2 | Signers [5/18] : 5HpCs8fsD1cWbUUsrEmSEzDKFDJkocxXivE3Zp", + "2 | Signers [6/18] : QuSkZm6w72", + "2 | Signers [7/18] : 5GVu32hniJhrucPWBKQ9f6Hyupo6RfkWjW8HgC", + "2 | Signers [8/18] : y2Nij6NqMA", + "2 | Signers [9/18] : 5EA31SRBrg4diBczb4UhK3wS8t4PcJi1r1MLfW", + "2 | Signers [10/18] : YwQgVfEHnf", + "2 | Signers [11/18] : 5HGzAGAbUMAPF5gUY4frmqtj4HibXNWowbxogS", + "2 | Signers [12/18] : VWgVqUeG3G", + "2 | Signers [13/18] : 5H3gEbJHJg96AA3izt7c6HbEMd2gyANrSmoTjH", + "2 | Signers [14/18] : ok9peMuiCj", + "2 | Signers [15/18] : 5DymPJhQVQj395RKzRS9zckVhg334KDnuwXQC7", + "2 | Signers [16/18] : VzATui5tqG", + "2 | Signers [17/18] : 5EF5sxmkYZhaNjcMwQ6wiobxxX7adrqkCDRRC9", + "2 | Signers [18/18] : Y9UR8vktuk", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 465, "name": "Multisig_Remove_multisig_signers_via_admin", - "blob": "0f08b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f144463c08f04590a0e2ace87e2fc73fa1b149d3b7ffb3dfaf225ab09a4aff5c6232af02c4b6978da8c2ae4f3fc762feb555862e49d1087877957f8e214a81d6b588672be6a96af2c8bb9deb395af3c7448516d55fd09e9d8e34d6c523c82739220aad1418e035fe41e28dfa8a6c9056ba57df270ba53fb7e0eb6579077ec8dcb52fe163cf9b8cd30205d72f79b87aefd05b7cac85abd3884e36d6f9953ef2cdc65d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f08b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76118ecf99b5fd757fef03679836a585bd2051539a8f3691c148a6c755d758f61fd68c06982b56d1f4d45dadc1269dd7c7a207eac547199fbedfd4ad1ad691288a9049ee05329cac8339f8ca3f89b8ff44f59816f89be1788fca971be819a3989956f34ca74f14162c986e9f1db9157da07b26ef064127d684b02a8abda44682261481ee30569dfc9fb490287aa0aaa0989e9f10553d753d6be5cb459404abcc8b067c48e00f6d2120d046b0a2b5f62ffc1fd454c2ead2231e2bccec7103ecf4e685ad503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "2 | Signers [2/10] : f4XVq4foFk", - "2 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "2 | Signers [4/10] : Hthyd6KKTz", - "2 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "2 | Signers [6/10] : EUX7ioQd8k", - "2 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "2 | Signers [8/10] : AzK9t64p2J", - "2 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "2 | Signers [10/10] : 6hoNyHEyU9", - "3 | Tip : POLYX 55.555555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7" ], "output_expert": [ "0 | Multisig : Remove multisig signers via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signers [1/10] : 5DcNkDVG9b6zVdaixpetiYAX9dH7u6pzxhC1DD", - "2 | Signers [2/10] : f4XVq4foFk", - "2 | Signers [3/10] : 5D31DQCVruhpdLgiiJgcaV8sMno2rpHy657VtP", - "2 | Signers [4/10] : Hthyd6KKTz", - "2 | Signers [5/10] : 5F6zMpRuAvHLAz44fxVy37HjQR6H2mbf3sH3D2", - "2 | Signers [6/10] : EUX7ioQd8k", - "2 | Signers [7/10] : 5FvgAD9B5kZVWxgHM3BZTZ34q5uzBbv4yYvwjK", - "2 | Signers [8/10] : AzK9t64p2J", - "2 | Signers [9/10] : 5HordG73hvbDFVw7KXvvsow7xyQRvE43qVkHpR", - "2 | Signers [10/10] : 6hoNyHEyU9", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Signers [1/12] : 5HRRJjyyBjuRZbHpoXQ4J2UYTHy26v1dutj4n9", + "2 | Signers [2/12] : Zt6nBvLLUu", + "2 | Signers [3/12] : 5GQzPpPMgvdQpassLJkgXsswyrcnQR5UoA7mvi", + "2 | Signers [4/12] : Z72fmhaJ8q", + "2 | Signers [5/12] : 5Ff24WcsTfwdy96QMJoXq6i7jbFRdySdZDnFff", + "2 | Signers [6/12] : jnWufFh451", + "2 | Signers [7/12] : 5DFvVLbFF8T4ifEwzdon1E5vQnYtHhRUe7HKxq", + "2 | Signers [8/12] : jvHdz2SLkN", + "2 | Signers [9/12] : 5CmCjUJ9xGgeRJLbtzdZQWqn1gsgwGasgWsDMz", + "2 | Signers [10/12] : tt1LYjQB1y", + "2 | Signers [11/12] : 5GWRRgyRigFZrJFemSt9UzY5efQRhosnHXKQHF", + "2 | Signers [12/12] : 17pMqbRgj7", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 466, "name": "Multisig_Change_sigs_required", - "blob": "0f090100000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f090100000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required", "1 | Sigs required : 1", @@ -12325,480 +12411,480 @@ "0 | Multisig : Change sigs required", "1 | Sigs required : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 467, "name": "Multisig_Change_sigs_required", - "blob": "0f090000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f090000000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 0" + "1 | Sigs required : 0", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Change sigs required", "1 | Sigs required : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 468, "name": "Multisig_Change_sigs_required", - "blob": "0f096400000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f090100000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 100", - "2 | Tip : POLYX 1234.56789" + "1 | Sigs required : 1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 100", + "1 | Sigs required : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 469, "name": "Multisig_Change_sigs_required", - "blob": "0f092309000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f090000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Tip : POLYX 0.000987" + "1 | Sigs required : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", + "1 | Sigs required : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 470, "name": "Multisig_Change_sigs_required", - "blob": "0f096400000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f090100000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 100", - "2 | Tip : POLYX 0.000987" + "1 | Sigs required : 1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Change sigs required", - "1 | Sigs required : 100", + "1 | Sigs required : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 471, "name": "Multisig_Change_sigs_required_via_admin", - "blob": "0f0a30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e0000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0a6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300000000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Signatures required : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Signatures required : 0", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 472, "name": "Multisig_Change_sigs_required_via_admin", - "blob": "0f0aeeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f6400000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0ab4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f0100000000000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signatures required : 100", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Signatures required : 1", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Signatures required : 100", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Signatures required : 1", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 473, "name": "Multisig_Change_sigs_required_via_admin", - "blob": "0f0ab2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f6bc4000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0a6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300100000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signatures required : 50283", - "3 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Signatures required : 1", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Signatures required : 50283", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Signatures required : 1", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 474, "name": "Multisig_Change_sigs_required_via_admin", - "blob": "0f0a30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e0100000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0a6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8300100000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Signatures required : 1", - "3 | Tip : POLYX 1234.56789" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Signatures required : 1", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 475, "name": "Multisig_Change_sigs_required_via_admin", - "blob": "0f0a30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e6400000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0a6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8306bc4000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signatures required : 100" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Signatures required : 50283", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Change sigs required via admin", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Signatures required : 100", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Signatures required : 50283", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 476, "name": "Multisig_Add_admin", - "blob": "0f0b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 477, "name": "Multisig_Add_admin", - "blob": "0f0b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 478, "name": "Multisig_Add_admin", - "blob": "0f0b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 479, "name": "Multisig_Add_admin", - "blob": "0f0b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 5552342.355555" + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 480, "name": "Multisig_Add_admin", - "blob": "0f0b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Add admin", - "1 | Admin did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Admin did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Admin did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Admin did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 481, "name": "Multisig_Remove_admin_via_admin", - "blob": "0f0cec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0cb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM" ], "output_expert": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 482, "name": "Multisig_Remove_admin_via_admin", - "blob": "0f0c88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0cb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 483, "name": "Multisig_Remove_admin_via_admin", - "blob": "0f0c9a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0cb4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", - "2 | Tip : POLYX 5552342.355555" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 484, "name": "Multisig_Remove_admin_via_admin", - "blob": "0f0cb2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0c6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", - "2 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Multisig [2/2] : oDSmtZ2wNU", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 485, "name": "Multisig_Remove_admin_via_admin", - "blob": "0f0c88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0c94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", - "2 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Remove admin via admin", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 486, "name": "Multisig_Remove_payer", - "blob": "0f0dd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer", - "1 | Tip : POLYX 0.000987" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove payer", "1 | Chain : Polymesh", "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 487, "name": "Multisig_Remove_payer", - "blob": "0f0dd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0dd503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer", "1 | Tip : POLYX 1234.56789" @@ -12806,685 +12892,691 @@ "output_expert": [ "0 | Multisig : Remove payer", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 100", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 488, "name": "Multisig_Remove_payer", - "blob": "0f0dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer", - "1 | Tip : POLYX 1234.56789" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove payer", "1 | Chain : Polymesh", "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 489, "name": "Multisig_Remove_payer", - "blob": "0f0dd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0dd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Multisig : Remove payer" + "0 | Multisig : Remove payer", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove payer", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 490, "name": "Multisig_Remove_payer", - "blob": "0f0dd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0dd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Multisig : Remove payer" + "0 | Multisig : Remove payer", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Remove payer", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 2339", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 491, "name": "Multisig_Remove_payer_via_payer", - "blob": "0f0e30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0e6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL" + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Multisig [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 492, "name": "Multisig_Remove_payer_via_payer", - "blob": "0f0e88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0eb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Multisig [2/2] : giQysSa189", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 493, "name": "Multisig_Remove_payer_via_payer", - "blob": "0f0e9a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0e94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S" + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 494, "name": "Multisig_Remove_payer_via_payer", - "blob": "0f0e30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0eb4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 495, "name": "Multisig_Remove_payer_via_payer", - "blob": "0f0e30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0eb4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Remove payer via payer", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 496, "name": "Multisig_Approve_join_identity", - "blob": "0f0f30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e2309000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0f94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb326bc4000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Auth id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Auth id : 50283", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Multisig [2/2] : 21jTx7FmVL", - "2 | Auth id : 2339", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", + "2 | Auth id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 497, "name": "Multisig_Approve_join_identity", - "blob": "0f0f9a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda560107490000000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0f94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb320000000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Auth id : 0", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Multisig [2/2] : WSoxS5U55S", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Auth id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 498, "name": "Multisig_Approve_join_identity", - "blob": "0f0fec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f397596bc4000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0f94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb326bc4000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Auth id : 50283", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", + "1 | Multisig [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Multisig [2/2] : MUoEsZrND5", "2 | Auth id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 499, "name": "Multisig_Approve_join_identity", - "blob": "0f0fec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f397596400000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0fb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7612309000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Auth id : 100", - "3 | Tip : POLYX 5552342.355555" + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Auth id : 2339" ], "output_expert": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Multisig [2/2] : eVpueLTi3R", - "2 | Auth id : 100", + "1 | Multisig [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Multisig [2/2] : 1hw5BtHfxM", + "2 | Auth id : 2339", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 500, "name": "Multisig_Approve_join_identity", - "blob": "0f0feeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f6400000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f0fb4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f0000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Auth id : 100", - "3 | Tip : POLYX 0.000987" + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Auth id : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Approve join identity", - "1 | Multisig [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Multisig [2/2] : Zf9wr3U3rh", - "2 | Auth id : 100", + "1 | Multisig [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Multisig [2/2] : S2eWQeEoGM", + "2 | Auth id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 501, "name": "Multisig_Join_identity", - "blob": "0f100000000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f106400000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Join identity", - "1 | Auth id : 0", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 100" ], "output_expert": [ "0 | Multisig : Join identity", - "1 | Auth id : 0", + "1 | Auth id : 100", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 502, "name": "Multisig_Join_identity", - "blob": "0f106bc4000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f106bc4000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Join identity", "1 | Auth id : 50283", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Join identity", "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 503, "name": "Multisig_Join_identity", - "blob": "0f106400000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f106bc4000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Join identity", - "1 | Auth id : 100", - "2 | Tip : POLYX 1234.56789" + "1 | Auth id : 50283", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Join identity", - "1 | Auth id : 100", + "1 | Auth id : 50283", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 504, "name": "Multisig_Join_identity", - "blob": "0f100000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f106bc4000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Join identity", - "1 | Auth id : 0", - "2 | Tip : POLYX 0.000987" + "1 | Auth id : 50283", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Multisig : Join identity", - "1 | Auth id : 0", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 505, "name": "Multisig_Join_identity", - "blob": "0f106bc4000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "0f100000000000000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Multisig : Join identity", - "1 | Auth id : 50283", + "1 | Auth id : 0", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Join identity", - "1 | Auth id : 50283", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 506, "name": "Staking_Bond", - "blob": "110004efc69eb57bee12ce817edd57c3a641cdd2d9db9f0b63ce64c10c0501d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1100001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca003d202964900d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Controller [2/2] : 9f", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee : Stash" + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", + "3 | Payee : Staked", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Controller [2/2] : 9f", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee : Stash", + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", + "3 | Payee : Staked", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 507, "name": "Staking_Bond", - "blob": "11000280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba96d0f00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11000280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2e8ed73e0d02d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.000987", - "3 | Payee : Staked", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.000987", - "3 | Payee : Staked", + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 508, "name": "Staking_Bond", - "blob": "11000280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba98ed73e0d02d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11000280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2e0b63ce64c10c0502d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 55.555555", + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 5552342.355555", "3 | Payee : Controller", - "4 | Tip : POLYX 55.555555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 55.555555", + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 5552342.355555", "3 | Payee : Controller", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 509, "name": "Staking_Bond", - "blob": "11000329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f00032ac51b302ed1508810b3be6c34485f4754ab93c79685012bf6bc114209713dc4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1100001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca033158139ae28a3dfaac5fe1560a5e9e05c00d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 0.0", - "3 | Payee [1/2] : 5D2nRNoYoAbddS7nRed4dYvzzoEkJJDJQVaqAZ", - "3 | Payee [2/2] : riPtqM1naT", - "4 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Payee : Staked" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 0.0", - "3 | Payee [1/2] : 5D2nRNoYoAbddS7nRed4dYvzzoEkJJDJQVaqAZ", - "3 | Payee [2/2] : riPtqM1naT", + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Payee : Staked", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 510, "name": "Staking_Bond", - "blob": "110004efc69eb57bee12ce817edd57c3a641cdd2d9db9f33158139ae28a3dfaac5fe1560a5e9e05c02d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1100001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca003d202964902d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond", - "1 | Controller [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Controller [2/2] : 9f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee : Controller" + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", + "3 | Payee : Controller", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Bond", - "1 | Controller [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Controller [2/2] : 9f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", + "1 | Controller [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Controller [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", "3 | Payee : Controller", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 511, "name": "Staking_Bond_extra", - "blob": "11010b63ce64c10c05d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11016d0fd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", - "2 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 512, "name": "Staking_Bond_extra", - "blob": "110100d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110100d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond extra", "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Bond extra", "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 513, "name": "Staking_Bond_extra", - "blob": "11010b63ce64c10c05d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11016d0fd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 514, "name": "Staking_Bond_extra", - "blob": "11016d0fd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11010b63ce64c10c05d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.000987", - "2 | Tip : POLYX 1234.56789" + "1 | Amount : POLYX 5552342.355555", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.000987", + "1 | Amount : POLYX 5552342.355555", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 515, "name": "Staking_Bond_extra", - "blob": "11010b63ce64c10c05d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11018ed73e0dd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 55.555555", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 55.555555", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 516, "name": "Staking_Unbond", - "blob": "110233158139ae28a3dfaac5fe1560a5e9e05cd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11026d0fd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Unbond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 0.000987", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 517, "name": "Staking_Unbond", - "blob": "110233158139ae28a3dfaac5fe1560a5e9e05cd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110233158139ae28a3dfaac5fe1560a5e9e05cd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Unbond", "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", @@ -13496,453 +13588,469 @@ "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", "1 | Amount [2/2] : 3.456789", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 518, "name": "Staking_Unbond", - "blob": "110203d2029649d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11026d0fd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", + "1 | Amount : POLYX 0.000987", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 519, "name": "Staking_Unbond", - "blob": "110200d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11026d0fd503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0" + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 520, "name": "Staking_Unbond", - "blob": "110200d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110203d2029649d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 5552342.355555" + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 521, "name": "Staking_Withdraw_Unbonded", - "blob": "110334300000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1103f7010000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 0.000987" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 12340", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 522, "name": "Staking_Withdraw_Unbonded", - "blob": "11039d1c0000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1103f7010000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Withdraw Unbonded" + "0 | Staking : Withdraw Unbonded", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 7325", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 523, "name": "Staking_Withdraw_Unbonded", - "blob": "110300000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110300000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", "1 | Num slashing spans : 0", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 524, "name": "Staking_Withdraw_Unbonded", - "blob": "11039d1c0000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1103f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Withdraw Unbonded" + "0 | Staking : Withdraw Unbonded", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 7325", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 525, "name": "Staking_Withdraw_Unbonded", - "blob": "1103d3040000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1103f7010000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 1235", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 526, "name": "Staking_Validate", - "blob": "1104ea29ce0200d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110426d10b0000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate", - "1 | Prefs : 1.1766394%", - "2 | Tip : POLYX 55.555555" + "1 | Prefs : 0.0193609%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs : 1.1766394%", + "1 | Prefs : 0.0193609%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 527, "name": "Staking_Validate", - "blob": "1104ea29ce0200d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1104e2deb20100d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate", - "1 | Prefs : 1.1766394%", - "2 | Tip : POLYX 0.000987" + "1 | Prefs : 0.7124920%", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs : 1.1766394%", + "1 | Prefs : 0.7124920%", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 528, "name": "Staking_Validate", - "blob": "1104c400d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1104c631330200d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate", - "1 | Prefs : 0.0000049%" + "1 | Prefs : 0.9227377%", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs : 0.0000049%", + "1 | Prefs : 0.9227377%", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 529, "name": "Staking_Validate", - "blob": "1104b2e902af00d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1104e2deb20100d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate", - "1 | Prefs : 73.4050924%", - "2 | Tip : POLYX 0.000987" + "1 | Prefs : 0.7124920%", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs : 73.4050924%", + "1 | Prefs : 0.7124920%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 530, "name": "Staking_Validate", - "blob": "1104118500d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1104c631330200d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate", - "1 | Prefs : 0.0008516%", - "2 | Tip : POLYX 5552342.355555" + "1 | Prefs : 0.9227377%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Validate", - "1 | Prefs : 0.0008516%", + "1 | Prefs : 0.9227377%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 531, "name": "Staking_Nominate", - "blob": "11051000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11051000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", - "2 | Tip : POLYX 1234.56789" + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 532, "name": "Staking_Nominate", - "blob": "11051000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11051000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", - "2 | Tip : POLYX 1234.56789" + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 533, "name": "Staking_Nominate", - "blob": "11051000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11051000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", - "2 | Tip : POLYX 55.555555" + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 534, "name": "Staking_Nominate", - "blob": "11051000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11051000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", - "2 | Tip : POLYX 0.000987" + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 535, "name": "Staking_Nominate", - "blob": "11051000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11051000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", - "2 | Tip : POLYX 1234.56789" + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Nominate", - "1 | Targets [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Targets [2/8] : 3xMwxZ6kZz", - "1 | Targets [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Targets [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Targets [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Targets [6/8] : 390195a6c103d82a38f07674a0", - "1 | Targets [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Targets [8/8] : ef", + "1 | Targets [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Targets [2/8] : 9JxNkHETy6", + "1 | Targets [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Targets [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Targets [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Targets [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Targets [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Targets [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 536, "name": "Staking_Chill", - "blob": "1106d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1106d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill", "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -13956,14 +14064,14 @@ "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 537, "name": "Staking_Chill", - "blob": "1106d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1106d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill", "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -13972,36 +14080,38 @@ "output_expert": [ "0 | Staking : Chill", "1 | Chain : Polymesh", - "2 | Nonce : 100", + "2 | Nonce : 2339", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 538, "name": "Staking_Chill", - "blob": "1106d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1106d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Chill" + "0 | Staking : Chill", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 100", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 539, "name": "Staking_Chill", - "blob": "1106d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1106d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill", "1 | Tip : POLYX 55.555555" @@ -14009,482 +14119,480 @@ "output_expert": [ "0 | Staking : Chill", "1 | Chain : Polymesh", - "2 | Nonce : 1", + "2 | Nonce : 2339", "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 540, "name": "Staking_Chill", - "blob": "1106d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1106d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 0.000987" + "0 | Staking : Chill" ], "output_expert": [ "0 | Staking : Chill", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 541, "name": "Staking_Set_payee", - "blob": "110700d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110701d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set payee", - "1 | Payee : Staked", - "2 | Tip : POLYX 55.555555" + "1 | Payee : Stash", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Staked", + "1 | Payee : Stash", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 542, "name": "Staking_Set_payee", - "blob": "110700d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110702d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set payee", - "1 | Payee : Staked", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Payee : Controller", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Staked", + "1 | Payee : Controller", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 543, "name": "Staking_Set_payee", - "blob": "110700d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110701d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set payee", - "1 | Payee : Staked" + "1 | Payee : Stash", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Staked", + "1 | Payee : Stash", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 544, "name": "Staking_Set_payee", - "blob": "110702d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110702d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set payee", "1 | Payee : Controller", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set payee", "1 | Payee : Controller", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 545, "name": "Staking_Set_payee", - "blob": "110702d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110701d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set payee", - "1 | Payee : Controller" + "1 | Payee : Stash", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set payee", - "1 | Payee : Controller", + "1 | Payee : Stash", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 546, "name": "Staking_Set_controller", - "blob": "11080280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba9d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1108047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 547, "name": "Staking_Set_controller", - "blob": "11080329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2fd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11080280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2ed503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 548, "name": "Staking_Set_controller", - "blob": "11080329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2fd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11080280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2ed5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Controller [2/2] : dbabaa53bd6c4e9adf10d51d2f", + "1 | Controller [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Controller [2/2] : 2b0a1a9a9ca8fef7981d783f2e", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 549, "name": "Staking_Set_controller", - "blob": "11080280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba9d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1108047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Controller [2/2] : 9fc5400e7ba73b697846a80ba9", + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 550, "name": "Staking_Set_controller", - "blob": "110800f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a7978d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1108047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf2d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Controller [2/2] : fWpNQcigCk" + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set controller", - "1 | Controller [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Controller [2/2] : fWpNQcigCk", + "1 | Controller [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Controller [2/2] : f2", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 551, "name": "Staking_Set_validator_count", - "blob": "1109d53fd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110911fed5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set validator count", - "1 | New : 4085" + "1 | New : 16260", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 4085", + "1 | New : 16260", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 552, "name": "Staking_Set_validator_count", - "blob": "110960d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110911fed503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set validator count", - "1 | New : 24" + "1 | New : 16260", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 24", + "1 | New : 16260", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 553, "name": "Staking_Set_validator_count", - "blob": "110950d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11093cd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set validator count", - "1 | New : 20", - "2 | Tip : POLYX 1234.56789" + "1 | New : 15", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 20", + "1 | New : 15", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 554, "name": "Staking_Set_validator_count", - "blob": "110960d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11090cd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set validator count", - "1 | New : 24", - "2 | Tip : POLYX 1234.56789" + "1 | New : 3", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 24", + "1 | New : 3", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 555, "name": "Staking_Set_validator_count", - "blob": "110950d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110928d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set validator count", - "1 | New : 20", - "2 | Tip : POLYX 1234.56789" + "1 | New : 10" ], "output_expert": [ "0 | Staking : Set validator count", - "1 | New : 20", + "1 | New : 10", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 556, "name": "Staking_Increase_validator_count", - "blob": "110a6d94d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110a3cd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 9499", - "2 | Tip : POLYX 1234.56789" + "1 | Additional : 15", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 9499", + "1 | Additional : 15", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 557, "name": "Staking_Increase_validator_count", - "blob": "110ad53fd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110a11fed5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 4085" + "1 | Additional : 16260", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 4085", + "1 | Additional : 16260", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 558, "name": "Staking_Increase_validator_count", - "blob": "110a50d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110a0cd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 20", - "2 | Tip : POLYX 55.555555" + "1 | Additional : 3", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 20", + "1 | Additional : 3", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 559, "name": "Staking_Increase_validator_count", - "blob": "110a50d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110a0cd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 20", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Additional : 3" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 20", + "1 | Additional : 3", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 560, "name": "Staking_Increase_validator_count", - "blob": "110a60d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110a11fed503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Increase validator count", - "1 | Additional : 24", - "2 | Tip : POLYX 5552342.355555" + "1 | Additional : 16260", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Increase validator count", - "1 | Additional : 24", + "1 | Additional : 16260", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 561, "name": "Staking_Scale_validator_count", - "blob": "110b00d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110b00d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Tip : POLYX 55.555555" + "1 | Factor : 0%" ], "output_expert": [ "0 | Staking : Scale validator count", "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 562, "name": "Staking_Scale_validator_count", - "blob": "110b00d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110b00d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Scale validator count", "1 | Factor : 0%" @@ -14493,80 +14601,78 @@ "0 | Staking : Scale validator count", "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 563, "name": "Staking_Scale_validator_count", - "blob": "110b00d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110b00d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Tip : POLYX 55.555555" + "1 | Factor : 0%" ], "output_expert": [ "0 | Staking : Scale validator count", "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 564, "name": "Staking_Scale_validator_count", - "blob": "110b64d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110b64d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 55.555555" + "1 | Factor : 100%" ], "output_expert": [ "0 | Staking : Scale validator count", "1 | Factor : 100%", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 565, "name": "Staking_Scale_validator_count", - "blob": "110b00d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110b00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Scale validator count", "1 | Factor : 0%", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Scale validator count", "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 566, "name": "Staking_Force_no_eras", - "blob": "110cd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110cd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force no eras", "1 | Tip : POLYX 0.000987" @@ -14574,39 +14680,35 @@ "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Polymesh", - "2 | Nonce : 0", + "2 | Nonce : 50283", "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 567, "name": "Staking_Force_no_eras", - "blob": "110cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110cd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force no eras", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Staking : Force no eras" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 568, "name": "Staking_Force_no_eras", - "blob": "110cd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110cd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force no eras", "1 | Tip : POLYX 0.000987" @@ -14614,18 +14716,18 @@ "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Polymesh", - "2 | Nonce : 100", + "2 | Nonce : 0", "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 569, "name": "Staking_Force_no_eras", - "blob": "110cd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110cd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force no eras", "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", @@ -14639,107 +14741,109 @@ "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 570, "name": "Staking_Force_no_eras", - "blob": "110cd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110cd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force no eras", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Staking : Force no eras" ], "output_expert": [ "0 | Staking : Force no eras", "1 | Chain : Polymesh", "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 571, "name": "Staking_Force_new_era", - "blob": "110dd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 572, "name": "Staking_Force_new_era", - "blob": "110dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110dd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 1", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 573, "name": "Staking_Force_new_era", - "blob": "110dd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110dd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force new era" + "0 | Staking : Force new era", + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Polymesh", "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 574, "name": "Staking_Force_new_era", - "blob": "110dd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110dd503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force new era" + "0 | Staking : Force new era", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Force new era", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 1", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 575, "name": "Staking_Force_new_era", - "blob": "110dd503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110dd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era", "1 | Tip : POLYX 0.000987" @@ -14751,463 +14855,419 @@ "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 576, "name": "Staking_Set_invulnerables", - "blob": "110e086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110e10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Invulnerables [2/4] : K6MpSXt3iY", - "1 | Invulnerables [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Invulnerables [4/4] : G6cuGg7X9G", - "2 | Tip : POLYX 5552342.355555" + "1 | Invulnerables [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Invulnerables [2/8] : 4WsdVZdTEZ", + "1 | Invulnerables [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Invulnerables [4/8] : ZKWhXp3DFM", + "1 | Invulnerables [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Invulnerables [6/8] : TXFeuVBVFn", + "1 | Invulnerables [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Invulnerables [8/8] : kuNGAaBgwB", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Invulnerables [2/4] : K6MpSXt3iY", - "1 | Invulnerables [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Invulnerables [4/4] : G6cuGg7X9G", + "1 | Invulnerables [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Invulnerables [2/8] : 4WsdVZdTEZ", + "1 | Invulnerables [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Invulnerables [4/8] : ZKWhXp3DFM", + "1 | Invulnerables [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Invulnerables [6/8] : TXFeuVBVFn", + "1 | Invulnerables [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Invulnerables [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 577, "name": "Staking_Set_invulnerables", - "blob": "110e20dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110e1410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS" + "1 | Invulnerables [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Invulnerables [2/10] : mAQmPAv3py", + "1 | Invulnerables [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Invulnerables [4/10] : 4nPV7SRNhS", + "1 | Invulnerables [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Invulnerables [6/10] : M8PtP3suCY", + "1 | Invulnerables [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Invulnerables [8/10] : ZCZxbsVkJF", + "1 | Invulnerables [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Invulnerables [10/10] : AsDCZcNZ6q" ], "output_expert": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS", + "1 | Invulnerables [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Invulnerables [2/10] : mAQmPAv3py", + "1 | Invulnerables [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Invulnerables [4/10] : 4nPV7SRNhS", + "1 | Invulnerables [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Invulnerables [6/10] : M8PtP3suCY", + "1 | Invulnerables [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Invulnerables [8/10] : ZCZxbsVkJF", + "1 | Invulnerables [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Invulnerables [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 578, "name": "Staking_Set_invulnerables", - "blob": "110e20dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110e0454abf7040d58ad96f8ad5b94b995956f1bd943109482d3a907143b727c54f017d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Invulnerables [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "1 | Invulnerables [2/2] : wvDqA2yuhw", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS", + "1 | Invulnerables [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "1 | Invulnerables [2/2] : wvDqA2yuhw", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 579, "name": "Staking_Set_invulnerables", - "blob": "110e086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110e1410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Invulnerables [2/4] : K6MpSXt3iY", - "1 | Invulnerables [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Invulnerables [4/4] : G6cuGg7X9G", + "1 | Invulnerables [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Invulnerables [2/10] : mAQmPAv3py", + "1 | Invulnerables [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Invulnerables [4/10] : 4nPV7SRNhS", + "1 | Invulnerables [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Invulnerables [6/10] : M8PtP3suCY", + "1 | Invulnerables [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Invulnerables [8/10] : ZCZxbsVkJF", + "1 | Invulnerables [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Invulnerables [10/10] : AsDCZcNZ6q", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Invulnerables [2/4] : K6MpSXt3iY", - "1 | Invulnerables [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Invulnerables [4/4] : G6cuGg7X9G", + "1 | Invulnerables [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Invulnerables [2/10] : mAQmPAv3py", + "1 | Invulnerables [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Invulnerables [4/10] : 4nPV7SRNhS", + "1 | Invulnerables [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Invulnerables [6/10] : M8PtP3suCY", + "1 | Invulnerables [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Invulnerables [8/10] : ZCZxbsVkJF", + "1 | Invulnerables [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Invulnerables [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 580, "name": "Staking_Set_invulnerables", - "blob": "110e20dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110e10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS", - "2 | Tip : POLYX 55.555555" + "1 | Invulnerables [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Invulnerables [2/8] : 4WsdVZdTEZ", + "1 | Invulnerables [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Invulnerables [4/8] : ZKWhXp3DFM", + "1 | Invulnerables [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Invulnerables [6/8] : TXFeuVBVFn", + "1 | Invulnerables [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Invulnerables [8/8] : kuNGAaBgwB" ], "output_expert": [ "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Invulnerables [2/16] : 8vjy5sVa9B", - "1 | Invulnerables [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Invulnerables [4/16] : z9mBZSgDsc", - "1 | Invulnerables [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Invulnerables [6/16] : kCwkrpqs9Q", - "1 | Invulnerables [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Invulnerables [8/16] : 35oBi2h5Bv", - "1 | Invulnerables [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Invulnerables [10/16] : XhgjBF2tmK", - "1 | Invulnerables [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Invulnerables [12/16] : 3yNjHoshVs", - "1 | Invulnerables [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Invulnerables [14/16] : 5SHQC1xWWu", - "1 | Invulnerables [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Invulnerables [16/16] : ewdGCNYSkS", + "1 | Invulnerables [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Invulnerables [2/8] : 4WsdVZdTEZ", + "1 | Invulnerables [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Invulnerables [4/8] : ZKWhXp3DFM", + "1 | Invulnerables [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Invulnerables [6/8] : TXFeuVBVFn", + "1 | Invulnerables [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Invulnerables [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 581, "name": "Staking_Force_unstake", - "blob": "110fec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110fb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d76134300000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", - "2 | Num slashing spans : 503", + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM", + "2 | Num slashing spans : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 582, "name": "Staking_Force_unstake", - "blob": "110f88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b36734300000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110f6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac83000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", + "1 | Stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Stash [2/2] : Ue5Ex9ptDp", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Stash [2/2] : Ue5Ex9ptDp", + "2 | Num slashing spans : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 583, "name": "Staking_Force_unstake", - "blob": "110fec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f397599d1c0000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110f94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d3040000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", - "2 | Num slashing spans : 7325", + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Num slashing spans : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 584, "name": "Staking_Force_unstake", - "blob": "110f30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e34300000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110fb0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7619d1c0000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", - "2 | Tip : POLYX 0.000987" + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", - "2 | Num slashing spans : 12340", + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM", + "2 | Num slashing spans : 7325", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 585, "name": "Staking_Force_unstake", - "blob": "110f30a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed3040000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "110f94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d3040000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", - "2 | Tip : POLYX 1234.56789" + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force unstake", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", "2 | Num slashing spans : 1235", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 586, "name": "Staking_Force_new_era_always", - "blob": "1110d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1110d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era always", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Polymesh", "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 587, "name": "Staking_Force_new_era_always", - "blob": "1110d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1110d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force new era always" + "0 | Staking : Force new era always", + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Polymesh", "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 588, "name": "Staking_Force_new_era_always", - "blob": "1110d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1110d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 5552342.355555" + "0 | Staking : Force new era always" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 589, "name": "Staking_Force_new_era_always", - "blob": "1110d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1110d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era always" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Polymesh", - "2 | Nonce : 0", + "2 | Nonce : 100", "3 | Era Phase : 61", "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 590, "name": "Staking_Force_new_era_always", - "blob": "1110d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1110d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force new era always", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Force new era always", "1 | Chain : Polymesh", "2 | Nonce : 100", - "3 | Tip : POLYX 5552342.355555", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 591, "name": "Staking_Cancel_deferred_slash", - "blob": "111100000000100d0000000c0000001300000023000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1111f701000010200000000b000000200000000b000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Tip : POLYX 1234.56789" + "1 | Era : 503", + "2 | Slash indices [1/4] : 32", + "2 | Slash indices [2/4] : 11", + "2 | Slash indices [3/4] : 32", + "2 | Slash indices [4/4] : 11", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", + "1 | Era : 503", + "2 | Slash indices [1/4] : 32", + "2 | Slash indices [2/4] : 11", + "2 | Slash indices [3/4] : 32", + "2 | Slash indices [4/4] : 11", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 592, "name": "Staking_Cancel_deferred_slash", - "blob": "1111f701000010200000000b000000200000000b000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1111f701000010200000000b000000200000000b000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Cancel deferred slash", "1 | Era : 503", @@ -15215,7 +15275,7 @@ "2 | Slash indices [2/4] : 11", "2 | Slash indices [3/4] : 32", "2 | Slash indices [4/4] : 11", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Cancel deferred slash", @@ -15226,20 +15286,20 @@ "2 | Slash indices [4/4] : 11", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 593, "name": "Staking_Cancel_deferred_slash", - "blob": "1111f701000010200000000b000000200000000b000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11110000000010200000000b000000200000000b000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 503", + "1 | Era : 0", "2 | Slash indices [1/4] : 32", "2 | Slash indices [2/4] : 11", "2 | Slash indices [3/4] : 32", @@ -15247,2628 +15307,2618 @@ ], "output_expert": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 503", + "1 | Era : 0", "2 | Slash indices [1/4] : 32", "2 | Slash indices [2/4] : 11", "2 | Slash indices [3/4] : 32", "2 | Slash indices [4/4] : 11", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 594, "name": "Staking_Cancel_deferred_slash", - "blob": "11110000000010200000000b000000200000000b000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111134300000100d0000000c0000001300000023000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", + "1 | Era : 12340", + "2 | Slash indices [1/4] : 13", + "2 | Slash indices [2/4] : 12", + "2 | Slash indices [3/4] : 19", + "2 | Slash indices [4/4] : 35", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", + "1 | Era : 12340", + "2 | Slash indices [1/4] : 13", + "2 | Slash indices [2/4] : 12", + "2 | Slash indices [3/4] : 19", + "2 | Slash indices [4/4] : 35", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 595, "name": "Staking_Cancel_deferred_slash", - "blob": "11113430000010200000000b000000200000000b000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11119d1c0000100c000000290000003400000035000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 12340", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Tip : POLYX 5552342.355555" + "1 | Era : 7325", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Cancel deferred slash", - "1 | Era : 12340", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", + "1 | Era : 7325", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 596, "name": "Staking_Payout_stakers", - "blob": "1112ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f3975900000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11126e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d3040000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", - "2 | Era : 0", - "3 | Tip : POLYX 5552342.355555" + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Era : 1235", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", - "2 | Era : 0", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Era : 1235", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 597, "name": "Staking_Payout_stakers", - "blob": "1112b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f9d1c0000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3234300000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", - "2 | Era : 7325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Validator stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Validator stash [2/2] : MUoEsZrND5", + "2 | Era : 12340", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", - "2 | Era : 7325", + "1 | Validator stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Validator stash [2/2] : MUoEsZrND5", + "2 | Era : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 598, "name": "Staking_Payout_stakers", - "blob": "1112eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f34300000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1112b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f00000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", - "2 | Era : 12340", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", + "2 | Era : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", - "2 | Era : 12340", + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", + "2 | Era : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 599, "name": "Staking_Payout_stakers", - "blob": "111230a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e34300000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1112b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7619d1c0000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Validator stash [2/2] : 21jTx7FmVL", - "2 | Era : 12340", + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 7325", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Validator stash [2/2] : 21jTx7FmVL", - "2 | Era : 12340", + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 600, "name": "Staking_Payout_stakers", - "blob": "11129a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda5601074934300000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1112b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761f7010000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Validator stash [2/2] : WSoxS5U55S", - "2 | Era : 12340", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 503" ], "output_expert": [ "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Validator stash [2/2] : WSoxS5U55S", - "2 | Era : 12340", + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 503", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 601, "name": "Staking_Rebond", - "blob": "11136d0fd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111333158139ae28a3dfaac5fe1560a5e9e05cd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987", - "2 | Tip : POLYX 5552342.355555" + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 602, "name": "Staking_Rebond", - "blob": "11138ed73e0dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11130b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 1234.56789" + "1 | Amount : POLYX 5552342.355555", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", + "1 | Amount : POLYX 5552342.355555", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 603, "name": "Staking_Rebond", - "blob": "111300d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111303d2029649d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 1234.56789", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 604, "name": "Staking_Rebond", - "blob": "11138ed73e0dd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11130b63ce64c10c05d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555" + "1 | Amount : POLYX 5552342.355555", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", + "1 | Amount : POLYX 5552342.355555", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 605, "name": "Staking_Rebond", - "blob": "11138ed73e0dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111303d2029649d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 606, "name": "Staking_Reap_stash", - "blob": "1114b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f00000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111494c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb329d1c0000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Stash [2/2] : oDSmtZ2wNU", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Stash [2/2] : oDSmtZ2wNU", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Num slashing spans : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 607, "name": "Staking_Reap_stash", - "blob": "111430a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2e00000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111494c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", - "2 | Tip : POLYX 5552342.355555" + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Stash [2/2] : 21jTx7FmVL", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Stash [2/2] : MUoEsZrND5", + "2 | Num slashing spans : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 608, "name": "Staking_Reap_stash", - "blob": "111488bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b36700000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1114b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Stash [2/2] : 1hw5BtHfxM", + "2 | Num slashing spans : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 609, "name": "Staking_Reap_stash", - "blob": "1114ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f3975900000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1114b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7ff7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", - "2 | Tip : POLYX 5552342.355555" + "1 | Stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Stash [2/2] : S2eWQeEoGM", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Stash [2/2] : eVpueLTi3R", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Stash [2/2] : S2eWQeEoGM", + "2 | Num slashing spans : 503", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 610, "name": "Staking_Reap_stash", - "blob": "111488bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b36700000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1114b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f9d1c0000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", + "1 | Stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Stash [2/2] : S2eWQeEoGM", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Reap stash", - "1 | Stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Stash [2/2] : giQysSa189", - "2 | Num slashing spans : 0", + "1 | Stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Stash [2/2] : S2eWQeEoGM", + "2 | Num slashing spans : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 611, "name": "Staking_Kick", - "blob": "11151000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11151000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 612, "name": "Staking_Kick", - "blob": "11151000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11151000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 613, "name": "Staking_Kick", - "blob": "11151000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11151000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 614, "name": "Staking_Kick", - "blob": "11151000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11151000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 615, "name": "Staking_Kick", - "blob": "11151000162acb1dc4f5be88592108af458fbf623a925c98faec042e6f86f24f1238cc650280adfb44e14e77e7e6381e5b9809302d7304f7359af9a7a8ba1cad09eaf95e4b1e03b8b642d8cfc0a68ec898e2f97ca9441901049c390195a6c103d82a38f07674a0049864927582cb73a66553480ae4782190484e61efd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11151000c1ab7032e47b744d3b1d6d31484a5da21fab18501476a7d55ef65d45c74ff7cf02808cc5870faf57915b8de8bd981672e6890a1d2f830ecbffbb1bb01df2acba405603d385b2491e977e85ea0030423a504ab4c620c19f0014b6d65e998dcf5a29fe4f04dfac7e134beb1f688b28171c6424d3c5df699c47d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef" + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Kick", - "1 | Who [1/8] : 5CZmd5mxkZKT6ayku5tEvK1FhjL76VUsQXZgCZ", - "1 | Who [2/8] : 3xMwxZ6kZz", - "1 | Who [3/8] : adfb44e14e77e7e6381e5b9809302d7304f735", - "1 | Who [4/8] : 9af9a7a8ba1cad09eaf95e4b1e", - "1 | Who [5/8] : b8b642d8cfc0a68ec898e2f97ca9441901049c", - "1 | Who [6/8] : 390195a6c103d82a38f07674a0", - "1 | Who [7/8] : 9864927582cb73a66553480ae4782190484e61", - "1 | Who [8/8] : ef", + "1 | Who [1/8] : 5GSe2W7v61JRUGqmXiUgHbScXyNnNQ8Z3CZ9yp", + "1 | Who [2/8] : 9JxNkHETy6", + "1 | Who [3/8] : 8cc5870faf57915b8de8bd981672e6890a1d2f", + "1 | Who [4/8] : 830ecbffbb1bb01df2acba4056", + "1 | Who [5/8] : d385b2491e977e85ea0030423a504ab4c620c1", + "1 | Who [6/8] : 9f0014b6d65e998dcf5a29fe4f", + "1 | Who [7/8] : dfac7e134beb1f688b28171c6424d3c5df699c", + "1 | Who [8/8] : 47", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 616, "name": "Staking_Set_staking_configs", - "blob": "11160116fbdd3bdd60e450d980dd4b344fcb660116fbdd3bdd60e450d980dd4b344fcb660192be262c0192be262c016801656ba8d2d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111601fd49cf4073ab37989d900b7a2750c1c401fd49cf4073ab37989d900b7a2750c1c4015b1cd153015b1cd153019e010bf86406d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", - "7 | Tip : POLYX 5552342.355555" + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%" ], "output_expert": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", "7 | Chain : Polymesh", "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 617, "name": "Staking_Set_staking_configs", - "blob": "11160116fbdd3bdd60e450d980dd4b344fcb660116fbdd3bdd60e450d980dd4b344fcb660192be262c0192be262c016801656ba8d2d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111601fd49cf4073ab37989d900b7a2750c1c401fd49cf4073ab37989d900b7a2750c1c4015b1cd153015b1cd153019e010bf86406d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 618, "name": "Staking_Set_staking_configs", - "blob": "11160116fbdd3bdd60e450d980dd4b344fcb660116fbdd3bdd60e450d980dd4b344fcb660192be262c0192be262c016801656ba8d2d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111601fd49cf4073ab37989d900b7a2750c1c401fd49cf4073ab37989d900b7a2750c1c4015b1cd153015b1cd153019e010bf86406d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", - "7 | Tip : POLYX 55.555555" + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", "7 | Chain : Polymesh", "8 | Nonce : 1", - "9 | Tip : POLYX 55.555555", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 619, "name": "Staking_Set_staking_configs", - "blob": "11160116fbdd3bdd60e450d980dd4b344fcb660116fbdd3bdd60e450d980dd4b344fcb660192be262c0192be262c016801656ba8d2d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111601fd49cf4073ab37989d900b7a2750c1c401fd49cf4073ab37989d900b7a2750c1c4015b1cd153015b1cd153019e010bf86406d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", - "7 | Tip : POLYX 0.000987" + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", + "8 | Nonce : 0", + "9 | Tip : POLYX 55.555555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 620, "name": "Staking_Set_staking_configs", - "blob": "11160116fbdd3bdd60e450d980dd4b344fcb660116fbdd3bdd60e450d980dd4b344fcb660192be262c0192be262c016801656ba8d2d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111601fd49cf4073ab37989d900b7a2750c1c401fd49cf4073ab37989d900b7a2750c1c4015b1cd153015b1cd153019e010bf86406d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%" ], "output_expert": [ "0 | Staking : Set staking configs", - "1 | Min nominator bond [1/2] : POLYX 13663689828604628508290693243312", - "1 | Min nominator bond [2/2] : 5.24367", - "2 | Min validator bond [1/2] : POLYX 13663689828604628508290693243312", - "2 | Min validator bond [2/2] : 5.24367", - "3 | Max nominator count : 740736658", - "4 | Max validator count : 740736658", - "5 | Chill threshold : 104%", - "6 | Min commission : 353.4252901%", + "1 | Min nominator bond [1/2] : POLYX 26153242618797851532149628757044", + "1 | Min nominator bond [2/2] : 0.440317", + "2 | Min validator bond [1/2] : POLYX 26153242618797851532149628757044", + "2 | Min validator bond [2/2] : 0.440317", + "3 | Max nominator count : 1406213211", + "4 | Max validator count : 1406213211", + "5 | Chill threshold : 158%", + "6 | Min commission : 10.7280395%", "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 0", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 621, "name": "Staking_Chill_other", - "blob": "11179a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1117b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Controller [2/2] : WSoxS5U55S" + "1 | Controller [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Controller [2/2] : 1hw5BtHfxM", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Controller [2/2] : WSoxS5U55S", + "1 | Controller [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Controller [2/2] : 1hw5BtHfxM", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 622, "name": "Staking_Chill_other", - "blob": "111730a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11176e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Controller [2/2] : 21jTx7FmVL", - "2 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Controller [2/2] : Ue5Ex9ptDp", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Controller [2/2] : 21jTx7FmVL", + "1 | Controller [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Controller [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 623, "name": "Staking_Chill_other", - "blob": "1117b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111794c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Controller [2/2] : oDSmtZ2wNU", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Controller [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Controller [2/2] : MUoEsZrND5" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Controller [2/2] : oDSmtZ2wNU", + "1 | Controller [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Controller [2/2] : MUoEsZrND5", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 624, "name": "Staking_Chill_other", - "blob": "1117eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924fd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1117b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Controller [2/2] : Zf9wr3U3rh", + "1 | Controller [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Controller [2/2] : S2eWQeEoGM", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Controller [2/2] : Zf9wr3U3rh", + "1 | Controller [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Controller [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 625, "name": "Staking_Chill_other", - "blob": "111730a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ed503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111794c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Controller [2/2] : 21jTx7FmVL", - "2 | Tip : POLYX 0.000987" + "1 | Controller [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Controller [2/2] : MUoEsZrND5", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Chill other", - "1 | Controller [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | Controller [2/2] : 21jTx7FmVL", + "1 | Controller [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Controller [2/2] : MUoEsZrND5", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 626, "name": "Staking_Force_apply_min_commission", - "blob": "111888bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11186e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Validator stash [2/2] : giQysSa189", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp" ], "output_expert": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Validator stash [2/2] : giQysSa189", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 627, "name": "Staking_Force_apply_min_commission", - "blob": "1118eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924fd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1118b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", - "2 | Tip : POLYX 1234.56789" + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 628, "name": "Staking_Force_apply_min_commission", - "blob": "1118eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924fd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11186e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 629, "name": "Staking_Force_apply_min_commission", - "blob": "1118b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11186e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", - "2 | Tip : POLYX 1234.56789" + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 630, "name": "Staking_Force_apply_min_commission", - "blob": "1118ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11186e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Force apply min commission", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 631, "name": "Staking_Set_min_commission", - "blob": "111941ccb33ed503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111905d0a455d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set min commission", - "1 | New : 105.1970625%", - "2 | Tip : POLYX 0.000987" + "1 | New : 143.6864517%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Set min commission", - "1 | New : 105.1970625%", + "1 | New : 143.6864517%", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 632, "name": "Staking_Set_min_commission", - "blob": "111947535566d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111905d0a455d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%", - "2 | Tip : POLYX 1234.56789" + "1 | New : 143.6864517%" ], "output_expert": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%", + "1 | New : 143.6864517%", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 633, "name": "Staking_Set_min_commission", - "blob": "111947535566d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111926ae3230d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | New : 80.8627750%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%", + "1 | New : 80.8627750%", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 634, "name": "Staking_Set_min_commission", - "blob": "111941ccb33ed503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111926ae3230d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set min commission", - "1 | New : 105.1970625%", - "2 | Tip : POLYX 1234.56789" + "1 | New : 80.8627750%", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Set min commission", - "1 | New : 105.1970625%", + "1 | New : 80.8627750%", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 635, "name": "Staking_Set_min_commission", - "blob": "111947535566d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111905d0a455d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%" + "1 | New : 143.6864517%", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Set min commission", - "1 | New : 171.6867911%", + "1 | New : 143.6864517%", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 636, "name": "Staking_Add_permissioned_validator", - "blob": "111a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4019d1c0000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b01f7010000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 7325", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 503", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 7325", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 503", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 637, "name": "Staking_Add_permissioned_validator", - "blob": "111a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40100000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b01f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 0" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 503", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 0", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 503", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 638, "name": "Staking_Add_permissioned_validator", - "blob": "111a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40100000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0100000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Intended count : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Intended count : 0", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 639, "name": "Staking_Add_permissioned_validator", - "blob": "111a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40100000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b019d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 0", - "3 | Tip : POLYX 1234.56789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 7325", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 0", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 640, "name": "Staking_Add_permissioned_validator", - "blob": "111a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4019d1c0000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b019d1c0000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Intended count : 7325" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Intended count : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Intended count : 7325", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 641, "name": "Staking_Remove_permissioned_validator", - "blob": "111b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 642, "name": "Staking_Remove_permissioned_validator", - "blob": "111b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 643, "name": "Staking_Remove_permissioned_validator", - "blob": "111b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 644, "name": "Staking_Remove_permissioned_validator", - "blob": "111b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 645, "name": "Staking_Remove_permissioned_validator", - "blob": "111b117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111b2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 646, "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "111c086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111c10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", + "1 | Targets [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Targets [2/8] : 4WsdVZdTEZ", + "1 | Targets [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Targets [4/8] : ZKWhXp3DFM", + "1 | Targets [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Targets [6/8] : TXFeuVBVFn", + "1 | Targets [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Targets [8/8] : kuNGAaBgwB", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", + "1 | Targets [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Targets [2/8] : 4WsdVZdTEZ", + "1 | Targets [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Targets [4/8] : ZKWhXp3DFM", + "1 | Targets [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Targets [6/8] : TXFeuVBVFn", + "1 | Targets [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Targets [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 647, "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "111c20dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111c10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Targets [2/16] : 8vjy5sVa9B", - "1 | Targets [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Targets [4/16] : z9mBZSgDsc", - "1 | Targets [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Targets [6/16] : kCwkrpqs9Q", - "1 | Targets [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Targets [8/16] : 35oBi2h5Bv", - "1 | Targets [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Targets [10/16] : XhgjBF2tmK", - "1 | Targets [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Targets [12/16] : 3yNjHoshVs", - "1 | Targets [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Targets [14/16] : 5SHQC1xWWu", - "1 | Targets [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Targets [16/16] : ewdGCNYSkS", - "2 | Tip : POLYX 1234.56789" + "1 | Targets [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Targets [2/8] : 4WsdVZdTEZ", + "1 | Targets [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Targets [4/8] : ZKWhXp3DFM", + "1 | Targets [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Targets [6/8] : TXFeuVBVFn", + "1 | Targets [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Targets [8/8] : kuNGAaBgwB", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Targets [2/16] : 8vjy5sVa9B", - "1 | Targets [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Targets [4/16] : z9mBZSgDsc", - "1 | Targets [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Targets [6/16] : kCwkrpqs9Q", - "1 | Targets [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Targets [8/16] : 35oBi2h5Bv", - "1 | Targets [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Targets [10/16] : XhgjBF2tmK", - "1 | Targets [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Targets [12/16] : 3yNjHoshVs", - "1 | Targets [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Targets [14/16] : 5SHQC1xWWu", - "1 | Targets [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Targets [16/16] : ewdGCNYSkS", + "1 | Targets [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "1 | Targets [2/8] : 4WsdVZdTEZ", + "1 | Targets [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "1 | Targets [4/8] : ZKWhXp3DFM", + "1 | Targets [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "1 | Targets [6/8] : TXFeuVBVFn", + "1 | Targets [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "1 | Targets [8/8] : kuNGAaBgwB", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 648, "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "111c086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111c2088bcbfd6c94243caca6504d1fceca29296b9bb978a1300d78b1b710779e5373baa203d0eaca754e2e51d0c488f0f634920f183ac842df7d25d4a337c9e6ca64e24165d680a5d16594cfb61ad235d7916352d551057ae7e5db4eddfb7a4632326f80cd689dcd4c3a616793317592907b39543059bfcf6d0ceb808ad43d5c14e38428827a36a273e2ee99415b00104ed739e1cf725495f1c1ed704b5f52b7768353664744c6e81c785fb5e88362229a67ed553748aeef52e329ff1a53238bb1452285c69b07070dad8ee63eeeedb47b0ed0f14781afde744ee18c5a1aebc584f12f6d71ec72270994e86c173511188c55fe4fa120495efa94a9656c475cda7013ad5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", - "2 | Tip : POLYX 5552342.355555" + "1 | Targets [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "1 | Targets [2/16] : NiMd9HmyXd", + "1 | Targets [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "1 | Targets [4/16] : UCxwGrXN6P", + "1 | Targets [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "1 | Targets [6/16] : kvj2xufBeK", + "1 | Targets [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "1 | Targets [8/16] : 9BKYhesLcQ", + "1 | Targets [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "1 | Targets [10/16] : TU5pBNhuU2", + "1 | Targets [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "1 | Targets [12/16] : 1MPbD4qJtM", + "1 | Targets [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "1 | Targets [14/16] : hvt9V8Zaza", + "1 | Targets [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "1 | Targets [16/16] : 6ERrr99DbT" ], "output_expert": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", + "1 | Targets [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "1 | Targets [2/16] : NiMd9HmyXd", + "1 | Targets [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "1 | Targets [4/16] : UCxwGrXN6P", + "1 | Targets [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "1 | Targets [6/16] : kvj2xufBeK", + "1 | Targets [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "1 | Targets [8/16] : 9BKYhesLcQ", + "1 | Targets [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "1 | Targets [10/16] : TU5pBNhuU2", + "1 | Targets [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "1 | Targets [12/16] : 1MPbD4qJtM", + "1 | Targets [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "1 | Targets [14/16] : hvt9V8Zaza", + "1 | Targets [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "1 | Targets [16/16] : 6ERrr99DbT", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 649, "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "111c20dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111c1410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Targets [2/16] : 8vjy5sVa9B", - "1 | Targets [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Targets [4/16] : z9mBZSgDsc", - "1 | Targets [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Targets [6/16] : kCwkrpqs9Q", - "1 | Targets [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Targets [8/16] : 35oBi2h5Bv", - "1 | Targets [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Targets [10/16] : XhgjBF2tmK", - "1 | Targets [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Targets [12/16] : 3yNjHoshVs", - "1 | Targets [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Targets [14/16] : 5SHQC1xWWu", - "1 | Targets [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Targets [16/16] : ewdGCNYSkS", - "2 | Tip : POLYX 0.000987" + "1 | Targets [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Targets [2/10] : mAQmPAv3py", + "1 | Targets [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Targets [4/10] : 4nPV7SRNhS", + "1 | Targets [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Targets [6/10] : M8PtP3suCY", + "1 | Targets [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Targets [8/10] : ZCZxbsVkJF", + "1 | Targets [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Targets [10/10] : AsDCZcNZ6q", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "1 | Targets [2/16] : 8vjy5sVa9B", - "1 | Targets [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "1 | Targets [4/16] : z9mBZSgDsc", - "1 | Targets [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "1 | Targets [6/16] : kCwkrpqs9Q", - "1 | Targets [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "1 | Targets [8/16] : 35oBi2h5Bv", - "1 | Targets [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "1 | Targets [10/16] : XhgjBF2tmK", - "1 | Targets [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "1 | Targets [12/16] : 3yNjHoshVs", - "1 | Targets [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "1 | Targets [14/16] : 5SHQC1xWWu", - "1 | Targets [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "1 | Targets [16/16] : ewdGCNYSkS", + "1 | Targets [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Targets [2/10] : mAQmPAv3py", + "1 | Targets [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Targets [4/10] : 4nPV7SRNhS", + "1 | Targets [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Targets [6/10] : M8PtP3suCY", + "1 | Targets [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Targets [8/10] : ZCZxbsVkJF", + "1 | Targets [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Targets [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 650, "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "111c086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111c1410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", + "1 | Targets [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Targets [2/10] : mAQmPAv3py", + "1 | Targets [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Targets [4/10] : 4nPV7SRNhS", + "1 | Targets [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Targets [6/10] : M8PtP3suCY", + "1 | Targets [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Targets [8/10] : ZCZxbsVkJF", + "1 | Targets [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Targets [10/10] : AsDCZcNZ6q", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "1 | Targets [2/4] : K6MpSXt3iY", - "1 | Targets [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "1 | Targets [4/4] : G6cuGg7X9G", + "1 | Targets [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "1 | Targets [2/10] : mAQmPAv3py", + "1 | Targets [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "1 | Targets [4/10] : 4nPV7SRNhS", + "1 | Targets [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "1 | Targets [6/10] : M8PtP3suCY", + "1 | Targets [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "1 | Targets [8/10] : ZCZxbsVkJF", + "1 | Targets [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "1 | Targets [10/10] : AsDCZcNZ6q", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 651, "name": "Staking_Payout_stakers_by_system", - "blob": "111dec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f3975900000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111d94c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32f7010000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", - "2 | Era : 0" + "1 | Validator stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Validator stash [2/2] : MUoEsZrND5", + "2 | Era : 503", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Validator stash [2/2] : eVpueLTi3R", - "2 | Era : 0", + "1 | Validator stash [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Validator stash [2/2] : MUoEsZrND5", + "2 | Era : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 652, "name": "Staking_Payout_stakers_by_system", - "blob": "111db2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f34300000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111d6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8309d1c0000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", - "2 | Era : 12340", - "3 | Tip : POLYX 0.000987" + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Era : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", - "2 | Era : 12340", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", + "2 | Era : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 653, "name": "Staking_Payout_stakers_by_system", - "blob": "111db2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111d6e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d3040000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Era : 1235", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | Validator stash [2/2] : oDSmtZ2wNU", + "1 | Validator stash [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Validator stash [2/2] : Ue5Ex9ptDp", "2 | Era : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 654, "name": "Staking_Payout_stakers_by_system", - "blob": "111deeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f00000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111db0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d7619d1c0000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", - "2 | Era : 0", + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 7325", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | Validator stash [2/2] : Zf9wr3U3rh", - "2 | Era : 0", + "1 | Validator stash [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | Validator stash [2/2] : 1hw5BtHfxM", + "2 | Era : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 655, "name": "Staking_Payout_stakers_by_system", - "blob": "111d88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d3040000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111db4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7ff7010000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Validator stash [2/2] : giQysSa189", - "2 | Era : 1235", - "3 | Tip : POLYX 5552342.355555" + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", + "2 | Era : 503", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Validator stash [2/2] : giQysSa189", - "2 | Era : 1235", + "1 | Validator stash [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Validator stash [2/2] : S2eWQeEoGM", + "2 | Era : 503", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 656, "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111e02d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Tip : POLYX 0.000987" + "1 | Slashing switch : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 657, "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111e02d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Tip : POLYX 5552342.355555" + "1 | Slashing switch : None" ], "output_expert": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 658, "name": "Staking_Change_slashing_allowed_for", - "blob": "111e01d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111e00d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator" + "1 | Slashing switch : Validator", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", + "1 | Slashing switch : Validator", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 659, "name": "Staking_Change_slashing_allowed_for", - "blob": "111e02d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111e02d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Change slashing allowed for", "1 | Slashing switch : None", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Change slashing allowed for", "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 660, "name": "Staking_Change_slashing_allowed_for", - "blob": "111e02d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111e01d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : None", + "1 | Slashing switch : ValidatorAndNominator", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : None", + "1 | Slashing switch : ValidatorAndNominator", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 661, "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d400000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111f2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34300000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 0", - "3 | Tip : POLYX 1234.56789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 12340", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 0", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 12340", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 662, "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d49d1c0000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111f2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd3040000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 7325" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 1235", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 7325", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 1235", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 663, "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d3040000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111f2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bf7010000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 1235", - "3 | Tip : POLYX 1234.56789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 503", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 1235", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 503", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 664, "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434300000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111f2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bf7010000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 12340" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 503", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 12340", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 665, "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4f7010000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "111f2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd3040000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 1235", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | New intended count : 503", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | New intended count : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 666, "name": "Staking_Chill_from_governance", - "blob": "1120117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d420dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11202910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b1410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a0859d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Stash keys [2/10] : mAQmPAv3py", + "2 | Stash keys [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Stash keys [4/10] : 4nPV7SRNhS", + "2 | Stash keys [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Stash keys [6/10] : M8PtP3suCY", + "2 | Stash keys [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Stash keys [8/10] : ZCZxbsVkJF", + "2 | Stash keys [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Stash keys [10/10] : AsDCZcNZ6q", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Stash keys [2/10] : mAQmPAv3py", + "2 | Stash keys [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Stash keys [4/10] : 4nPV7SRNhS", + "2 | Stash keys [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Stash keys [6/10] : M8PtP3suCY", + "2 | Stash keys [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Stash keys [8/10] : ZCZxbsVkJF", + "2 | Stash keys [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Stash keys [10/10] : AsDCZcNZ6q", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 667, "name": "Staking_Chill_from_governance", - "blob": "1120117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d420dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11202910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Stash keys [2/8] : 4WsdVZdTEZ", + "2 | Stash keys [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Stash keys [4/8] : ZKWhXp3DFM", + "2 | Stash keys [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Stash keys [6/8] : TXFeuVBVFn", + "2 | Stash keys [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Stash keys [8/8] : kuNGAaBgwB", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Stash keys [2/8] : 4WsdVZdTEZ", + "2 | Stash keys [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Stash keys [4/8] : ZKWhXp3DFM", + "2 | Stash keys [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Stash keys [6/8] : TXFeuVBVFn", + "2 | Stash keys [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Stash keys [8/8] : kuNGAaBgwB", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 668, "name": "Staking_Chill_from_governance", - "blob": "1120117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d420dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11202910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b10f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee77d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", - "3 | Tip : POLYX 5552342.355555" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Stash keys [2/8] : 4WsdVZdTEZ", + "2 | Stash keys [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Stash keys [4/8] : ZKWhXp3DFM", + "2 | Stash keys [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Stash keys [6/8] : TXFeuVBVFn", + "2 | Stash keys [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Stash keys [8/8] : kuNGAaBgwB", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Stash keys [2/8] : 4WsdVZdTEZ", + "2 | Stash keys [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Stash keys [4/8] : ZKWhXp3DFM", + "2 | Stash keys [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Stash keys [6/8] : TXFeuVBVFn", + "2 | Stash keys [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Stash keys [8/8] : kuNGAaBgwB", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 669, "name": "Staking_Chill_from_governance", - "blob": "1120117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a22d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11202910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b1402bb3771c852628ca659942b3c0ff44c07bd6e5dbedafe3238d8544f6cb6e24b002e69528447802e3c8a8b5bd4e597dccac7c2e63776415541698cdbef9b2d01f4f14cfc20369461223aa4664581c86dbcfe704c55e4a63fa9a0b310ce9449067a374c5e82645395a43210eb14272247d33e251dcf3dc71d1f9523f2bc0c970c182ba8837854781fbfa90881c16e42cb760df47c877686137fa1864bc3a9cf29d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Stash keys [2/4] : K6MpSXt3iY", - "2 | Stash keys [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Stash keys [4/4] : G6cuGg7X9G", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Stash keys [2/10] : 6FZYMDuRsY", + "2 | Stash keys [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Stash keys [4/10] : QiM4baG52j", + "2 | Stash keys [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Stash keys [6/10] : 5Skz3Q5wkP", + "2 | Stash keys [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Stash keys [8/10] : GFUWCfiVGf", + "2 | Stash keys [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Stash keys [10/10] : ydXR2RELm9", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Stash keys [2/4] : K6MpSXt3iY", - "2 | Stash keys [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Stash keys [4/4] : G6cuGg7X9G", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Stash keys [2/10] : 6FZYMDuRsY", + "2 | Stash keys [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Stash keys [4/10] : QiM4baG52j", + "2 | Stash keys [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Stash keys [6/10] : 5Skz3Q5wkP", + "2 | Stash keys [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Stash keys [8/10] : GFUWCfiVGf", + "2 | Stash keys [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Stash keys [10/10] : ydXR2RELm9", "3 | Chain : Polymesh", "4 | Nonce : 1", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 670, "name": "Staking_Chill_from_governance", - "blob": "1120117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d420dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc32d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "11202910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b2088bcbfd6c94243caca6504d1fceca29296b9bb978a1300d78b1b710779e5373baa203d0eaca754e2e51d0c488f0f634920f183ac842df7d25d4a337c9e6ca64e24165d680a5d16594cfb61ad235d7916352d551057ae7e5db4eddfb7a4632326f80cd689dcd4c3a616793317592907b39543059bfcf6d0ceb808ad43d5c14e38428827a36a273e2ee99415b00104ed739e1cf725495f1c1ed704b5f52b7768353664744c6e81c785fb5e88362229a67ed553748aeef52e329ff1a53238bb1452285c69b07070dad8ee63eeeedb47b0ed0f14781afde744ee18c5a1aebc584f12f6d71ec72270994e86c173511188c55fe4fa120495efa94a9656c475cda7013ad5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", - "3 | Tip : POLYX 55.555555" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Stash keys [2/16] : NiMd9HmyXd", + "2 | Stash keys [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Stash keys [4/16] : UCxwGrXN6P", + "2 | Stash keys [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Stash keys [6/16] : kvj2xufBeK", + "2 | Stash keys [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Stash keys [8/16] : 9BKYhesLcQ", + "2 | Stash keys [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Stash keys [10/16] : TU5pBNhuU2", + "2 | Stash keys [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Stash keys [12/16] : 1MPbD4qJtM", + "2 | Stash keys [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Stash keys [14/16] : hvt9V8Zaza", + "2 | Stash keys [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Stash keys [16/16] : 6ERrr99DbT", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Stash keys [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Stash keys [2/16] : 8vjy5sVa9B", - "2 | Stash keys [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Stash keys [4/16] : z9mBZSgDsc", - "2 | Stash keys [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Stash keys [6/16] : kCwkrpqs9Q", - "2 | Stash keys [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Stash keys [8/16] : 35oBi2h5Bv", - "2 | Stash keys [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Stash keys [10/16] : XhgjBF2tmK", - "2 | Stash keys [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Stash keys [12/16] : 3yNjHoshVs", - "2 | Stash keys [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Stash keys [14/16] : 5SHQC1xWWu", - "2 | Stash keys [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Stash keys [16/16] : ewdGCNYSkS", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Stash keys [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Stash keys [2/16] : NiMd9HmyXd", + "2 | Stash keys [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Stash keys [4/16] : UCxwGrXN6P", + "2 | Stash keys [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Stash keys [6/16] : kvj2xufBeK", + "2 | Stash keys [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Stash keys [8/16] : 9BKYhesLcQ", + "2 | Stash keys [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Stash keys [10/16] : TU5pBNhuU2", + "2 | Stash keys [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Stash keys [12/16] : 1MPbD4qJtM", + "2 | Stash keys [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Stash keys [14/16] : hvt9V8Zaza", + "2 | Stash keys [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Stash keys [16/16] : 6ERrr99DbT", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 671, "name": "Staking_Set_commission_cap", - "blob": "112141ccb33ed503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "112105d0a455d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%", - "2 | Tip : POLYX 5552342.355555" + "1 | New cap : 143.6864517%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%", + "1 | New cap : 143.6864517%", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 672, "name": "Staking_Set_commission_cap", - "blob": "112141ccb33ed503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "112105d0a455d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%" + "1 | New cap : 143.6864517%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%", + "1 | New cap : 143.6864517%", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 673, "name": "Staking_Set_commission_cap", - "blob": "112141ccb33ed503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "112126ae3230d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%", - "2 | Tip : POLYX 55.555555" + "1 | New cap : 80.8627750%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Staking : Set commission cap", - "1 | New cap : 105.1970625%", + "1 | New cap : 80.8627750%", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 674, "name": "Staking_Set_commission_cap", - "blob": "112147535566d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "112126ae3230d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set commission cap", - "1 | New cap : 171.6867911%" + "1 | New cap : 80.8627750%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Staking : Set commission cap", - "1 | New cap : 171.6867911%", + "1 | New cap : 80.8627750%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 675, "name": "Staking_Set_commission_cap", - "blob": "112147535566d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "112126ae3230d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Staking : Set commission cap", - "1 | New cap : 171.6867911%", + "1 | New cap : 80.8627750%", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Staking : Set commission cap", - "1 | New cap : 171.6867911%", + "1 | New cap : 80.8627750%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 676, "name": "Session_Set_keys", - "blob": "1300bbed2d89353e9f280385ccde6e15ee8f795f628ac85dd5b2d23ab2ec9e0432f257d9c7296f98c0fed89ea7f8557f927034c7c5ab8ff3aa95159100d84cce51eae22e19049fe4e13e7105f20167750fefe265c58e40f8c8c716f1c96dce9ca0189df3482616d7bb3024dc4d39ce5d04aa1a2f91bd0e85d5c1c49c1c3504e31a7e01026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "13000fe090c9ae7bc442ad45d96f311c91685f98a0e09aae157a8c580c1139e6c1fd387d0ee5511f2be167bb1a5bb61e470f9e9b1c98e391801051858285dbcb1f3014d09279c99d5f9a0ffe390600b13625e9580e09a55be7244374571758d2edd7209017ef43c18ed9be2d0e269fa046f9961bd75fe628b3df01306d7593ac091c0102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Set keys", - "1 | Keys [1/7] : bbed2d89353e9f280385ccde6e15ee8f795f62", - "1 | Keys [2/7] : 8ac85dd5b2d23ab2ec9e0432f257d9c7296f98", - "1 | Keys [3/7] : c0fed89ea7f8557f927034c7c5ab8ff3aa9515", - "1 | Keys [4/7] : 9100d84cce51eae22e19049fe4e13e7105f201", - "1 | Keys [5/7] : 67750fefe265c58e40f8c8c716f1c96dce9ca0", - "1 | Keys [6/7] : 189df3482616d7bb3024dc4d39ce5d04aa1a2f", - "1 | Keys [7/7] : 91bd0e85d5c1c49c1c3504e31a7e", - "2 | Proof [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "2 | Proof [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "2 | Proof [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "2 | Proof [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "2 | Proof [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "2 | Proof [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "2 | Proof [7/7] : 295486a09d426dbe1db90a814010", - "3 | Tip : POLYX 55.555555" + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "2 | Proof [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "2 | Proof [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "2 | Proof [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "2 | Proof [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "2 | Proof [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "2 | Proof [7/7] : 40b9bdecd583ad09e6740658f314", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/7] : bbed2d89353e9f280385ccde6e15ee8f795f62", - "1 | Keys [2/7] : 8ac85dd5b2d23ab2ec9e0432f257d9c7296f98", - "1 | Keys [3/7] : c0fed89ea7f8557f927034c7c5ab8ff3aa9515", - "1 | Keys [4/7] : 9100d84cce51eae22e19049fe4e13e7105f201", - "1 | Keys [5/7] : 67750fefe265c58e40f8c8c716f1c96dce9ca0", - "1 | Keys [6/7] : 189df3482616d7bb3024dc4d39ce5d04aa1a2f", - "1 | Keys [7/7] : 91bd0e85d5c1c49c1c3504e31a7e", - "2 | Proof [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "2 | Proof [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "2 | Proof [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "2 | Proof [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "2 | Proof [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "2 | Proof [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "2 | Proof [7/7] : 295486a09d426dbe1db90a814010", + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "2 | Proof [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "2 | Proof [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "2 | Proof [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "2 | Proof [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "2 | Proof [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "2 | Proof [7/7] : 40b9bdecd583ad09e6740658f314", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 677, "name": "Session_Set_keys", - "blob": "1300bbed2d89353e9f280385ccde6e15ee8f795f628ac85dd5b2d23ab2ec9e0432f257d9c7296f98c0fed89ea7f8557f927034c7c5ab8ff3aa95159100d84cce51eae22e19049fe4e13e7105f20167750fefe265c58e40f8c8c716f1c96dce9ca0189df3482616d7bb3024dc4d39ce5d04aa1a2f91bd0e85d5c1c49c1c3504e31a7e01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "13000fe090c9ae7bc442ad45d96f311c91685f98a0e09aae157a8c580c1139e6c1fd387d0ee5511f2be167bb1a5bb61e470f9e9b1c98e391801051858285dbcb1f3014d09279c99d5f9a0ffe390600b13625e9580e09a55be7244374571758d2edd7209017ef43c18ed9be2d0e269fa046f9961bd75fe628b3df01306d7593ac091c0101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef37011d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Set keys", - "1 | Keys [1/7] : bbed2d89353e9f280385ccde6e15ee8f795f62", - "1 | Keys [2/7] : 8ac85dd5b2d23ab2ec9e0432f257d9c7296f98", - "1 | Keys [3/7] : c0fed89ea7f8557f927034c7c5ab8ff3aa9515", - "1 | Keys [4/7] : 9100d84cce51eae22e19049fe4e13e7105f201", - "1 | Keys [5/7] : 67750fefe265c58e40f8c8c716f1c96dce9ca0", - "1 | Keys [6/7] : 189df3482616d7bb3024dc4d39ce5d04aa1a2f", - "1 | Keys [7/7] : 91bd0e85d5c1c49c1c3504e31a7e", - "2 | Proof [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "2 | Proof [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "2 | Proof [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "2 | Proof [4/4] : 230bed8fba7de1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "2 | Proof [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "2 | Proof [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "2 | Proof [4/4] : 29de0e3ef37011", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/7] : bbed2d89353e9f280385ccde6e15ee8f795f62", - "1 | Keys [2/7] : 8ac85dd5b2d23ab2ec9e0432f257d9c7296f98", - "1 | Keys [3/7] : c0fed89ea7f8557f927034c7c5ab8ff3aa9515", - "1 | Keys [4/7] : 9100d84cce51eae22e19049fe4e13e7105f201", - "1 | Keys [5/7] : 67750fefe265c58e40f8c8c716f1c96dce9ca0", - "1 | Keys [6/7] : 189df3482616d7bb3024dc4d39ce5d04aa1a2f", - "1 | Keys [7/7] : 91bd0e85d5c1c49c1c3504e31a7e", - "2 | Proof [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "2 | Proof [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "2 | Proof [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "2 | Proof [4/4] : 230bed8fba7de1", + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "2 | Proof [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "2 | Proof [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "2 | Proof [4/4] : 29de0e3ef37011", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 678, "name": "Session_Set_keys", - "blob": "1300e882cf8a7ae299bbe0fec9c9ed388ab17c4490e48901924588b124b64477452f2e4a936e85ca8b77ca191109b3a981dfb4b136e4c19f07a059a3516a5991d764d0be92adbd23da832e768f6762ab20c8b81f613e38a3dca45bfaef77f42d5e0ec517a59524bf0827fc02250a65a0d32b753d1048830e8ce0dbd4a30f785d204501013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa6d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "13000fe090c9ae7bc442ad45d96f311c91685f98a0e09aae157a8c580c1139e6c1fd387d0ee5511f2be167bb1a5bb61e470f9e9b1c98e391801051858285dbcb1f3014d09279c99d5f9a0ffe390600b13625e9580e09a55be7244374571758d2edd7209017ef43c18ed9be2d0e269fa046f9961bd75fe628b3df01306d7593ac091c0102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Set keys", - "1 | Keys [1/7] : e882cf8a7ae299bbe0fec9c9ed388ab17c4490", - "1 | Keys [2/7] : e48901924588b124b64477452f2e4a936e85ca", - "1 | Keys [3/7] : 8b77ca191109b3a981dfb4b136e4c19f07a059", - "1 | Keys [4/7] : a3516a5991d764d0be92adbd23da832e768f67", - "1 | Keys [5/7] : 62ab20c8b81f613e38a3dca45bfaef77f42d5e", - "1 | Keys [6/7] : 0ec517a59524bf0827fc02250a65a0d32b753d", - "1 | Keys [7/7] : 1048830e8ce0dbd4a30f785d2045", - "2 | Proof [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "2 | Proof [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "2 | Proof [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "2 | Proof [4/4] : 4cbdae8e046aa6", - "3 | Tip : POLYX 55.555555" + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "2 | Proof [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "2 | Proof [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "2 | Proof [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "2 | Proof [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "2 | Proof [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "2 | Proof [7/7] : 46119a2df878e53f4a185c8a0acb", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/7] : e882cf8a7ae299bbe0fec9c9ed388ab17c4490", - "1 | Keys [2/7] : e48901924588b124b64477452f2e4a936e85ca", - "1 | Keys [3/7] : 8b77ca191109b3a981dfb4b136e4c19f07a059", - "1 | Keys [4/7] : a3516a5991d764d0be92adbd23da832e768f67", - "1 | Keys [5/7] : 62ab20c8b81f613e38a3dca45bfaef77f42d5e", - "1 | Keys [6/7] : 0ec517a59524bf0827fc02250a65a0d32b753d", - "1 | Keys [7/7] : 1048830e8ce0dbd4a30f785d2045", - "2 | Proof [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "2 | Proof [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "2 | Proof [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "2 | Proof [4/4] : 4cbdae8e046aa6", + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "2 | Proof [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "2 | Proof [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "2 | Proof [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "2 | Proof [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "2 | Proof [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "2 | Proof [7/7] : 46119a2df878e53f4a185c8a0acb", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 679, "name": "Session_Set_keys", - "blob": "13007705c114e4f5b3c0a647aef830c70424520ba9fc0ad905925af2975ccab3c5d93bf830a8e5efb53f9fb4ff79f7a8a0db8d81bdc136752b865bcdf2d580a755d952fb1687f5075a030210b778fde44f78bad571895e5ea1ccf7f79fb1a8f20edeb2832a0c6e99065b87dcb81662ad8054726d95c6524035e1d6e853ebbe1e3a24010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead2562d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1300c0a35d53cad1ecc1bbad037d9e5da35c39781ead13c8c815384687a83656ac7298f1432a68c6f739b792e5f30612297cb67421cb493b1ab91f8c1848397636bb37e9ba8e9509a6dc49111431b687f053b410dd96de7ec5551a7b6b7dc47444fc27fc4c2b0817ed421a4aa0fd0d7eb66ad31612a6299ccd346737ba782ea9eec50102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Set keys", - "1 | Keys [1/7] : 7705c114e4f5b3c0a647aef830c70424520ba9", - "1 | Keys [2/7] : fc0ad905925af2975ccab3c5d93bf830a8e5ef", - "1 | Keys [3/7] : b53f9fb4ff79f7a8a0db8d81bdc136752b865b", - "1 | Keys [4/7] : cdf2d580a755d952fb1687f5075a030210b778", - "1 | Keys [5/7] : fde44f78bad571895e5ea1ccf7f79fb1a8f20e", - "1 | Keys [6/7] : deb2832a0c6e99065b87dcb81662ad8054726d", - "1 | Keys [7/7] : 95c6524035e1d6e853ebbe1e3a24", - "2 | Proof [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "2 | Proof [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "2 | Proof [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "2 | Proof [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "2 | Proof [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "2 | Proof [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "2 | Proof [7/7] : 965dcb1349f7d283b3a94ead2562", - "3 | Tip : POLYX 0.000987" + "1 | Keys [1/7] : c0a35d53cad1ecc1bbad037d9e5da35c39781e", + "1 | Keys [2/7] : ad13c8c815384687a83656ac7298f1432a68c6", + "1 | Keys [3/7] : f739b792e5f30612297cb67421cb493b1ab91f", + "1 | Keys [4/7] : 8c1848397636bb37e9ba8e9509a6dc49111431", + "1 | Keys [5/7] : b687f053b410dd96de7ec5551a7b6b7dc47444", + "1 | Keys [6/7] : fc27fc4c2b0817ed421a4aa0fd0d7eb66ad316", + "1 | Keys [7/7] : 12a6299ccd346737ba782ea9eec5", + "2 | Proof [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "2 | Proof [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "2 | Proof [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "2 | Proof [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "2 | Proof [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "2 | Proof [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "2 | Proof [7/7] : f857171a298bfe11b3e31658dbd1", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/7] : 7705c114e4f5b3c0a647aef830c70424520ba9", - "1 | Keys [2/7] : fc0ad905925af2975ccab3c5d93bf830a8e5ef", - "1 | Keys [3/7] : b53f9fb4ff79f7a8a0db8d81bdc136752b865b", - "1 | Keys [4/7] : cdf2d580a755d952fb1687f5075a030210b778", - "1 | Keys [5/7] : fde44f78bad571895e5ea1ccf7f79fb1a8f20e", - "1 | Keys [6/7] : deb2832a0c6e99065b87dcb81662ad8054726d", - "1 | Keys [7/7] : 95c6524035e1d6e853ebbe1e3a24", - "2 | Proof [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "2 | Proof [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "2 | Proof [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "2 | Proof [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "2 | Proof [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "2 | Proof [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "2 | Proof [7/7] : 965dcb1349f7d283b3a94ead2562", + "1 | Keys [1/7] : c0a35d53cad1ecc1bbad037d9e5da35c39781e", + "1 | Keys [2/7] : ad13c8c815384687a83656ac7298f1432a68c6", + "1 | Keys [3/7] : f739b792e5f30612297cb67421cb493b1ab91f", + "1 | Keys [4/7] : 8c1848397636bb37e9ba8e9509a6dc49111431", + "1 | Keys [5/7] : b687f053b410dd96de7ec5551a7b6b7dc47444", + "1 | Keys [6/7] : fc27fc4c2b0817ed421a4aa0fd0d7eb66ad316", + "1 | Keys [7/7] : 12a6299ccd346737ba782ea9eec5", + "2 | Proof [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "2 | Proof [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "2 | Proof [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "2 | Proof [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "2 | Proof [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "2 | Proof [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "2 | Proof [7/7] : f857171a298bfe11b3e31658dbd1", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 680, "name": "Session_Set_keys", - "blob": "1300e882cf8a7ae299bbe0fec9c9ed388ab17c4490e48901924588b124b64477452f2e4a936e85ca8b77ca191109b3a981dfb4b136e4c19f07a059a3516a5991d764d0be92adbd23da832e768f6762ab20c8b81f613e38a3dca45bfaef77f42d5e0ec517a59524bf0827fc02250a65a0d32b753d1048830e8ce0dbd4a30f785d20450102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "13000fe090c9ae7bc442ad45d96f311c91685f98a0e09aae157a8c580c1139e6c1fd387d0ee5511f2be167bb1a5bb61e470f9e9b1c98e391801051858285dbcb1f3014d09279c99d5f9a0ffe390600b13625e9580e09a55be7244374571758d2edd7209017ef43c18ed9be2d0e269fa046f9961bd75fe628b3df01306d7593ac091c0102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Set keys", - "1 | Keys [1/7] : e882cf8a7ae299bbe0fec9c9ed388ab17c4490", - "1 | Keys [2/7] : e48901924588b124b64477452f2e4a936e85ca", - "1 | Keys [3/7] : 8b77ca191109b3a981dfb4b136e4c19f07a059", - "1 | Keys [4/7] : a3516a5991d764d0be92adbd23da832e768f67", - "1 | Keys [5/7] : 62ab20c8b81f613e38a3dca45bfaef77f42d5e", - "1 | Keys [6/7] : 0ec517a59524bf0827fc02250a65a0d32b753d", - "1 | Keys [7/7] : 1048830e8ce0dbd4a30f785d2045", - "2 | Proof [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "2 | Proof [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "2 | Proof [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "2 | Proof [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "2 | Proof [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "2 | Proof [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "2 | Proof [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "3 | Tip : POLYX 1234.56789" + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "2 | Proof [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "2 | Proof [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "2 | Proof [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "2 | Proof [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "2 | Proof [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "2 | Proof [7/7] : 40b9bdecd583ad09e6740658f314", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Session : Set keys", - "1 | Keys [1/7] : e882cf8a7ae299bbe0fec9c9ed388ab17c4490", - "1 | Keys [2/7] : e48901924588b124b64477452f2e4a936e85ca", - "1 | Keys [3/7] : 8b77ca191109b3a981dfb4b136e4c19f07a059", - "1 | Keys [4/7] : a3516a5991d764d0be92adbd23da832e768f67", - "1 | Keys [5/7] : 62ab20c8b81f613e38a3dca45bfaef77f42d5e", - "1 | Keys [6/7] : 0ec517a59524bf0827fc02250a65a0d32b753d", - "1 | Keys [7/7] : 1048830e8ce0dbd4a30f785d2045", - "2 | Proof [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "2 | Proof [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "2 | Proof [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "2 | Proof [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "2 | Proof [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "2 | Proof [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "2 | Proof [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Keys [1/7] : 0fe090c9ae7bc442ad45d96f311c91685f98a0", + "1 | Keys [2/7] : e09aae157a8c580c1139e6c1fd387d0ee5511f", + "1 | Keys [3/7] : 2be167bb1a5bb61e470f9e9b1c98e391801051", + "1 | Keys [4/7] : 858285dbcb1f3014d09279c99d5f9a0ffe3906", + "1 | Keys [5/7] : 00b13625e9580e09a55be7244374571758d2ed", + "1 | Keys [6/7] : d7209017ef43c18ed9be2d0e269fa046f9961b", + "1 | Keys [7/7] : d75fe628b3df01306d7593ac091c", + "2 | Proof [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "2 | Proof [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "2 | Proof [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "2 | Proof [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "2 | Proof [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "2 | Proof [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "2 | Proof [7/7] : 40b9bdecd583ad09e6740658f314", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 681, "name": "Session_Purge_keys", - "blob": "1301d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1301d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Purge keys", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 682, "name": "Session_Purge_keys", - "blob": "1301d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1301d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Purge keys", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", + "2 | Nonce : 0", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 683, "name": "Session_Purge_keys", - "blob": "1301d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1301d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Purge keys", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Polymesh", "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 684, "name": "Session_Purge_keys", - "blob": "1301d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1301d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Purge keys", - "1 | Tip : POLYX 0.000987" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 685, "name": "Session_Purge_keys", - "blob": "1301d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1301d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Session : Purge keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Session : Purge keys", "1 | Chain : Polymesh", "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 686, "name": "Sudo_Sudo", - "blob": "19000000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19000000083434d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 687, "name": "Sudo_Sudo", - "blob": "19000000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19000000083434d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 688, "name": "Sudo_Sudo", - "blob": "19000000083434d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19000000083434d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", @@ -17884,19 +17934,18 @@ "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 689, "name": "Sudo_Sudo", - "blob": "19000000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19000000083434d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Tip : POLYX 0.000987" + "1 | Call [2/2] : 3434" ], "output_expert": [ "0 | Sudo : Sudo", @@ -17904,23 +17953,21 @@ "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 690, "name": "Sudo_Sudo", - "blob": "19000000083434d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19000000083434d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Sudo", @@ -17928,447 +17975,438 @@ "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 691, "name": "Sudo_Sudo_unchecked_weight", - "blob": "190100000834340f0da5cef216be91acd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "190100000834345ed5e0deadc9d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 692, "name": "Sudo_Sudo_unchecked_weight", - "blob": "190100000834340f0da5cef216be91acd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1901000008343413458045125ace6a89135518ce23543ce884d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43" + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43", + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 693, "name": "Sudo_Sudo_unchecked_weight", - "blob": "19010000083434a1f8fa7b05d0d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1901000008343413458045125ace6a89135518ce23543ce884d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", - "3 | Tip : POLYX 0.000987" + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 694, "name": "Sudo_Sudo_unchecked_weight", - "blob": "19010000083434135538e412b597bce91349338e8af145f627d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19010000083434edddcac7c373d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 16842503510420633685", - "2 | Weight [2/2] : 2879565915464020809", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 16842503510420633685", - "2 | Weight [2/2] : 2879565915464020809", + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 695, "name": "Sudo_Sudo_unchecked_weight", - "blob": "19010000083434a1f8fa7b05d0d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "190100000834345ed5e0deadc9d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", - "3 | Tip : POLYX 1234.56789" + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sudo : Sudo unchecked weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 696, "name": "Sudo_Set_key", - "blob": "1902000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19020000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f0151d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", - "2 | Tip : POLYX 5552342.355555" + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 697, "name": "Sudo_Set_key", - "blob": "1902000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19020000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f0151d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 698, "name": "Sudo_Set_key", - "blob": "1902000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19020000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f0151d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", - "2 | Tip : POLYX 0.000987" + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 699, "name": "Sudo_Set_key", - "blob": "1902000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19020000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f0151d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7" ], "output_expert": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 700, "name": "Sudo_Set_key", - "blob": "1902000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd62241d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19020000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f0151d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sudo : Set key", - "1 | New [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | New [2/2] : hsXzy7fsCx", + "1 | New [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | New [2/2] : 3sP6BZwPH7", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 701, "name": "Sudo_Sudo_as", - "blob": "1903000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410000083434d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000083434d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 702, "name": "Sudo_Sudo_as", - "blob": "1903000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000083434d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 703, "name": "Sudo_Sudo_as", - "blob": "1903000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000083434d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 704, "name": "Sudo_Sudo_as", - "blob": "1903000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000083434d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 705, "name": "Sudo_Sudo_as", - "blob": "1903000cd0e641b4208cbe359c0b821001fefd473ed40ec06a8a69845039dddbd622410000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "19030000ffa0494af1915e2bb7e36a0fe1a9907062ba9f4f47994197ffbe5bf31f01510000083434d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sudo : Sudo as", - "1 | Who [1/2] : 5CMWVFTUBra3XKStYMHTZywDKLmysiCYTtZGyt", - "1 | Who [2/2] : hsXzy7fsCx", + "1 | Who [1/2] : 5C61o1CVjhgyncbN1ktAr19MBxEF6dzuuC3W2y", + "1 | Who [2/2] : 3sP6BZwPH7", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 706, "name": "Asset_Register_unique_ticker", - "blob": "1a005449434b45522d3132333435d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a005449434b45522d3132333435d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 707, "name": "Asset_Register_unique_ticker", - "blob": "1a005449434b45522d3132333435d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a005449434b45522d3132333435d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register unique ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "1 | Ticker : TICKER-12345" ], "output_expert": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 708, "name": "Asset_Register_unique_ticker", - "blob": "1a005449434b45522d3132333435d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a005449434b45522d3132333435d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345" @@ -18377,366 +18415,363 @@ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 709, "name": "Asset_Register_unique_ticker", - "blob": "1a005449434b45522d3132333435d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a005449434b45522d3132333435d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register unique ticker", - "1 | Ticker : TICKER-12345" + "1 | Ticker : TICKER-12345", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 710, "name": "Asset_Register_unique_ticker", - "blob": "1a005449434b45522d3132333435d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a005449434b45522d3132333435d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register unique ticker", - "1 | Ticker : TICKER-12345" + "1 | Ticker : TICKER-12345", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Register unique ticker", "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 711, "name": "Asset_Accept_ticker_transfer", - "blob": "1a010100000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a012309000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 712, "name": "Asset_Accept_ticker_transfer", - "blob": "1a016400000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a012309000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 100" + "1 | Auth id : 2339", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 100", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 713, "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a012309000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 714, "name": "Asset_Accept_ticker_transfer", - "blob": "1a010100000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a016400000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", + "1 | Auth id : 100", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 715, "name": "Asset_Accept_ticker_transfer", - "blob": "1a012309000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a010100000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 1" ], "output_expert": [ "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 716, "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a026400000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0" + "1 | Auth id : 100", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0", + "1 | Auth id : 100", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 717, "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a022309000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a022309000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept asset ownership transfer", "1 | Auth id : 2339", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Accept asset ownership transfer", "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 718, "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026bc4000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a022309000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", + "1 | Auth id : 2339", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 719, "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026400000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a020000000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 720, "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020100000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a020100000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Accept asset ownership transfer", "1 | Auth id : 1", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Accept asset ownership transfer", "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 721, "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d653200001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a032841737365744e616d6532010000014846756e64696e675f526f756e645f4e616d65d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset", "1 | Asset name : AssetName2", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type : EquityCommon", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Create asset", "1 | Asset name : AssetName2", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type : EquityCommon", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "7 | Nonce : 2339", + "8 | Tip : POLYX 1234.56789", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 722, "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d6531000000014846756e64696e675f526f756e645f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a032841737365744e616d6531010000014846756e64696e675f526f756e645f4e616d65d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset", "1 | Asset name : AssetName1", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type : EquityCommon", "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip : POLYX 5552342.355555" + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Create asset", "1 | Asset name : AssetName1", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type : EquityCommon", "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip : POLYX 5552342.355555", + "7 | Nonce : 1", + "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 723, "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d653200093ec7060000014846756e64696e675f526f756e645f4e616d65d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a032841737365744e616d653101093ec7060000014846756e64696e675f526f756e645f4e616d65d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset", - "1 | Asset name : AssetName2", - "2 | Divisible : False", + "1 | Asset name : AssetName1", + "2 | Divisible : True", "3 | Asset type [1/2] : Custom", "3 | Asset type [2/2] : 444222", "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip : POLYX 0.000987" + "6 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Create asset", - "1 | Asset name : AssetName2", - "2 | Divisible : False", + "1 | Asset name : AssetName1", + "2 | Divisible : True", "3 | Asset type [1/2] : Custom", "3 | Asset type [2/2] : 444222", "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", "7 | Nonce : 1", - "8 | Tip : POLYX 0.000987", + "8 | Tip : POLYX 55.555555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 724, "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d653101093ec706001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a032841737365744e616d653100001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset", "1 | Asset name : AssetName1", - "2 | Divisible : True", - "3 | Asset type [1/2] : Custom", - "3 | Asset type [2/2] : 444222", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", "4 | Asset identifiers [1/4] : 037833100", "4 | Asset identifiers [2/4] : 037833100", "4 | Asset identifiers [3/4] : US0378331005", @@ -18748,275 +18783,266 @@ "output_expert": [ "0 | Asset : Create asset", "1 | Asset name : AssetName1", - "2 | Divisible : True", - "3 | Asset type [1/2] : Custom", - "3 | Asset type [2/2] : 444222", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", "4 | Asset identifiers [1/4] : 037833100", "4 | Asset identifiers [2/4] : 037833100", "4 | Asset identifiers [3/4] : US0378331005", "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 1", + "7 | Nonce : 50283", "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", "8 | Tip [2/2] : 3.456789", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 725, "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d653200093ec7060000014846756e64696e675f526f756e645f4e616d65d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a032841737365744e616d653201093ec7060000014846756e64696e675f526f756e645f4e616d65d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset", "1 | Asset name : AssetName2", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type [1/2] : Custom", "3 | Asset type [2/2] : 444222", "4 | Asset identifiers : ", - "5 | Funding round name : Funding_Round_Name" + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Create asset", "1 | Asset name : AssetName2", - "2 | Divisible : False", + "2 | Divisible : True", "3 | Asset type [1/2] : Custom", "3 | Asset type [2/2] : 444222", "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 1", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 726, "name": "Asset_Freeze", - "blob": "1a04417373657449442d3132333435363738d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a04417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 727, "name": "Asset_Freeze", - "blob": "1a04417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a04417373657449442d3132333435363738d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Freeze", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 728, "name": "Asset_Freeze", - "blob": "1a04417373657449442d3132333435363738d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a04417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 729, "name": "Asset_Freeze", - "blob": "1a04417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a04417373657449442d3132333435363738d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Freeze", - "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 730, "name": "Asset_Freeze", - "blob": "1a04417373657449442d3132333435363738d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a04417373657449442d3132333435363738d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Freeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 731, "name": "Asset_Unfreeze", - "blob": "1a05417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a05417373657449442d3132333435363738d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 732, "name": "Asset_Unfreeze", - "blob": "1a05417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a05417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 733, "name": "Asset_Unfreeze", - "blob": "1a05417373657449442d3132333435363738d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a05417373657449442d3132333435363738d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 734, "name": "Asset_Unfreeze", - "blob": "1a05417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a05417373657449442d3132333435363738d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 735, "name": "Asset_Unfreeze", - "blob": "1a05417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a05417373657449442d3132333435363738d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Unfreeze", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Unfreeze", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 736, "name": "Asset_Rename_asset", - "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", @@ -19032,20 +19058,19 @@ "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 737, "name": "Asset_Rename_asset", - "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", "2 | Asset name : AssetName2", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Rename asset", @@ -19053,71 +19078,64 @@ "2 | Asset name : AssetName2", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 738, "name": "Asset_Rename_asset", - "blob": "1a06417373657449442d31323334353637382841737365744e616d6531d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6531d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", - "2 | Asset name : AssetName1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Asset name : AssetName1" ], "output_expert": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", "2 | Asset name : AssetName1", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 739, "name": "Asset_Rename_asset", - "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", - "2 | Asset name : AssetName2", - "3 | Tip : POLYX 55.555555" + "2 | Asset name : AssetName2" ], "output_expert": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", "2 | Asset name : AssetName2", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 740, "name": "Asset_Rename_asset", - "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Rename asset", "1 | Asset id : AssetID-12345678", "2 | Asset name : AssetName2", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Rename asset", @@ -19125,446 +19143,438 @@ "2 | Asset name : AssetName2", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 741, "name": "Asset_Issue", - "blob": "1a07417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd011a0a4b6350bc0000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a07417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39017281fb6873410000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 207053449267738" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 71963938357618", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 207053449267738", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 71963938357618", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 742, "name": "Asset_Issue", - "blob": "1a07417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd01b79e78fe04de0000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a07417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39019b4ce248e4d40000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 244113030553271", - "4 | Tip : POLYX 0.000987" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299" ], "output_expert": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 244113030553271", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 743, "name": "Asset_Issue", - "blob": "1a07417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd01ef5ddf3c8a830000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a07417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e3900d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", - "4 | Tip : POLYX 1234.56789" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : Default", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : Default", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 744, "name": "Asset_Issue", - "blob": "1a07417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd01ef5ddf3c8a830000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a07417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39017281fb6873410000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 71963938357618", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 71963938357618", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 745, "name": "Asset_Issue", - "blob": "1a07417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd00d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a07417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39016f90935aa3760000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 0.000987" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 130443971367023", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Issue", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : Default", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 130443971367023", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 746, "name": "Asset_Redeem", - "blob": "1a08417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd011a0a4b6350bc0000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a08417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39016f90935aa3760000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 207053449267738", - "4 | Tip : POLYX 0.000987" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 130443971367023", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 207053449267738", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 130443971367023", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 747, "name": "Asset_Redeem", - "blob": "1a08417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd00d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a08417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e3900d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", "3 | Portfolio kind : Default", - "4 | Tip : POLYX 1234.56789" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", "3 | Portfolio kind : Default", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 748, "name": "Asset_Redeem", - "blob": "1a08417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd01b79e78fe04de0000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a08417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39019b4ce248e4d40000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 244113030553271", - "4 | Tip : POLYX 5552342.355555" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 244113030553271", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 749, "name": "Asset_Redeem", - "blob": "1a08417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd00d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a08417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39019b4ce248e4d40000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : Default" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299" ], "output_expert": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : Default", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 50283", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 750, "name": "Asset_Redeem", - "blob": "1a08417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cd01ef5ddf3c8a830000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a08417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39019b4ce248e4d40000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", - "4 | Tip : POLYX 1234.56789" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299" ], "output_expert": [ "0 | Asset : Redeem", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | Portfolio kind : 144629749997039", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 751, "name": "Asset_Make_divisible", - "blob": "1a09417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a09417373657449442d3132333435363738d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 752, "name": "Asset_Make_divisible", - "blob": "1a09417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a09417373657449442d3132333435363738d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 753, "name": "Asset_Make_divisible", - "blob": "1a09417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a09417373657449442d3132333435363738d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Make divisible", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 754, "name": "Asset_Make_divisible", - "blob": "1a09417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a09417373657449442d3132333435363738d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Make divisible", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 755, "name": "Asset_Make_divisible", - "blob": "1a09417373657449442d3132333435363738d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a09417373657449442d3132333435363738d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Make divisible", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Make divisible", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 756, "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e3101f3dcc718c96345345c6529910efbac031c43b7c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d71f4f05757fedf85489c45b941c4b2ad7d8e2a459ae6a8d15d2728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e32022b84c19104d5fbdab2d68f892fbce0765f56e84a9a57a3f217fd70847b46c52bdd435e3ad6042a596f81897e521f075b28446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e31012c18f322a4b87ee275cade849a3fe0b4076f39afe98d491ed8ad263016dc3b2629be82699d6414a7d5d9c4834178c8c0fa604b481d7bf4336204d19850684b7728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e320236aff2a94240cbcb6216200b6cf94bd09e9659f56e225eef75bdad8779d6d99b5fc1b2927a0124cf51432a61cf5e46e828446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add documents", "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : f3dcc718c96345345c6529910efbac031c43b7", - "1 | Docs [3/15] : c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d", - "1 | Docs [4/15] : 71f4f05757fedf85489c45b941c4b2ad7d8e2a", - "1 | Docs [5/15] : 459ae6a8d15d27", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", "1 | Docs [6/15] : DocuName_1", "1 | Docs [7/15] : DocuType", "1 | Docs [8/15] : 2254552825", "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 2b84c19104d5fbdab2d68f892fbce0765f56e8", - "1 | Docs [11/15] : 4a9a57a3f217fd70847b46c52bdd435e3ad604", - "1 | Docs [12/15] : 2a596f81897e521f075b", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", "1 | Docs [13/15] : DocuName_2", "1 | Docs [14/15] : DocuType", "1 | Docs [15/15] : 24545887633", "2 | Asset id : AssetID-12345678", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Add documents", "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : f3dcc718c96345345c6529910efbac031c43b7", - "1 | Docs [3/15] : c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d", - "1 | Docs [4/15] : 71f4f05757fedf85489c45b941c4b2ad7d8e2a", - "1 | Docs [5/15] : 459ae6a8d15d27", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", "1 | Docs [6/15] : DocuName_1", "1 | Docs [7/15] : DocuType", "1 | Docs [8/15] : 2254552825", "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 2b84c19104d5fbdab2d68f892fbce0765f56e8", - "1 | Docs [11/15] : 4a9a57a3f217fd70847b46c52bdd435e3ad604", - "1 | Docs [12/15] : 2a596f81897e521f075b", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", "1 | Docs [13/15] : DocuName_2", "1 | Docs [14/15] : DocuType", "1 | Docs [15/15] : 24545887633", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 757, "name": "Asset_Add_documents", - "blob": "1a0a00417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0a00417373657449442d3132333435363738d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add documents", "1 | Docs : ", "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Add documents", @@ -19572,75 +19582,103 @@ "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 758, "name": "Asset_Add_documents", - "blob": "1a0a00417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e31012c18f322a4b87ee275cade849a3fe0b4076f39afe98d491ed8ad263016dc3b2629be82699d6414a7d5d9c4834178c8c0fa604b481d7bf4336204d19850684b7728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e320236aff2a94240cbcb6216200b6cf94bd09e9659f56e225eef75bdad8779d6d99b5fc1b2927a0124cf51432a61cf5e46e828446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Asset id : AssetID-12345678" + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Add documents", - "1 | Docs : ", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 759, "name": "Asset_Add_documents", - "blob": "1a0a00417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0a00417373657449442d3132333435363738d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add documents", "1 | Docs : ", - "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 1234.56789" + "2 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Add documents", "1 | Docs : ", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 760, "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e3101f3dcc718c96345345c6529910efbac031c43b7c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d71f4f05757fedf85489c45b941c4b2ad7d8e2a459ae6a8d15d2728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e32022b84c19104d5fbdab2d68f892fbce0765f56e84a9a57a3f217fd70847b46c52bdd435e3ad6042a596f81897e521f075b28446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e31012c18f322a4b87ee275cade849a3fe0b4076f39afe98d491ed8ad263016dc3b2629be82699d6414a7d5d9c4834178c8c0fa604b481d7bf4336204d19850684b7728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e320236aff2a94240cbcb6216200b6cf94bd09e9659f56e225eef75bdad8779d6d99b5fc1b2927a0124cf51432a61cf5e46e828446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add documents", "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : f3dcc718c96345345c6529910efbac031c43b7", - "1 | Docs [3/15] : c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d", - "1 | Docs [4/15] : 71f4f05757fedf85489c45b941c4b2ad7d8e2a", - "1 | Docs [5/15] : 459ae6a8d15d27", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", "1 | Docs [6/15] : DocuName_1", "1 | Docs [7/15] : DocuType", "1 | Docs [8/15] : 2254552825", "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 2b84c19104d5fbdab2d68f892fbce0765f56e8", - "1 | Docs [11/15] : 4a9a57a3f217fd70847b46c52bdd435e3ad604", - "1 | Docs [12/15] : 2a596f81897e521f075b", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", "1 | Docs [13/15] : DocuName_2", "1 | Docs [14/15] : DocuType", "1 | Docs [15/15] : 24545887633", @@ -19650,34 +19688,34 @@ "output_expert": [ "0 | Asset : Add documents", "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : f3dcc718c96345345c6529910efbac031c43b7", - "1 | Docs [3/15] : c132665fd2dab6ee7ac891cd9d1ced5fbcfa1d", - "1 | Docs [4/15] : 71f4f05757fedf85489c45b941c4b2ad7d8e2a", - "1 | Docs [5/15] : 459ae6a8d15d27", + "1 | Docs [2/15] : 2c18f322a4b87ee275cade849a3fe0b4076f39", + "1 | Docs [3/15] : afe98d491ed8ad263016dc3b2629be82699d64", + "1 | Docs [4/15] : 14a7d5d9c4834178c8c0fa604b481d7bf43362", + "1 | Docs [5/15] : 04d19850684b77", "1 | Docs [6/15] : DocuName_1", "1 | Docs [7/15] : DocuType", "1 | Docs [8/15] : 2254552825", "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 2b84c19104d5fbdab2d68f892fbce0765f56e8", - "1 | Docs [11/15] : 4a9a57a3f217fd70847b46c52bdd435e3ad604", - "1 | Docs [12/15] : 2a596f81897e521f075b", + "1 | Docs [10/15] : 36aff2a94240cbcb6216200b6cf94bd09e9659", + "1 | Docs [11/15] : f56e225eef75bdad8779d6d99b5fc1b2927a01", + "1 | Docs [12/15] : 24cf51432a61cf5e46e8", "1 | Docs [13/15] : DocuName_2", "1 | Docs [14/15] : DocuType", "1 | Docs [15/15] : 24545887633", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 761, "name": "Asset_Remove_documents", - "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove documents", "1 | Docs id [1/4] : 12135", @@ -19694,269 +19732,257 @@ "1 | Docs id [4/4] : 554843325", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 762, "name": "Asset_Remove_documents", - "blob": "1a0b00417373657449442d3132333435363738d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove documents", - "1 | Docs id : ", + "1 | Docs id [1/4] : 12135", + "1 | Docs id [2/4] : 223552", + "1 | Docs id [3/4] : 15", + "1 | Docs id [4/4] : 554843325", "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove documents", - "1 | Docs id : ", + "1 | Docs id [1/4] : 12135", + "1 | Docs id [2/4] : 223552", + "1 | Docs id [3/4] : 15", + "1 | Docs id [4/4] : 554843325", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 763, "name": "Asset_Remove_documents", - "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0b00417373657449442d3132333435363738d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : ", "2 | Asset id : AssetID-12345678", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : ", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 764, "name": "Asset_Remove_documents", - "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0b00417373657449442d3132333435363738d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : ", "2 | Asset id : AssetID-12345678", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : ", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 765, "name": "Asset_Remove_documents", - "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0b0400000000417373657449442d3132333435363738d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : 0", "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Remove documents", - "1 | Docs id [1/4] : 12135", - "1 | Docs id [2/4] : 223552", - "1 | Docs id [3/4] : 15", - "1 | Docs id [4/4] : 554843325", + "1 | Docs id : 0", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 766, "name": "Asset_Set_funding_round", - "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_2", - "3 | Tip : POLYX 0.000987" + "2 | Founding round name : RoundName_1", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_2", + "2 | Founding round name : RoundName_1", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 767, "name": "Asset_Set_funding_round", - "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", "2 | Founding round name : RoundName_1", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", "2 | Founding round name : RoundName_1", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 768, "name": "Asset_Set_funding_round", - "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", "2 | Founding round name : RoundName_2", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 769, "name": "Asset_Set_funding_round", - "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_1", - "3 | Tip : POLYX 0.000987" + "2 | Founding round name : RoundName_2", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_1", + "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 770, "name": "Asset_Set_funding_round", - "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_1", - "3 | Tip : POLYX 5552342.355555" + "2 | Founding round name : RoundName_2", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Set funding round", "1 | Asset id : AssetID-12345678", - "2 | Founding round name : RoundName_1", + "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 771, "name": "Asset_Update_identifiers", - "blob": "1a0d417373657449442d313233343536373800d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0d417373657449442d313233343536373800d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", "2 | Asset identifiers : ", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", "2 | Asset identifiers : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 772, "name": "Asset_Update_identifiers", - "blob": "1a0d417373657449442d31323334353637381000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0d417373657449442d31323334353637381000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", @@ -19974,158 +20000,164 @@ "2 | Asset identifiers [3/4] : US0378331005", "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 773, "name": "Asset_Update_identifiers", - "blob": "1a0d417373657449442d313233343536373800d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0d417373657449442d313233343536373800d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", - "2 | Asset identifiers : " + "2 | Asset identifiers : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", "2 | Asset identifiers : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 774, "name": "Asset_Update_identifiers", - "blob": "1a0d417373657449442d31323334353637381000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0d417373657449442d313233343536373800d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394" + "2 | Asset identifiers : " ], "output_expert": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "2 | Asset identifiers : ", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 775, "name": "Asset_Update_identifiers", - "blob": "1a0d417373657449442d313233343536373800d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0d417373657449442d31323334353637381000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", - "2 | Asset identifiers : ", + "2 | Asset identifiers [1/4] : 037833100", + "2 | Asset identifiers [2/4] : 037833100", + "2 | Asset identifiers [3/4] : US0378331005", + "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Update identifiers", "1 | Asset id : AssetID-12345678", - "2 | Asset identifiers : ", + "2 | Asset identifiers [1/4] : 037833100", + "2 | Asset identifiers [2/4] : 037833100", + "2 | Asset identifiers [3/4] : US0378331005", + "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 776, "name": "Asset_Controller_transfer", - "blob": "1a0e417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cdd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0e417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "3 | From portfolio [3/3] : 123456" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "3 | From portfolio [3/3] : 123456", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, { "index": 777, "name": "Asset_Controller_transfer", - "blob": "1a0e417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cdd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0e417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 778, "name": "Asset_Controller_transfer", - "blob": "1a0e417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cdd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0e417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" @@ -20133,145 +20165,114 @@ "output_expert": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 779, "name": "Asset_Controller_transfer", - "blob": "1a0e417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cdd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0e417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "3 | From portfolio [3/3] : 123456", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "3 | From portfolio [3/3] : 123456" ], "output_expert": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 780, "name": "Asset_Controller_transfer", - "blob": "1a0e417373657449442d3132333435363738da503ae7bd3fde2410ad205fa90399cdd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0e417373657449442d3132333435363738267c295e8b9feb3b22d5bb9a37a30e39c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Controller transfer", "1 | Asset id : AssetID-12345678", - "2 | Amount [1/2] : 273286234821492437264591460651998.2696", - "2 | Amount [2/2] : 58", - "3 | From portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | From portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Amount [1/2] : 75841998353961792985457046500001.02096", + "2 | Amount [2/2] : 6", + "3 | From portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | From portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | From portfolio [3/3] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 781, "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100d0c1323d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 782, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100d0c1323d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0f10200b200bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 1234.56789" + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 783, + "index": 782, "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100e2a0c49d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0f100e2a0c49d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register custom asset type", "1 | Ty [1/4] : 14", @@ -20289,84 +20290,112 @@ "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 784, + "index": 783, "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100e2a0c49d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0f100c293435d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Tip : POLYX 1234.56789" + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 785, + "index": 784, "name": "Asset_Register_custom_asset_type", - "blob": "1a0f10200b200bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a0f100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 32", - "1 | Ty [2/4] : 11", - "1 | Ty [3/4] : 32", - "1 | Ty [4/4] : 11", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 32", - "1 | Ty [2/4] : 11", - "1 | Ty [3/4] : 32", - "1 | Ty [4/4] : 11", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 785, + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f100c293435d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", + "2 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 786, "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d653201100e2a0c4900014846756e64696e675f526f756e645f4e616d65d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a102841737365744e616d653101100e2a0c4900014846756e64696e675f526f756e645f4e616d65d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName2", + "1 | Asset name : AssetName1", "2 | Divisible : True", "3 | Custom asset type [1/4] : 14", "3 | Custom asset type [2/4] : 42", "3 | Custom asset type [3/4] : 12", "3 | Custom asset type [4/4] : 73", "4 | Asset identifiers : ", - "5 | Funding round name : Funding_Round_Name" + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName2", + "1 | Asset name : AssetName1", "2 | Divisible : True", "3 | Custom asset type [1/4] : 14", "3 | Custom asset type [2/4] : 42", @@ -20375,461 +20404,432 @@ "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 2339", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 787, "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65320010200b200b1000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a102841737365744e616d653201100c29343500014846756e64696e675f526f756e645f4e616d65d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset with custom type", "1 | Asset name : AssetName2", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 32", - "3 | Custom asset type [2/4] : 11", - "3 | Custom asset type [3/4] : 32", - "3 | Custom asset type [4/4] : 11", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip : POLYX 5552342.355555" + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Create asset with custom type", "1 | Asset name : AssetName2", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 32", - "3 | Custom asset type [2/4] : 11", - "3 | Custom asset type [3/4] : 32", - "3 | Custom asset type [4/4] : 11", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip : POLYX 5552342.355555", + "7 | Nonce : 0", + "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 788, "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d653200100c2934351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a102841737365744e616d653101100c29343500014846756e64696e675f526f756e645f4e616d65d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName2", - "2 | Divisible : False", + "1 | Asset name : AssetName1", + "2 | Divisible : True", "3 | Custom asset type [1/4] : 12", "3 | Custom asset type [2/4] : 41", "3 | Custom asset type [3/4] : 52", "3 | Custom asset type [4/4] : 53", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip : POLYX 0.000987" + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName2", - "2 | Divisible : False", + "1 | Asset name : AssetName1", + "2 | Divisible : True", "3 | Custom asset type [1/4] : 12", "3 | Custom asset type [2/4] : 41", "3 | Custom asset type [3/4] : 52", "3 | Custom asset type [4/4] : 53", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 0.000987", + "7 | Nonce : 1", + "8 | Tip : POLYX 5552342.355555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 789, "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d653100100d0c13231000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a102841737365744e616d65320110200b200b00014846756e64696e675f526f756e645f4e616d65d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName1", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 13", - "3 | Custom asset type [2/4] : 12", - "3 | Custom asset type [3/4] : 19", - "3 | Custom asset type [4/4] : 35", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 32", + "3 | Custom asset type [2/4] : 11", + "3 | Custom asset type [3/4] : 32", + "3 | Custom asset type [4/4] : 11", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "6 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName1", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 13", - "3 | Custom asset type [2/4] : 12", - "3 | Custom asset type [3/4] : 19", - "3 | Custom asset type [4/4] : 35", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 32", + "3 | Custom asset type [2/4] : 11", + "3 | Custom asset type [3/4] : 32", + "3 | Custom asset type [4/4] : 11", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", "7 | Nonce : 0", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "8 | Tip : POLYX 55.555555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 790, "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d653100100e2a0c491000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a102841737365744e616d653201100c29343500014846756e64696e675f526f756e645f4e616d65d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName1", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 14", - "3 | Custom asset type [2/4] : 42", - "3 | Custom asset type [3/4] : 12", - "3 | Custom asset type [4/4] : 73", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "5 | Funding round name : Funding_Round_Name" + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Create asset with custom type", - "1 | Asset name : AssetName1", - "2 | Divisible : False", - "3 | Custom asset type [1/4] : 14", - "3 | Custom asset type [2/4] : 42", - "3 | Custom asset type [3/4] : 12", - "3 | Custom asset type [4/4] : 73", - "4 | Asset identifiers [1/4] : 037833100", - "4 | Asset identifiers [2/4] : 037833100", - "4 | Asset identifiers [3/4] : US0378331005", - "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", "5 | Funding round name : Funding_Round_Name", "6 | Chain : Polymesh", "7 | Nonce : 1", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 791, "name": "Asset_Set_asset_metadata", - "blob": "1a11417373657449442d313233343536373801a75343831629a10c3048656c6c6f20776f726c64210101a17c50010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a11417373657449442d313233343536373801e6f173475b0724e93048656c6c6f20776f726c64210101a17c50010000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 16799560598620991974", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "4 | Detail [2/2] : Unlocked" ], "output_expert": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 16799560598620991974", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 22052001", "4 | Detail [2/2] : Unlocked", "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 0", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 792, "name": "Asset_Set_asset_metadata", - "blob": "1a11417373657449442d313233343536373801a75343831629a10c3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a11417373657449442d31323334353637380088e666f3cd7fdf193048656c6c6f20776f726c64210101d20296490000000001d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Tip : POLYX 1234.56789" + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 1234.56789", + "6 | Nonce : 50283", + "7 | Tip : POLYX 5552342.355555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 793, "name": "Asset_Set_asset_metadata", - "blob": "1a11417373657449442d313233343536373800b88d6ea4823a01373048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a11417373657449442d313233343536373801e6f173475b0724e93048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 16799560598620991974", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 13243567", "4 | Detail [2/2] : 67895267823", - "5 | Tip : POLYX 55.555555" + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 16799560598620991974", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 13243567", "4 | Detail [2/2] : 67895267823", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", + "6 | Nonce : 100", + "7 | Tip : POLYX 1234.56789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 794, "name": "Asset_Set_asset_metadata", - "blob": "1a11417373657449442d313233343536373801a75343831629a10c3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a11417373657449442d31323334353637380088e666f3cd7fdf193048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 13243567", "4 | Detail [2/2] : 67895267823", - "5 | Tip : POLYX 55.555555" + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", "4 | Detail [1/2] : 13243567", "4 | Detail [2/2] : 67895267823", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", + "6 | Nonce : 50283", + "7 | Tip : POLYX 1234.56789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 795, "name": "Asset_Set_asset_metadata", - "blob": "1a11417373657449442d313233343536373801a75343831629a10c3048656c6c6f20776f726c64210101d20296490000000001d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a11417373657449442d31323334353637380088e666f3cd7fdf193048656c6c6f20776f726c64210101a17c50010000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked" + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked" ], "output_expert": [ "0 | Asset : Set asset metadata", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", + "2 | Key : 1864349293283305096", "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", "5 | Chain : Polymesh", - "6 | Nonce : 0", + "6 | Nonce : 2339", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 796, "name": "Asset_Set_asset_metadata_details", - "blob": "1a12417373657449442d313233343536373800b88d6ea4823a013701206ff8030000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a12417373657449442d313233343536373801e6f173475b0724e90104205ee51900000001d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 111222333444", + "3 | Detail [2/2] : Locked", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 111222333444", + "3 | Detail [2/2] : Locked", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 0", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 797, "name": "Asset_Set_asset_metadata_details", - "blob": "1a12417373657449442d313233343536373800b88d6ea4823a01370104205ee51900000001d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a12417373657449442d31323334353637380088e666f3cd7fdf190104205ee51900000001d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 1864349293283305096", "3 | Detail [1/2] : 111222333444", "3 | Detail [2/2] : Locked", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 1864349293283305096", "3 | Detail [1/2] : 111222333444", "3 | Detail [2/2] : Locked", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 798, "name": "Asset_Set_asset_metadata_details", - "blob": "1a12417373657449442d313233343536373800b88d6ea4823a013701206ff8030000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a12417373657449442d31323334353637380088e666f3cd7fdf1901206ff8030000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 1864349293283305096", "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked" + "3 | Detail [2/2] : Unlocked", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", + "2 | Key : 1864349293283305096", "3 | Detail [1/2] : 66613024", "3 | Detail [2/2] : Unlocked", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 799, "name": "Asset_Set_asset_metadata_details", - "blob": "1a12417373657449442d313233343536373801a75343831629a10c010bcee4070000000002ec66eaa6a72fdea7d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a12417373657449442d313233343536373801e6f173475b0724e901206ff8030000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 12096158046270154476", - "4 | Tip : POLYX 55.555555" + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 66613024", + "3 | Detail [2/2] : Unlocked" ], "output_expert": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 910053776373797799", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 12096158046270154476", + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 66613024", + "3 | Detail [2/2] : Unlocked", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 800, "name": "Asset_Set_asset_metadata_details", - "blob": "1a12417373657449442d313233343536373800b88d6ea4823a013701206ff8030000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a12417373657449442d313233343536373801e6f173475b0724e9010bcee407000000000242582ab8b7bfdeb7d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Tip : POLYX 1234.56789" + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 13249237949560281154", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Set asset metadata details", "1 | Asset id : AssetID-12345678", - "2 | Key : 3963513479841615288", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", + "2 | Key : 16799560598620991974", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 13249237949560281154", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 1", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 801, "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register and set local asset metadata", "1 | Asset id : AssetID-12345678", @@ -20840,7 +20840,8 @@ "4 | Value : 48656c6c6f20776f726c6421", "5 | Detail [1/2] : 13243567", "5 | Detail [2/2] : 67895267823", - "6 | Tip : POLYX 5552342.355555" + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Register and set local asset metadata", @@ -20853,18 +20854,19 @@ "5 | Detail [1/2] : 13243567", "5 | Detail [2/2] : 67895267823", "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip : POLYX 5552342.355555", + "7 | Nonce : 1", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 802, "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register and set local asset metadata", "1 | Asset id : AssetID-12345678", @@ -20875,8 +20877,7 @@ "4 | Value : 48656c6c6f20776f726c6421", "5 | Detail [1/2] : 1234567890", "5 | Detail [2/2] : Locked", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Register and set local asset metadata", @@ -20889,19 +20890,18 @@ "5 | Detail [1/2] : 1234567890", "5 | Detail [2/2] : Locked", "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "7 | Nonce : 50283", + "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 803, "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register and set local asset metadata", "1 | Asset id : AssetID-12345678", @@ -20910,8 +20910,8 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", "6 | Tip : POLYX 0.000987" ], "output_expert": [ @@ -20922,21 +20922,21 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", "6 | Chain : Polymesh", - "7 | Nonce : 2339", + "7 | Nonce : 1", "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 804, "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register and set local asset metadata", "1 | Asset id : AssetID-12345678", @@ -20945,8 +20945,8 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ @@ -20957,21 +20957,21 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", "6 | Chain : Polymesh", - "7 | Nonce : 50283", + "7 | Nonce : 0", "8 | Tip : POLYX 5552342.355555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 805, "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register and set local asset metadata", "1 | Asset id : AssetID-12345678", @@ -20980,9 +20980,9 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", - "6 | Tip : POLYX 55.555555" + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Register and set local asset metadata", @@ -20992,21 +20992,21 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Tip : POLYX 55.555555", + "7 | Nonce : 1", + "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 806, "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata local type", "1 | Asset id : AssetID-12345678", @@ -21014,7 +21014,7 @@ "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Register asset metadata local type", @@ -21024,25 +21024,27 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 807, "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata local type", "1 | Asset id : AssetID-12345678", "2 | Name : 4e616d6565", "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f" + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Register asset metadata local type", @@ -21053,16 +21055,18 @@ "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 808, "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata local type", "1 | Asset id : AssetID-12345678", @@ -21070,8 +21074,7 @@ "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Register asset metadata local type", @@ -21081,27 +21084,25 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 809, "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata local type", "1 | Asset id : AssetID-12345678", "2 | Name : 4e616d6565", "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 0.000987" + "3 | Spec [3/3] : 57687920747970654465663f" ], "output_expert": [ "0 | Asset : Register asset metadata local type", @@ -21111,25 +21112,25 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 810, "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata local type", "1 | Asset id : AssetID-12345678", "2 | Name : 4e616d6565", "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f" + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Register asset metadata local type", @@ -21139,25 +21140,25 @@ "3 | Spec [2/3] : 496d7072657373697665207765627369746521", "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 811, "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata global type", "1 | Name : 4e616d6565", "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Register asset metadata global type", @@ -21166,26 +21167,25 @@ "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 812, "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata global type", "1 | Name : 4e616d6565", "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Register asset metadata global type", @@ -21194,25 +21194,25 @@ "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 813, "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata global type", "1 | Name : 4e616d6565", "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Register asset metadata global type", @@ -21221,18 +21221,18 @@ "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 814, "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata global type", "1 | Name : 4e616d6565", @@ -21248,25 +21248,25 @@ "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 815, "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Register asset metadata global type", "1 | Name : 4e616d6565", "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Register asset metadata global type", @@ -21275,18 +21275,18 @@ "2 | Spec [2/3] : 496d7072657373697665207765627369746521", "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 816, "name": "Asset_Update_asset_type", - "blob": "1a16417373657449442d3132333435363738093ec70600d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a16417373657449442d3132333435363738093ec70600d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", @@ -21301,19 +21301,19 @@ "2 | Asset type [1/2] : Custom", "2 | Asset type [2/2] : 444222", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 817, "name": "Asset_Update_asset_type", - "blob": "1a16417373657449442d3132333435363738093ec70600d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a16417373657449442d3132333435363738093ec70600d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", @@ -21327,466 +21327,464 @@ "2 | Asset type [1/2] : Custom", "2 | Asset type [2/2] : 444222", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 818, "name": "Asset_Update_asset_type", - "blob": "1a16417373657449442d313233343536373800d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a16417373657449442d313233343536373800d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", - "2 | Asset type : EquityCommon", - "3 | Tip : POLYX 0.000987" + "2 | Asset type : EquityCommon" ], "output_expert": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", "2 | Asset type : EquityCommon", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 819, "name": "Asset_Update_asset_type", - "blob": "1a16417373657449442d313233343536373800d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a16417373657449442d3132333435363738093ec70600d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", - "2 | Asset type : EquityCommon", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", - "2 | Asset type : EquityCommon", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 820, "name": "Asset_Update_asset_type", - "blob": "1a16417373657449442d3132333435363738093ec70600d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a16417373657449442d313233343536373800d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222" - ], + "2 | Asset type : EquityCommon", + "3 | Tip : POLYX 1234.56789" + ], "output_expert": [ "0 | Asset : Update asset type", "1 | Asset id : AssetID-12345678", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", + "2 | Asset type : EquityCommon", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 821, "name": "Asset_Remove_local_metadata_key", - "blob": "1a17417373657449442d313233343536373813bd357abd5dd135d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a17417373657449442d3132333435363738803367af7728fcfcd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987", - "3 | Tip : POLYX 5552342.355555" + "2 | Local key : 18229489886197920640", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987", + "2 | Local key : 18229489886197920640", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 822, "name": "Asset_Remove_local_metadata_key", - "blob": "1a17417373657449442d313233343536373858d3caf286b34c18d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a17417373657449442d31323334353637386490f666919dcfc3d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 1750971747320648536", - "3 | Tip : POLYX 1234.56789" + "2 | Local key : 14109669405398306916", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 1750971747320648536", + "2 | Local key : 14109669405398306916", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 823, "name": "Asset_Remove_local_metadata_key", - "blob": "1a17417373657449442d31323334353637387c6dea5e09b57609d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a17417373657449442d31323334353637386490f666919dcfc3d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 681931445444963708", + "2 | Local key : 14109669405398306916", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 681931445444963708", + "2 | Local key : 14109669405398306916", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 824, "name": "Asset_Remove_local_metadata_key", - "blob": "1a17417373657449442d313233343536373813bd357abd5dd135d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a17417373657449442d3132333435363738803367af7728fcfcd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987", - "3 | Tip : POLYX 55.555555" + "2 | Local key : 18229489886197920640", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987", + "2 | Local key : 18229489886197920640", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 825, "name": "Asset_Remove_local_metadata_key", - "blob": "1a17417373657449442d313233343536373813bd357abd5dd135d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a17417373657449442d3132333435363738803367af7728fcfcd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987" + "2 | Local key : 18229489886197920640", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove local metadata key", "1 | Asset id : AssetID-12345678", - "2 | Local key : 3877983822523251987", + "2 | Local key : 18229489886197920640", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 826, "name": "Asset_Remove_metadata_value", - "blob": "1a18417373657449442d313233343536373801a75343831629a10cd503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a18417373657449442d31323334353637380088e666f3cd7fdf19d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Metadata key : 1864349293283305096", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", + "2 | Metadata key : 1864349293283305096", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 827, "name": "Asset_Remove_metadata_value", - "blob": "1a18417373657449442d313233343536373800b88d6ea4823a0137d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a18417373657449442d313233343536373801e6f173475b0724e9d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 3963513479841615288", + "2 | Metadata key : 16799560598620991974", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 3963513479841615288", + "2 | Metadata key : 16799560598620991974", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 828, "name": "Asset_Remove_metadata_value", - "blob": "1a18417373657449442d313233343536373801a75343831629a10cd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a18417373657449442d31323334353637380088e666f3cd7fdf19d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", - "3 | Tip : POLYX 5552342.355555" + "2 | Metadata key : 1864349293283305096" ], "output_expert": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", + "2 | Metadata key : 1864349293283305096", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 829, "name": "Asset_Remove_metadata_value", - "blob": "1a18417373657449442d313233343536373801a75343831629a10cd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a18417373657449442d313233343536373801e6f173475b0724e9d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", - "3 | Tip : POLYX 1234.56789" + "2 | Metadata key : 16799560598620991974", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", + "2 | Metadata key : 16799560598620991974", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 830, "name": "Asset_Remove_metadata_value", - "blob": "1a18417373657449442d313233343536373801a75343831629a10cd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a18417373657449442d31323334353637380088e666f3cd7fdf19d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Metadata key : 1864349293283305096", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove metadata value", "1 | Asset id : AssetID-12345678", - "2 | Metadata key : 910053776373797799", + "2 | Metadata key : 1864349293283305096", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 831, "name": "Asset_Exempt_asset_affirmation", - "blob": "1a19417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a19417373657449442d3132333435363738d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Exempt asset affirmation", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 832, "name": "Asset_Exempt_asset_affirmation", - "blob": "1a19417373657449442d3132333435363738d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a19417373657449442d3132333435363738d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 833, "name": "Asset_Exempt_asset_affirmation", - "blob": "1a19417373657449442d3132333435363738d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a19417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 834, "name": "Asset_Exempt_asset_affirmation", - "blob": "1a19417373657449442d3132333435363738d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a19417373657449442d3132333435363738d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 835, "name": "Asset_Exempt_asset_affirmation", - "blob": "1a19417373657449442d3132333435363738d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a19417373657449442d3132333435363738d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Asset : Exempt asset affirmation", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 836, "name": "Asset_Remove_asset_affirmation_exemption", - "blob": "1a1a417373657449442d3132333435363738d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1a417373657449442d3132333435363738d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 837, "name": "Asset_Remove_asset_affirmation_exemption", - "blob": "1a1a417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1a417373657449442d3132333435363738d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 838, "name": "Asset_Remove_asset_affirmation_exemption", - "blob": "1a1a417373657449442d3132333435363738d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1a417373657449442d3132333435363738d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", @@ -21796,41 +21794,37 @@ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 839, "name": "Asset_Remove_asset_affirmation_exemption", - "blob": "1a1a417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1a417373657449442d3132333435363738d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset affirmation exemption", - "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 840, "name": "Asset_Remove_asset_affirmation_exemption", - "blob": "1a1a417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1a417373657449442d3132333435363738d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678" @@ -21839,57 +21833,59 @@ "0 | Asset : Remove asset affirmation exemption", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 841, "name": "Asset_Pre_approve_asset", - "blob": "1a1b417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1b417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Pre approve asset", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 842, "name": "Asset_Pre_approve_asset", - "blob": "1a1b417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1b417373657449442d3132333435363738d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Pre approve asset", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 843, "name": "Asset_Pre_approve_asset", - "blob": "1a1b417373657449442d3132333435363738d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1b417373657449442d3132333435363738d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678" @@ -21898,569 +21894,537 @@ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 844, "name": "Asset_Pre_approve_asset", - "blob": "1a1b417373657449442d3132333435363738d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1b417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 845, "name": "Asset_Pre_approve_asset", - "blob": "1a1b417373657449442d3132333435363738d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1b417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Pre approve asset", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 846, "name": "Asset_Remove_asset_pre_approval", - "blob": "1a1c417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1c417373657449442d3132333435363738d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 847, "name": "Asset_Remove_asset_pre_approval", - "blob": "1a1c417373657449442d3132333435363738d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1c417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset pre approval", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 848, "name": "Asset_Remove_asset_pre_approval", - "blob": "1a1c417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1c417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset pre approval", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 849, "name": "Asset_Remove_asset_pre_approval", - "blob": "1a1c417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1c417373657449442d3132333435363738d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 850, "name": "Asset_Remove_asset_pre_approval", - "blob": "1a1c417373657449442d3132333435363738d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1c417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Remove asset pre approval", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 851, "name": "Asset_Add_mandatory_mediators", - "blob": "1a1d417373657449442d31323334353637381006f85975d20e64e891731eec73a7a058ace33bcc44106ee549054b98d5d6aae11af80cd038fb759a89f3cf8eb4ad9b3f2b22564e52b8e702578bfbedfa4b11b92341794de3e9e4078f0bf7cd4ba71c5add5af3420eb1792c57e0f2b4363b8280fd3df95ac3066918a977997396bb35f4b4586c86c78ec591cee94dc42278c4c3d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1d417373657449442d31323334353637380851b0dd900b641cd1d07e0c60458c3af22486018bf1e220115b0e054d06962efcdbe7546ef1647973aee22c22ea7c6c8a54a367ea400b9e43da826e402433962bd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", - "3 | Tip : POLYX 1234.56789" + "2 | Mediators [1/4] : 51b0dd900b641cd1d07e0c60458c3af2248601", + "2 | Mediators [2/4] : 8bf1e220115b0e054d06962efc", + "2 | Mediators [3/4] : dbe7546ef1647973aee22c22ea7c6c8a54a367", + "2 | Mediators [4/4] : ea400b9e43da826e402433962b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/4] : 51b0dd900b641cd1d07e0c60458c3af2248601", + "2 | Mediators [2/4] : 8bf1e220115b0e054d06962efc", + "2 | Mediators [3/4] : dbe7546ef1647973aee22c22ea7c6c8a54a367", + "2 | Mediators [4/4] : ea400b9e43da826e402433962b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 852, "name": "Asset_Add_mandatory_mediators", - "blob": "1a1d417373657449442d3132333435363738084df8207ee134ca9475ca164e3dfd165c6a311e5edc5450a5ca961f7296cf6705f71300ed27ac3fde0df904e14c6a2dee8c0463c527e35f14ce1bc932c64ba76bd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1d417373657449442d3132333435363738080c7beccaed4e09f0160ce50e4d8214615f671d79ed69737076cd2cfd80f5e5f86f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e14c6866aff3409ce0e6dfec756d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 4df8207ee134ca9475ca164e3dfd165c6a311e", - "2 | Mediators [2/4] : 5edc5450a5ca961f7296cf6705", - "2 | Mediators [3/4] : f71300ed27ac3fde0df904e14c6a2dee8c0463", - "2 | Mediators [4/4] : c527e35f14ce1bc932c64ba76b", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 4df8207ee134ca9475ca164e3dfd165c6a311e", - "2 | Mediators [2/4] : 5edc5450a5ca961f7296cf6705", - "2 | Mediators [3/4] : f71300ed27ac3fde0df904e14c6a2dee8c0463", - "2 | Mediators [4/4] : c527e35f14ce1bc932c64ba76b", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 853, "name": "Asset_Add_mandatory_mediators", - "blob": "1a1d417373657449442d3132333435363738089c33623051fe487873e62d06445055b829ed8443fc5687eb31f8d07bb94abbfed8403829df3d6ff1534deb713e73e0cbac367c5282675dc831bc64080013fc7ed5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1d417373657449442d31323334353637380c557c4fc8c288d727a0d278034bd228fc46edf2115835afbc1c2dddf4a88c03b7a0ed7ebca54a15d1e687fb1c069f63952be98c8b4fd6b7c9ed81e7d4302e7b08c5aa991e383f329c109b2dbf4d5d3955dc6a841cda10c9033278100d2aa2e6ffd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 9c33623051fe487873e62d06445055b829ed84", - "2 | Mediators [2/4] : 43fc5687eb31f8d07bb94abbfe", - "2 | Mediators [3/4] : d8403829df3d6ff1534deb713e73e0cbac367c", - "2 | Mediators [4/4] : 5282675dc831bc64080013fc7e", - "3 | Tip : POLYX 55.555555" + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 9c33623051fe487873e62d06445055b829ed84", - "2 | Mediators [2/4] : 43fc5687eb31f8d07bb94abbfe", - "2 | Mediators [3/4] : d8403829df3d6ff1534deb713e73e0cbac367c", - "2 | Mediators [4/4] : 5282675dc831bc64080013fc7e", + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 854, "name": "Asset_Add_mandatory_mediators", - "blob": "1a1d417373657449442d31323334353637381006f85975d20e64e891731eec73a7a058ace33bcc44106ee549054b98d5d6aae11af80cd038fb759a89f3cf8eb4ad9b3f2b22564e52b8e702578bfbedfa4b11b92341794de3e9e4078f0bf7cd4ba71c5add5af3420eb1792c57e0f2b4363b8280fd3df95ac3066918a977997396bb35f4b4586c86c78ec591cee94dc42278c4c3d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1d417373657449442d31323334353637380c557c4fc8c288d727a0d278034bd228fc46edf2115835afbc1c2dddf4a88c03b7a0ed7ebca54a15d1e687fb1c069f63952be98c8b4fd6b7c9ed81e7d4302e7b08c5aa991e383f329c109b2dbf4d5d3955dc6a841cda10c9033278100d2aa2e6ffd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff" ], "output_expert": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 855, "name": "Asset_Add_mandatory_mediators", - "blob": "1a1d417373657449442d31323334353637380c40603e94e88d25c4bfd3ef6a7c9d91e1152824f4d8f1f5a43883e12947b40bc693efdf4f353734c7fb1bc986e624ebe1b1e14b7949574ad02b2fefa3ac648715f65ed909a8dd4c8927bbf0c504e7b5a1d8111f0021ab88b91612dfd2f19df6b4d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1d417373657449442d3132333435363738080c7beccaed4e09f0160ce50e4d8214615f671d79ed69737076cd2cfd80f5e5f86f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e14c6866aff3409ce0e6dfec756d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/6] : 40603e94e88d25c4bfd3ef6a7c9d91e1152824", - "2 | Mediators [2/6] : f4d8f1f5a43883e12947b40bc6", - "2 | Mediators [3/6] : 93efdf4f353734c7fb1bc986e624ebe1b1e14b", - "2 | Mediators [4/6] : 7949574ad02b2fefa3ac648715", - "2 | Mediators [5/6] : f65ed909a8dd4c8927bbf0c504e7b5a1d8111f", - "2 | Mediators [6/6] : 0021ab88b91612dfd2f19df6b4", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Add mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/6] : 40603e94e88d25c4bfd3ef6a7c9d91e1152824", - "2 | Mediators [2/6] : f4d8f1f5a43883e12947b40bc6", - "2 | Mediators [3/6] : 93efdf4f353734c7fb1bc986e624ebe1b1e14b", - "2 | Mediators [4/6] : 7949574ad02b2fefa3ac648715", - "2 | Mediators [5/6] : f65ed909a8dd4c8927bbf0c504e7b5a1d8111f", - "2 | Mediators [6/6] : 0021ab88b91612dfd2f19df6b4", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 856, "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1e417373657449442d31323334353637381006f85975d20e64e891731eec73a7a058ace33bcc44106ee549054b98d5d6aae11af80cd038fb759a89f3cf8eb4ad9b3f2b22564e52b8e702578bfbedfa4b11b92341794de3e9e4078f0bf7cd4ba71c5add5af3420eb1792c57e0f2b4363b8280fd3df95ac3066918a977997396bb35f4b4586c86c78ec591cee94dc42278c4c3d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1e417373657449442d3132333435363738080c7beccaed4e09f0160ce50e4d8214615f671d79ed69737076cd2cfd80f5e5f86f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e14c6866aff3409ce0e6dfec756d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 857, "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1e417373657449442d31323334353637380c40603e94e88d25c4bfd3ef6a7c9d91e1152824f4d8f1f5a43883e12947b40bc693efdf4f353734c7fb1bc986e624ebe1b1e14b7949574ad02b2fefa3ac648715f65ed909a8dd4c8927bbf0c504e7b5a1d8111f0021ab88b91612dfd2f19df6b4d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1e417373657449442d31323334353637380433b658d985e65c2efc376c32b66135091d96afa219d4ff0a403112896abc3011d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/6] : 40603e94e88d25c4bfd3ef6a7c9d91e1152824", - "2 | Mediators [2/6] : f4d8f1f5a43883e12947b40bc6", - "2 | Mediators [3/6] : 93efdf4f353734c7fb1bc986e624ebe1b1e14b", - "2 | Mediators [4/6] : 7949574ad02b2fefa3ac648715", - "2 | Mediators [5/6] : f65ed909a8dd4c8927bbf0c504e7b5a1d8111f", - "2 | Mediators [6/6] : 0021ab88b91612dfd2f19df6b4", + "2 | Mediators [1/2] : 33b658d985e65c2efc376c32b66135091d96af", + "2 | Mediators [2/2] : a219d4ff0a403112896abc3011", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/6] : 40603e94e88d25c4bfd3ef6a7c9d91e1152824", - "2 | Mediators [2/6] : f4d8f1f5a43883e12947b40bc6", - "2 | Mediators [3/6] : 93efdf4f353734c7fb1bc986e624ebe1b1e14b", - "2 | Mediators [4/6] : 7949574ad02b2fefa3ac648715", - "2 | Mediators [5/6] : f65ed909a8dd4c8927bbf0c504e7b5a1d8111f", - "2 | Mediators [6/6] : 0021ab88b91612dfd2f19df6b4", + "2 | Mediators [1/2] : 33b658d985e65c2efc376c32b66135091d96af", + "2 | Mediators [2/2] : a219d4ff0a403112896abc3011", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 858, "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1e417373657449442d31323334353637381006f85975d20e64e891731eec73a7a058ace33bcc44106ee549054b98d5d6aae11af80cd038fb759a89f3cf8eb4ad9b3f2b22564e52b8e702578bfbedfa4b11b92341794de3e9e4078f0bf7cd4ba71c5add5af3420eb1792c57e0f2b4363b8280fd3df95ac3066918a977997396bb35f4b4586c86c78ec591cee94dc42278c4c3d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1e417373657449442d3132333435363738080c7beccaed4e09f0160ce50e4d8214615f671d79ed69737076cd2cfd80f5e5f86f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e14c6866aff3409ce0e6dfec756d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3" + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/4] : 0c7beccaed4e09f0160ce50e4d8214615f671d", + "2 | Mediators [2/4] : 79ed69737076cd2cfd80f5e5f8", + "2 | Mediators [3/4] : 6f62aa9a31d5f9c9caad2b0011e93fb5ae8c2e", + "2 | Mediators [4/4] : 14c6866aff3409ce0e6dfec756", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 859, "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1e417373657449442d31323334353637381006f85975d20e64e891731eec73a7a058ace33bcc44106ee549054b98d5d6aae11af80cd038fb759a89f3cf8eb4ad9b3f2b22564e52b8e702578bfbedfa4b11b92341794de3e9e4078f0bf7cd4ba71c5add5af3420eb1792c57e0f2b4363b8280fd3df95ac3066918a977997396bb35f4b4586c86c78ec591cee94dc42278c4c3d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1e417373657449442d31323334353637380c557c4fc8c288d727a0d278034bd228fc46edf2115835afbc1c2dddf4a88c03b7a0ed7ebca54a15d1e687fb1c069f63952be98c8b4fd6b7c9ed81e7d4302e7b08c5aa991e383f329c109b2dbf4d5d3955dc6a841cda10c9033278100d2aa2e6ffd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", - "3 | Tip : POLYX 5552342.355555" + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff" ], "output_expert": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/8] : 06f85975d20e64e891731eec73a7a058ace33b", - "2 | Mediators [2/8] : cc44106ee549054b98d5d6aae1", - "2 | Mediators [3/8] : 1af80cd038fb759a89f3cf8eb4ad9b3f2b2256", - "2 | Mediators [4/8] : 4e52b8e702578bfbedfa4b11b9", - "2 | Mediators [5/8] : 2341794de3e9e4078f0bf7cd4ba71c5add5af3", - "2 | Mediators [6/8] : 420eb1792c57e0f2b4363b8280", - "2 | Mediators [7/8] : fd3df95ac3066918a977997396bb35f4b4586c", - "2 | Mediators [8/8] : 86c78ec591cee94dc42278c4c3", + "2 | Mediators [1/6] : 557c4fc8c288d727a0d278034bd228fc46edf2", + "2 | Mediators [2/6] : 115835afbc1c2dddf4a88c03b7", + "2 | Mediators [3/6] : a0ed7ebca54a15d1e687fb1c069f63952be98c", + "2 | Mediators [4/6] : 8b4fd6b7c9ed81e7d4302e7b08", + "2 | Mediators [5/6] : c5aa991e383f329c109b2dbf4d5d3955dc6a84", + "2 | Mediators [6/6] : 1cda10c9033278100d2aa2e6ff", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 860, "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1e417373657449442d3132333435363738084df8207ee134ca9475ca164e3dfd165c6a311e5edc5450a5ca961f7296cf6705f71300ed27ac3fde0df904e14c6a2dee8c0463c527e35f14ce1bc932c64ba76bd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1e417373657449442d31323334353637380851b0dd900b641cd1d07e0c60458c3af22486018bf1e220115b0e054d06962efcdbe7546ef1647973aee22c22ea7c6c8a54a367ea400b9e43da826e402433962bd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 4df8207ee134ca9475ca164e3dfd165c6a311e", - "2 | Mediators [2/4] : 5edc5450a5ca961f7296cf6705", - "2 | Mediators [3/4] : f71300ed27ac3fde0df904e14c6a2dee8c0463", - "2 | Mediators [4/4] : c527e35f14ce1bc932c64ba76b", - "3 | Tip : POLYX 5552342.355555" + "2 | Mediators [1/4] : 51b0dd900b641cd1d07e0c60458c3af2248601", + "2 | Mediators [2/4] : 8bf1e220115b0e054d06962efc", + "2 | Mediators [3/4] : dbe7546ef1647973aee22c22ea7c6c8a54a367", + "2 | Mediators [4/4] : ea400b9e43da826e402433962b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Asset : Remove mandatory mediators", "1 | Asset id : AssetID-12345678", - "2 | Mediators [1/4] : 4df8207ee134ca9475ca164e3dfd165c6a311e", - "2 | Mediators [2/4] : 5edc5450a5ca961f7296cf6705", - "2 | Mediators [3/4] : f71300ed27ac3fde0df904e14c6a2dee8c0463", - "2 | Mediators [4/4] : c527e35f14ce1bc932c64ba76b", + "2 | Mediators [1/4] : 51b0dd900b641cd1d07e0c60458c3af2248601", + "2 | Mediators [2/4] : 8bf1e220115b0e054d06962efc", + "2 | Mediators [3/4] : dbe7546ef1647973aee22c22ea7c6c8a54a367", + "2 | Mediators [4/4] : ea400b9e43da826e402433962b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 861, "name": "Asset_Link_ticker_to_asset_id", - "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 862, "name": "Asset_Link_ticker_to_asset_id", - "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Asset id : AssetID-12345678" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 863, "name": "Asset_Link_ticker_to_asset_id", - "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Asset id : AssetID-12345678" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 864, "name": "Asset_Link_ticker_to_asset_id", - "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", @@ -22476,163 +22440,278 @@ "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 865, "name": "Asset_Link_ticker_to_asset_id", - "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", - "3 | Tip : POLYX 1234.56789" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { "index": 866, + "name": "Asset_Unlink_ticker_from_asset_id", + "blob": "1a205449434b45522d3132333435417373657449442d3132333435363738d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 867, + "name": "Asset_Unlink_ticker_from_asset_id", + "blob": "1a205449434b45522d3132333435417373657449442d3132333435363738d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678" + ], + "output_expert": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 868, + "name": "Asset_Unlink_ticker_from_asset_id", + "blob": "1a205449434b45522d3132333435417373657449442d3132333435363738d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678" + ], + "output_expert": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 869, + "name": "Asset_Unlink_ticker_from_asset_id", + "blob": "1a205449434b45522d3132333435417373657449442d3132333435363738d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 870, + "name": "Asset_Unlink_ticker_from_asset_id", + "blob": "1a205449434b45522d3132333435417373657449442d3132333435363738d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Asset : Unlink ticker from asset id", + "1 | Ticker : TICKER-12345", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 871, "name": "Capitaldistribution_Distribute", - "blob": "1b00417373657449442d31323334353637386fec2100010000000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000010001000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000010008000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Tip : POLYX 55.555555" + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 2048" ], "output_expert": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", - "7 | Expires at : 256", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 2048", "8 | Chain : Polymesh", "9 | Nonce : 1", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 867, + "index": 872, "name": "Capitaldistribution_Distribute", - "blob": "1b00417373657449442d31323334353637386fec210001cadc000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d0001000000000000018000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b00417373657449442d31323334353637386fec210001bb13000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000010001000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 256", - "7 | Expires at : 128" + "7 | Expires at : 256", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 256", - "7 | Expires at : 128", + "7 | Expires at : 256", "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 0", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 868, + "index": 873, "name": "Capitaldistribution_Distribute", - "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d0008000000000000010008000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b00417373657449442d31323334353637386fec210001bb13000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000018000000000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 2048", - "7 | Expires at : 2048" + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 128", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 2048", - "7 | Expires at : 2048", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 128", "8 | Chain : Polymesh", "9 | Nonce : 100", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 869, + "index": 874, "name": "Capitaldistribution_Distribute", - "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000018000000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0008000000000000018000000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 2048", "7 | Expires at : 128", - "8 | Tip : POLYX 1234.56789" + "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Capitaldistribution : Distribute", @@ -22640,36 +22719,36 @@ "1 | Ca id [2/2] : 2223215", "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 2048", "7 | Expires at : 128", "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", + "9 | Nonce : 2339", + "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 870, + "index": 875, "name": "Capitaldistribution_Distribute", - "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b00417373657449442d31323334353637386fec210001bb13000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0008000000000000010001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 2048", "7 | Expires at : 256", "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", "8 | Tip [2/2] : 3.456789" @@ -22678,28 +22757,28 @@ "0 | Capitaldistribution : Distribute", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 2048", "7 | Expires at : 256", "8 | Chain : Polymesh", - "9 | Nonce : 50283", + "9 | Nonce : 100", "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", "10 | Tip [2/2] : 3.456789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 871, + "index": 876, "name": "Capitaldistribution_Claim", - "blob": "1b01417373657449442d31323334353637386fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b01417373657449442d31323334353637386fec2100d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", @@ -22712,23 +22791,24 @@ "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 872, + "index": 877, "name": "Capitaldistribution_Claim", - "blob": "1b01417373657449442d31323334353637386fec2100d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b01417373657449442d31323334353637386fec2100d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Capitaldistribution : Claim", @@ -22736,219 +22816,232 @@ "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 873, + "index": 878, "name": "Capitaldistribution_Claim", - "blob": "1b01417373657449442d31323334353637386fec2100d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b01417373657449442d31323334353637386fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 874, + "index": 879, "name": "Capitaldistribution_Claim", - "blob": "1b01417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b01417373657449442d31323334353637386fec2100d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 875, + "index": 880, "name": "Capitaldistribution_Claim", - "blob": "1b01417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b01417373657449442d31323334353637386fec2100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Capitaldistribution : Claim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 876, + "index": 881, "name": "Capitaldistribution_Push_benefit", - "blob": "1b02417373657449442d31323334353637386fec2100117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b02417373657449442d31323334353637386fec21002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4" + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] }, { - "index": 877, + "index": 882, "name": "Capitaldistribution_Push_benefit", - "blob": "1b02417373657449442d31323334353637386fec2100117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b02417373657449442d31323334353637386fec21002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 878, + "index": 883, "name": "Capitaldistribution_Push_benefit", - "blob": "1b02417373657449442d31323334353637386fec2100117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b02417373657449442d31323334353637386fec21002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 879, + "index": 884, "name": "Capitaldistribution_Push_benefit", - "blob": "1b02417373657449442d31323334353637386fec2100117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b02417373657449442d31323334353637386fec21002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4" + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 880, + "index": 885, "name": "Capitaldistribution_Push_benefit", - "blob": "1b02417373657449442d31323334353637386fec2100117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b02417373657449442d31323334353637386fec21002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Push benefit", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Holder [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Holder [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Holder [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 881, + "index": 886, "name": "Capitaldistribution_Reclaim", - "blob": "1b03417373657449442d31323334353637386fec2100d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b03417373657449442d31323334353637386fec2100d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Capitaldistribution : Reclaim", @@ -22956,61 +23049,63 @@ "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 882, + "index": 887, "name": "Capitaldistribution_Reclaim", - "blob": "1b03417373657449442d31323334353637386fec2100d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b03417373657449442d31323334353637386fec2100d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 883, + "index": 888, "name": "Capitaldistribution_Reclaim", - "blob": "1b03417373657449442d31323334353637386fec2100d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b03417373657449442d31323334353637386fec2100d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 884, + "index": 889, "name": "Capitaldistribution_Reclaim", - "blob": "1b03417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b03417373657449442d31323334353637386fec2100d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", @@ -23022,131 +23117,135 @@ "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 885, + "index": 890, "name": "Capitaldistribution_Reclaim", - "blob": "1b03417373657449442d31323334353637386fec2100d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b03417373657449442d31323334353637386fec2100d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Reclaim", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 886, + "index": 891, "name": "Capitaldistribution_Remove_distribution", - "blob": "1b04417373657449442d31323334353637386fec2100d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b04417373657449442d31323334353637386fec2100d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 887, + "index": 892, "name": "Capitaldistribution_Remove_distribution", - "blob": "1b04417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b04417373657449442d31323334353637386fec2100d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 888, + "index": 893, "name": "Capitaldistribution_Remove_distribution", - "blob": "1b04417373657449442d31323334353637386fec2100d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b04417373657449442d31323334353637386fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 889, + "index": 894, "name": "Capitaldistribution_Remove_distribution", - "blob": "1b04417373657449442d31323334353637386fec2100d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b04417373657449442d31323334353637386fec2100d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 890, + "index": 895, "name": "Capitaldistribution_Remove_distribution", - "blob": "1b04417373657449442d31323334353637386fec2100d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1b04417373657449442d31323334353637386fec2100d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Capitaldistribution : Remove distribution", "1 | Ca id [1/2] : AssetID-12345678", @@ -23157,38 +23256,38 @@ "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 891, + "index": 896, "name": "Checkpoint_Create_checkpoint", - "blob": "1c00417373657449442d3132333435363738d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c00417373657449442d3132333435363738d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 892, + "index": 897, "name": "Checkpoint_Create_checkpoint", - "blob": "1c00417373657449442d3132333435363738d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c00417373657449442d3132333435363738d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", @@ -23198,18 +23297,18 @@ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 893, + "index": 898, "name": "Checkpoint_Create_checkpoint", - "blob": "1c00417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c00417373657449442d3132333435363738d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", @@ -23223,599 +23322,620 @@ "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 894, + "index": 899, "name": "Checkpoint_Create_checkpoint", - "blob": "1c00417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c00417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 895, + "index": 900, "name": "Checkpoint_Create_checkpoint", - "blob": "1c00417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c00417373657449442d3132333435363738d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Checkpoint : Create checkpoint", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 896, + "index": 901, "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016bc4000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c010000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 50283", + "1 | Max complexity : 0", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 50283", + "1 | Max complexity : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 897, + "index": 902, "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c010100000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip : POLYX 55.555555" + "1 | Max complexity : 1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", + "1 | Max complexity : 1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 898, + "index": 903, "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c010000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c016bc4000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", - "2 | Tip : POLYX 0.000987" + "1 | Max complexity : 50283" ], "output_expert": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", + "1 | Max complexity : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 899, + "index": 904, "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c010100000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip : POLYX 0.000987" + "1 | Max complexity : 1" ], "output_expert": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", + "1 | Max complexity : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 900, + "index": 905, "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c012309000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Max complexity : 2339", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", + "1 | Max complexity : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 901, + "index": 906, "name": "Checkpoint_Create_schedule", - "blob": "1c02417373657449442d313233343536373804e54e15ff993a5bc0d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c02417373657449442d313233343536373804519cdfbf1154951fd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237", + "2 | Schedule : 2275817621915933777", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237", + "2 | Schedule : 2275817621915933777", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 902, + "index": 907, "name": "Checkpoint_Create_schedule", - "blob": "1c02417373657449442d31323334353637380c23e5ad7a0229f636db04a9e914a3109552c948097e92e4bbd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c02417373657449442d31323334353637380c2159a4bc860ab65ca1d8001f35b92b93295ac6af2b8f82aed5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule [1/3] : 3960398012943820067", - "2 | Schedule [2/3] : 10741264421493474523", - "2 | Schedule [3/3] : 13539107449801853266" + "2 | Schedule [1/3] : 6680538671057492257", + "2 | Schedule [2/3] : 10604773385378519201", + "2 | Schedule [3/3] : 12574770527367223849" ], "output_expert": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule [1/3] : 3960398012943820067", - "2 | Schedule [2/3] : 10741264421493474523", - "2 | Schedule [3/3] : 13539107449801853266", + "2 | Schedule [1/3] : 6680538671057492257", + "2 | Schedule [2/3] : 10604773385378519201", + "2 | Schedule [3/3] : 12574770527367223849", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 903, + "index": 908, "name": "Checkpoint_Create_schedule", - "blob": "1c02417373657449442d313233343536373804e54e15ff993a5bc0d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c02417373657449442d31323334353637380c2159a4bc860ab65ca1d8001f35b92b93295ac6af2b8f82aed503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237" + "2 | Schedule [1/3] : 6680538671057492257", + "2 | Schedule [2/3] : 10604773385378519201", + "2 | Schedule [3/3] : 12574770527367223849" ], "output_expert": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237", + "2 | Schedule [1/3] : 6680538671057492257", + "2 | Schedule [2/3] : 10604773385378519201", + "2 | Schedule [3/3] : 12574770527367223849", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 904, + "index": 909, "name": "Checkpoint_Create_schedule", - "blob": "1c02417373657449442d313233343536373804e54e15ff993a5bc0d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c02417373657449442d313233343536373800d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237", - "3 | Tip : POLYX 55.555555" + "2 | Schedule : ", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : 13860736711246827237", + "2 | Schedule : ", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 905, + "index": 910, "name": "Checkpoint_Create_schedule", - "blob": "1c02417373657449442d313233343536373800d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c02417373657449442d313233343536373804519cdfbf1154951fd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : " + "2 | Schedule : 2275817621915933777", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Checkpoint : Create schedule", "1 | Asset id : AssetID-12345678", - "2 | Schedule : ", + "2 | Schedule : 2275817621915933777", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 906, + "index": 911, "name": "Checkpoint_Remove_schedule", - "blob": "1c03417373657449442d3132333435363738150e020000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c03417373657449442d31323334353637389f09d20000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 134677", - "3 | Tip : POLYX 0.000987" + "2 | Id : 13765023", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 134677", + "2 | Id : 13765023", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 907, + "index": 912, "name": "Checkpoint_Remove_schedule", - "blob": "1c03417373657449442d31323334353637385398250000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c03417373657449442d3132333435363738150e020000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 2463827" + "2 | Id : 134677" ], "output_expert": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 2463827", + "2 | Id : 134677", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 908, + "index": 913, "name": "Checkpoint_Remove_schedule", - "blob": "1c03417373657449442d31323334353637389f09d20000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c03417373657449442d3132333435363738e793190000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 13765023", - "3 | Tip : POLYX 55.555555" + "2 | Id : 1676263", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 13765023", + "2 | Id : 1676263", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 909, + "index": 914, "name": "Checkpoint_Remove_schedule", - "blob": "1c03417373657449442d3132333435363738150e020000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c03417373657449442d31323334353637385398250000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 134677", - "3 | Tip : POLYX 1234.56789" + "2 | Id : 2463827" ], "output_expert": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 134677", + "2 | Id : 2463827", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 910, + "index": 915, "name": "Checkpoint_Remove_schedule", - "blob": "1c03417373657449442d31323334353637389cdb460000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1c03417373657449442d31323334353637381c42030000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 4643740" + "2 | Id : 213532", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Checkpoint : Remove schedule", "1 | Asset id : AssetID-12345678", - "2 | Id : 4643740", + "2 | Id : 213532", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 911, + "index": 916, "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d00417373657449442d31323334353637380004000001417373657449442d3132333435363738080fc6993e116799719d6e46e5ea960da5a79ab3481c5b84a2d3cd2ef6f6c2051d0038602cb0415a46b2a87ff0f17a67353141c0e0a086e0fba9fecc279f5de9ef1300d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d00417373657449442d31323334353637380000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", "2 | Sender conditions : ", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : AssetID-12345678", - "3 | Receiver conditions [3/8] : 0fc6993e116799719d6e46e5ea960da5a79ab3", - "3 | Receiver conditions [4/8] : 481c5b84a2d3cd2ef6f6c2051d", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : 38602cb0415a46b2a87ff0f17a67353141c0e0", - "3 | Receiver conditions [7/8] : a086e0fba9fecc279f5de9ef13", - "3 | Receiver conditions [8/8] : Any", - "4 | Tip : POLYX 5552342.355555" + "3 | Receiver conditions : ", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", "2 | Sender conditions : ", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : AssetID-12345678", - "3 | Receiver conditions [3/8] : 0fc6993e116799719d6e46e5ea960da5a79ab3", - "3 | Receiver conditions [4/8] : 481c5b84a2d3cd2ef6f6c2051d", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : 38602cb0415a46b2a87ff0f17a67353141c0e0", - "3 | Receiver conditions [7/8] : a086e0fba9fecc279f5de9ef13", - "3 | Receiver conditions [8/8] : Any", + "3 | Receiver conditions : ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 912, + "index": 917, "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d00417373657449442d31323334353637380404000004040000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d00417373657449442d31323334353637380004040000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Tip : POLYX 55.555555" + "2 | Sender conditions : ", + "3 | Receiver conditions : ExternalAgent" ], "output_expert": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ExternalAgent", + "2 | Sender conditions : ", "3 | Receiver conditions : ExternalAgent", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 913, + "index": 918, "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d00417373657449442d31323334353637380000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d00417373657449442d31323334353637380004040000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", "2 | Sender conditions : ", - "3 | Receiver conditions : ", - "4 | Tip : POLYX 1234.56789" + "3 | Receiver conditions : ExternalAgent", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", "2 | Sender conditions : ", - "3 | Receiver conditions : ", + "3 | Receiver conditions : ExternalAgent", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 914, + "index": 919, "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d00417373657449442d31323334353637380404000004040000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d00417373657449442d313233343536373804000001417373657449442d313233343536373808096b02e1fd532d9725b704451d2eac6eb467bca19c5c3bee8448f9e166636952008a3196e3473197cc5a858026c21427f0a61c5adfc01c5b200f66c3031f9a65540004000001417373657449442d313233343536373808096b02e1fd532d9725b704451d2eac6eb467bca19c5c3bee8448f9e166636952008a3196e3473197cc5a858026c21427f0a61c5adfc01c5b200f66c3031f9a655400d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Tip : POLYX 5552342.355555" + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 096b02e1fd532d9725b704451d2eac6eb467bc", + "2 | Sender conditions [4/8] : a19c5c3bee8448f9e166636952", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 8a3196e3473197cc5a858026c21427f0a61c5a", + "2 | Sender conditions [7/8] : dfc01c5b200f66c3031f9a6554", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 096b02e1fd532d9725b704451d2eac6eb467bc", + "3 | Receiver conditions [4/8] : a19c5c3bee8448f9e166636952", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 8a3196e3473197cc5a858026c21427f0a61c5a", + "3 | Receiver conditions [7/8] : dfc01c5b200f66c3031f9a6554", + "3 | Receiver conditions [8/8] : Any", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 096b02e1fd532d9725b704451d2eac6eb467bc", + "2 | Sender conditions [4/8] : a19c5c3bee8448f9e166636952", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 8a3196e3473197cc5a858026c21427f0a61c5a", + "2 | Sender conditions [7/8] : dfc01c5b200f66c3031f9a6554", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 096b02e1fd532d9725b704451d2eac6eb467bc", + "3 | Receiver conditions [4/8] : a19c5c3bee8448f9e166636952", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 8a3196e3473197cc5a858026c21427f0a61c5a", + "3 | Receiver conditions [7/8] : dfc01c5b200f66c3031f9a6554", + "3 | Receiver conditions [8/8] : Any", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 915, + "index": 920, "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d00417373657449442d31323334353637380004040000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d00417373657449442d31323334353637380404000004040000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ", - "3 | Receiver conditions : ExternalAgent" + "2 | Sender conditions : ExternalAgent", + "3 | Receiver conditions : ExternalAgent", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Add compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Sender conditions : ", + "2 | Sender conditions : ExternalAgent", "3 | Receiver conditions : ExternalAgent", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 916, + "index": 921, "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d01417373657449442d313233343536373800000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d01417373657449442d3132333435363738f7010000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 0", - "3 | Tip : POLYX 55.555555" + "2 | Id : 503", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 917, + "index": 922, "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d01417373657449442d313233343536373834300000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d01417373657449442d313233343536373800000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 12340" + "2 | Id : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 12340", + "2 | Id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 918, + "index": 923, "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d01417373657449442d313233343536373834300000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d01417373657449442d3132333435363738f7010000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 12340", - "3 | Tip : POLYX 5552342.355555" + "2 | Id : 503", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 12340", + "2 | Id : 503", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 919, + "index": 924, "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d01417373657449442d313233343536373834300000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d01417373657449442d313233343536373834300000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 12340" + "2 | Id : 12340", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Remove compliance requirement", @@ -23823,357 +23943,388 @@ "2 | Id : 12340", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 920, + "index": 925, "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d01417373657449442d3132333435363738f7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d01417373657449442d31323334353637389d1c0000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Id : 7325", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Compliancemanager : Remove compliance requirement", "1 | Asset id : AssetID-12345678", - "2 | Id : 503", + "2 | Id : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 921, + "index": 926, "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d02417373657449442d31323334353637380404000001417373657449442d3537383632323132080f59259466a9a4339cac76e379465b4f9c37a80b496bc5c64bdb1a3d73aae58600a59df2516cfc0a96de8b573139d51f5be994aa6ad4c32265c8202237416f3ed2000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208f4d668de641c06b63bb6cf3ed9577e6d2fbe6e9fb3c2ff0a9e9caabccd145d2500c520bfbf1ab1754e424a3bded3e7798dbef289e2d6371ce1f4782d0a5edb6286000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", "2 | Asset compliance [10/10] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 922, + "index": 927, "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d02417373657449442d313233343536373800d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208f4d668de641c06b63bb6cf3ed9577e6d2fbe6e9fb3c2ff0a9e9caabccd145d2500c520bfbf1ab1754e424a3bded3e7798dbef289e2d6371ce1f4782d0a5edb6286000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Asset compliance : " + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Asset compliance : ", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 923, + "index": 928, "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d02417373657449442d313233343536373800d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208f4d668de641c06b63bb6cf3ed9577e6d2fbe6e9fb3c2ff0a9e9caabccd145d2500c520bfbf1ab1754e424a3bded3e7798dbef289e2d6371ce1f4782d0a5edb6286000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Asset compliance : " + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Asset compliance : ", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 924, + "index": 929, "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d02417373657449442d31323334353637380404000001417373657449442d3537383632323132080f59259466a9a4339cac76e379465b4f9c37a80b496bc5c64bdb1a3d73aae58600a59df2516cfc0a96de8b573139d51f5be994aa6ad4c32265c8202237416f3ed2000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208f4d668de641c06b63bb6cf3ed9577e6d2fbe6e9fb3c2ff0a9e9caabccd145d2500c520bfbf1ab1754e424a3bded3e7798dbef289e2d6371ce1f4782d0a5edb6286000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 1234.56789" + "2 | Asset compliance [10/10] : 0" ], "output_expert": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 925, + "index": 930, "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d02417373657449442d31323334353637380404000001417373657449442d3537383632323132080f59259466a9a4339cac76e379465b4f9c37a80b496bc5c64bdb1a3d73aae58600a59df2516cfc0a96de8b573139d51f5be994aa6ad4c32265c8202237416f3ed2000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208f4d668de641c06b63bb6cf3ed9577e6d2fbe6e9fb3c2ff0a9e9caabccd145d2500c520bfbf1ab1754e424a3bded3e7798dbef289e2d6371ce1f4782d0a5edb6286000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Compliancemanager : Replace asset compliance", "1 | Asset id : AssetID-12345678", "2 | Asset compliance [1/10] : Accredited", "2 | Asset compliance [2/10] : AssetID-57862212", - "2 | Asset compliance [3/10] : 0f59259466a9a4339cac76e379465b4f9c37a8", - "2 | Asset compliance [4/10] : 0b496bc5c64bdb1a3d73aae586", + "2 | Asset compliance [3/10] : f4d668de641c06b63bb6cf3ed9577e6d2fbe6e", + "2 | Asset compliance [4/10] : 9fb3c2ff0a9e9caabccd145d25", "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : a59df2516cfc0a96de8b573139d51f5be994aa", - "2 | Asset compliance [7/10] : 6ad4c32265c8202237416f3ed2", + "2 | Asset compliance [6/10] : c520bfbf1ab1754e424a3bded3e7798dbef289", + "2 | Asset compliance [7/10] : e2d6371ce1f4782d0a5edb6286", "2 | Asset compliance [8/10] : Any", "2 | Asset compliance [9/10] : ", "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 926, + "index": 931, "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d03417373657449442d3132333435363738d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d03417373657449442d3132333435363738d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Reset asset compliance", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 927, + "index": 932, "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d03417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d03417373657449442d3132333435363738d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Reset asset compliance", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 928, + "index": 933, "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d03417373657449442d3132333435363738d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d03417373657449442d3132333435363738d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 929, + "index": 934, "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d03417373657449442d3132333435363738d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d03417373657449442d3132333435363738d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 930, + "index": 935, "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d03417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d03417373657449442d3132333435363738d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Reset asset compliance", - "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Compliancemanager : Reset asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 931, + "index": 936, "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d04417373657449442d3132333435363738d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d04417373657449442d3132333435363738d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 932, + "index": 937, "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d04417373657449442d3132333435363738d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d04417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 933, + "index": 938, "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d04417373657449442d3132333435363738d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d04417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", @@ -24187,77 +24338,77 @@ "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 934, + "index": 939, "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d04417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d04417373657449442d3132333435363738d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 935, + "index": 940, "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d04417373657449442d3132333435363738d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d04417373657449442d3132333435363738d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Pause asset compliance", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Compliancemanager : Pause asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 936, + "index": 941, "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d05417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d05417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 937, + "index": 942, "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d05417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d05417373657449442d3132333435363738d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", @@ -24267,429 +24418,429 @@ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 938, + "index": 943, "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d05417373657449442d3132333435363738d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d05417373657449442d3132333435363738d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 939, + "index": 944, "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d05417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d05417373657449442d3132333435363738d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 940, + "index": 945, "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d05417373657449442d3132333435363738d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d05417373657449442d3132333435363738d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Resume asset compliance", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Compliancemanager : Resume asset compliance", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 941, + "index": 946, "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d06417373657449442d3132333435363738f219feaf3a1e75fd480d0f702823fac840e72157efad6d6aaeeba3085d90c3f700d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d06417373657449442d31323334353637380f19796883d6331f91a2b1112464e4e4998c9f446b7b39a73ee8cfcd67eb2aa600d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 5552342.355555" + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", + "2 | Issuer [3/3] : Any" ], "output_expert": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 942, + "index": 947, "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d06417373657449442d3132333435363738f219feaf3a1e75fd480d0f702823fac840e72157efad6d6aaeeba3085d90c3f700d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d06417373657449442d31323334353637380f19796883d6331f91a2b1112464e4e4998c9f446b7b39a73ee8cfcd67eb2aa600d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", - "2 | Issuer [3/3] : Any" + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", + "2 | Issuer [3/3] : Any", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 943, + "index": 948, "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d06417373657449442d3132333435363738f219feaf3a1e75fd480d0f702823fac840e72157efad6d6aaeeba3085d90c3f700d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d06417373657449442d31323334353637380f19796883d6331f91a2b1112464e4e4998c9f446b7b39a73ee8cfcd67eb2aa600d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 944, + "index": 949, "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d06417373657449442d3132333435363738f219feaf3a1e75fd480d0f702823fac840e72157efad6d6aaeeba3085d90c3f700d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d06417373657449442d31323334353637380f19796883d6331f91a2b1112464e4e4998c9f446b7b39a73ee8cfcd67eb2aa600d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", - "2 | Issuer [3/3] : Any" + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 945, + "index": 950, "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d06417373657449442d3132333435363738f219feaf3a1e75fd480d0f702823fac840e72157efad6d6aaeeba3085d90c3f700d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d06417373657449442d31323334353637380f19796883d6331f91a2b1112464e4e4998c9f446b7b39a73ee8cfcd67eb2aa600d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Add default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/3] : f219feaf3a1e75fd480d0f702823fac840e721", - "2 | Issuer [2/3] : 57efad6d6aaeeba3085d90c3f7", + "2 | Issuer [1/3] : 0f19796883d6331f91a2b1112464e4e4998c9f", + "2 | Issuer [2/3] : 446b7b39a73ee8cfcd67eb2aa6", "2 | Issuer [3/3] : Any", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 946, + "index": 951, "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d07417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d07417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 1234.56789" + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 947, + "index": 952, "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d07417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d07417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 948, + "index": 953, "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d07417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d07417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 0.000987" + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 949, + "index": 954, "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d07417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d07417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 950, + "index": 955, "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d07417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d07417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4" + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Remove default trusted claim issuer", "1 | Asset id : AssetID-12345678", - "2 | Issuer [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Issuer [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Issuer [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Issuer [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 951, + "index": 956, "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d08417373657449442d313233343536373804000001417373657449442d35373836323231320876968c40c62884b3469f3e85137e3dbcd034b17183b959d9cbe4656bdd1e1450006399b8f65f9fa2392ec5b2ba895fc82532094b97a84c372d7f7e96397f93d8f6000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208e7ff119e1df21bf1a46b145c34949b0aed0e4a99ad72102f5a1ddf31d9e3c0cf0083da354fd65b32a9103f2ed8d0a63a62b2d883db7fbab78bd53a159f25ffc493000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 55.555555" + "2 | New req [10/10] : 0" ], "output_expert": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 952, + "index": 957, "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d08417373657449442d313233343536373804000001417373657449442d35373836323231320876968c40c62884b3469f3e85137e3dbcd034b17183b959d9cbe4656bdd1e1450006399b8f65f9fa2392ec5b2ba895fc82532094b97a84c372d7f7e96397f93d8f6000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208e7ff119e1df21bf1a46b145c34949b0aed0e4a99ad72102f5a1ddf31d9e3c0cf0083da354fd65b32a9103f2ed8d0a63a62b2d883db7fbab78bd53a159f25ffc493000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 953, + "index": 958, "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d08417373657449442d313233343536373804000001417373657449442d35373836323231320876968c40c62884b3469f3e85137e3dbcd034b17183b959d9cbe4656bdd1e1450006399b8f65f9fa2392ec5b2ba895fc82532094b97a84c372d7f7e96397f93d8f6000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208e7ff119e1df21bf1a46b145c34949b0aed0e4a99ad72102f5a1ddf31d9e3c0cf0083da354fd65b32a9103f2ed8d0a63a62b2d883db7fbab78bd53a159f25ffc493000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", @@ -24700,221 +24851,219 @@ "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 954, + "index": 959, "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d08417373657449442d313233343536373804000001417373657449442d35373836323231320876968c40c62884b3469f3e85137e3dbcd034b17183b959d9cbe4656bdd1e1450006399b8f65f9fa2392ec5b2ba895fc82532094b97a84c372d7f7e96397f93d8f6000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208e7ff119e1df21bf1a46b145c34949b0aed0e4a99ad72102f5a1ddf31d9e3c0cf0083da354fd65b32a9103f2ed8d0a63a62b2d883db7fbab78bd53a159f25ffc493000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 955, + "index": 960, "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d08417373657449442d313233343536373804000001417373657449442d35373836323231320876968c40c62884b3469f3e85137e3dbcd034b17183b959d9cbe4656bdd1e1450006399b8f65f9fa2392ec5b2ba895fc82532094b97a84c372d7f7e96397f93d8f6000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208e7ff119e1df21bf1a46b145c34949b0aed0e4a99ad72102f5a1ddf31d9e3c0cf0083da354fd65b32a9103f2ed8d0a63a62b2d883db7fbab78bd53a159f25ffc493000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Compliancemanager : Change compliance requirement", "1 | Asset id : AssetID-12345678", "2 | New req [1/10] : Accredited", "2 | New req [2/10] : AssetID-57862212", - "2 | New req [3/10] : 76968c40c62884b3469f3e85137e3dbcd034b1", - "2 | New req [4/10] : 7183b959d9cbe4656bdd1e1450", + "2 | New req [3/10] : e7ff119e1df21bf1a46b145c34949b0aed0e4a", + "2 | New req [4/10] : 99ad72102f5a1ddf31d9e3c0cf", "2 | New req [5/10] : Any", - "2 | New req [6/10] : 6399b8f65f9fa2392ec5b2ba895fc82532094b", - "2 | New req [7/10] : 97a84c372d7f7e96397f93d8f6", + "2 | New req [6/10] : 83da354fd65b32a9103f2ed8d0a63a62b2d883", + "2 | New req [7/10] : db7fbab78bd53a159f25ffc493", "2 | New req [8/10] : Any", "2 | New req [9/10] : ", "2 | New req [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 956, + "index": 961, "name": "Corporateaction_Set_max_details_length", - "blob": "1e009d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e009d1c0000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set max details length", "1 | Length : 7325", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Set max details length", "1 | Length : 7325", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 957, + "index": 962, "name": "Corporateaction_Set_max_details_length", - "blob": "1e00f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e009d1c0000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set max details length", - "1 | Length : 503", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Length : 7325", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Set max details length", - "1 | Length : 503", + "1 | Length : 7325", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 958, + "index": 963, "name": "Corporateaction_Set_max_details_length", - "blob": "1e00f7010000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e00f7010000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set max details length", "1 | Length : 503", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set max details length", "1 | Length : 503", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 959, + "index": 964, "name": "Corporateaction_Set_max_details_length", - "blob": "1e009d1c0000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e0034300000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Tip : POLYX 1234.56789" + "1 | Length : 12340", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Set max details length", - "1 | Length : 7325", + "1 | Length : 12340", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 960, + "index": 965, "name": "Corporateaction_Set_max_details_length", - "blob": "1e00f7010000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e0000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set max details length", - "1 | Length : 503" + "1 | Length : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Set max details length", - "1 | Length : 503", + "1 | Length : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 961, + "index": 966, "name": "Corporateaction_Set_default_targets", - "blob": "1e01417373657449442d313233343536373804fb09c001a074f7372e6966ab7d5115847cf9a32f2b0b29e6faf84fd41773b5ab01d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e01417373657449442d313233343536373804d40d43bce788aba008ba1d7f340b9dd091b8204d1d713430f37cfe6ff5a304e801d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : fb09c001a074f7372e6966ab7d5115847cf9a3", - "2 | Targets [2/3] : 2f2b0b29e6faf84fd41773b5ab", + "2 | Targets [1/3] : d40d43bce788aba008ba1d7f340b9dd091b820", + "2 | Targets [2/3] : 4d1d713430f37cfe6ff5a304e8", "2 | Targets [3/3] : Exclude", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" @@ -24922,8 +25071,8 @@ "output_expert": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : fb09c001a074f7372e6966ab7d5115847cf9a3", - "2 | Targets [2/3] : 2f2b0b29e6faf84fd41773b5ab", + "2 | Targets [1/3] : d40d43bce788aba008ba1d7f340b9dd091b820", + "2 | Targets [2/3] : 4d1d713430f37cfe6ff5a304e8", "2 | Targets [3/3] : Exclude", "3 | Chain : Polymesh", "4 | Nonce : 2339", @@ -24931,620 +25080,616 @@ "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 962, + "index": 967, "name": "Corporateaction_Set_default_targets", - "blob": "1e01417373657449442d3132333435363738046e42c2761bc1969e9501e5fc530667fd8f125eebba588e40686a994c8af8f53000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e01417373657449442d313233343536373804d40d43bce788aba008ba1d7f340b9dd091b8204d1d713430f37cfe6ff5a304e801d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", - "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 55.555555" + "2 | Targets [1/3] : d40d43bce788aba008ba1d7f340b9dd091b820", + "2 | Targets [2/3] : 4d1d713430f37cfe6ff5a304e8", + "2 | Targets [3/3] : Exclude", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", - "2 | Targets [3/3] : Include", + "2 | Targets [1/3] : d40d43bce788aba008ba1d7f340b9dd091b820", + "2 | Targets [2/3] : 4d1d713430f37cfe6ff5a304e8", + "2 | Targets [3/3] : Exclude", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 963, + "index": 968, "name": "Corporateaction_Set_default_targets", - "blob": "1e01417373657449442d313233343536373804fb09c001a074f7372e6966ab7d5115847cf9a32f2b0b29e6faf84fd41773b5ab01d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e01417373657449442d313233343536373804d5c8728f752c079e4a5e2714c0b0b27b6722a9496448095f171d853f7944ac7000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : fb09c001a074f7372e6966ab7d5115847cf9a3", - "2 | Targets [2/3] : 2f2b0b29e6faf84fd41773b5ab", - "2 | Targets [3/3] : Exclude" + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", + "2 | Targets [3/3] : Include", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : fb09c001a074f7372e6966ab7d5115847cf9a3", - "2 | Targets [2/3] : 2f2b0b29e6faf84fd41773b5ab", - "2 | Targets [3/3] : Exclude", + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", + "2 | Targets [3/3] : Include", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 964, + "index": 969, "name": "Corporateaction_Set_default_targets", - "blob": "1e01417373657449442d3132333435363738046e42c2761bc1969e9501e5fc530667fd8f125eebba588e40686a994c8af8f53000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e01417373657449442d313233343536373804d5c8728f752c079e4a5e2714c0b0b27b6722a9496448095f171d853f7944ac7000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", "2 | Targets [3/3] : Include", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 965, + "index": 970, "name": "Corporateaction_Set_default_targets", - "blob": "1e01417373657449442d3132333435363738046e42c2761bc1969e9501e5fc530667fd8f125eebba588e40686a994c8af8f53000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e01417373657449442d313233343536373804d5c8728f752c079e4a5e2714c0b0b27b6722a9496448095f171d853f7944ac7000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set default targets", "1 | Asset id : AssetID-12345678", - "2 | Targets [1/3] : 6e42c2761bc1969e9501e5fc530667fd8f125e", - "2 | Targets [2/3] : ebba588e40686a994c8af8f530", + "2 | Targets [1/3] : d5c8728f752c079e4a5e2714c0b0b27b6722a9", + "2 | Targets [2/3] : 496448095f171d853f7944ac70", "2 | Targets [3/3] : Include", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 966, + "index": 971, "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e02417373657449442d313233343536373823c2f001d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e02417373657449442d313233343536373800000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 55.555555" + "2 | Tax : 0.0000%", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 0.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 967, + "index": 972, "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e02417373657449442d313233343536373823c2f001d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e02417373657449442d3132333435363738400d0300d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 0.000987" + "2 | Tax : 20.0000%", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 20.0000%", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 968, + "index": 973, "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e02417373657449442d313233343536373823c2f001d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e02417373657449442d313233343536373800000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 0.0000%", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 0.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 969, + "index": 974, "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e02417373657449442d313233343536373823c2f001d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e02417373657449442d3132333435363738400d0300d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 20.0000%", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 20.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 970, + "index": 975, "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e02417373657449442d313233343536373823c2f001d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e02417373657449442d313233343536373800000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 0.000987" + "2 | Tax : 0.0000%", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Set default withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Tax : 3255.5555%", + "2 | Tax : 0.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 971, + "index": 976, "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e03417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d401400d0300d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e03417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b01400d0300d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tax : 20.0000%", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tax : 20.0000%", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 972, + "index": 977, "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e03417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40123c2f001d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e03417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b01400d0300d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 3255.5555%", - "4 | Tip : POLYX 5552342.355555" + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 20.0000%", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 3255.5555%", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 20.0000%", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 973, + "index": 978, "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e03417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d401400d0300d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e03417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0123c2f001d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 20.0000%", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 3255.5555%", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 20.0000%", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 3255.5555%", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 974, + "index": 979, "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e03417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40123c2f001d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e03417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0100000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 3255.5555%", - "4 | Tip : POLYX 55.555555" + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 0.0000%", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tax : 3255.5555%", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tax : 0.0000%", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 975, + "index": 980, "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e03417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d40123c2f001d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e03417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b0123c2f001d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tax : 3255.5555%", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Set did withholding tax", "1 | Asset id : AssetID-12345678", - "2 | Taxed did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Taxed did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Taxed did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Taxed did [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Tax : 3255.5555%", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 976, + "index": 981, "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e04417373657449442d31323334353637380080000000000000000102cc820d00000000005044657461696c7320412c2044657461696c73204201043d070a52b342e78bd5dc61332e4f876cba3388c3bb48996bf3fc4de2232d6e49010100000000010427edbf8b93ee3f2a542650f8ef43f4747ea8a93097d4beaf05e5cc1c5dc2a83f400d0300d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e04417373657449442d3132333435363738000008000000000000005044657461696c7320412c2044657461696c7320420104458e6e9f8261205a753d392e574d2d6de003aaa534c128abf12177d7f4329515010100000000010456bd58f0aec895d719bdfd43667f5c8c78de4c295dd429a96ecd12f143fed27e400d0300d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", + "3 | Decl date : 2048", + "4 | Record date : None", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789" + "9 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", + "3 | Decl date : 2048", + "4 | Record date : None", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", "9 | Chain : Polymesh", - "10 | Nonce : 100", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789", + "10 | Nonce : 50283", + "11 | Tip : POLYX 0.000987", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 977, + "index": 982, "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e04417373657449442d3132333435363738000001000000000000010091150000000000005044657461696c7320412c2044657461696c73204201043d070a52b342e78bd5dc61332e4f876cba3388c3bb48996bf3fc4de2232d6e49010100000000010427edbf8b93ee3f2a542650f8ef43f4747ea8a93097d4beaf05e5cc1c5dc2a83f400d0300d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e04417373657449442d31323334353637380000080000000000000102cc820d00000000005044657461696c7320412c2044657461696c7320420104458e6e9f8261205a753d392e574d2d6de003aaa534c128abf12177d7f4329515010123c2f001010456bd58f0aec895d719bdfd43667f5c8c78de4c295dd429a96ecd12f143fed27e400d0300d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 256", - "4 | Record date : 5521", + "3 | Decl date : 2048", + "4 | Record date : 885452", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", - "8 | Withholding tax [3/3] : 20.0000%" + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 256", - "4 | Record date : 5521", + "3 | Decl date : 2048", + "4 | Record date : 885452", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Nonce : 0", + "11 | Tip : POLYX 1234.56789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 978, + "index": 983, "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e04417373657449442d3132333435363738000008000000000000010091150000000000005044657461696c7320412c2044657461696c73204201043d070a52b342e78bd5dc61332e4f876cba3388c3bb48996bf3fc4de2232d6e490101400d0300010427edbf8b93ee3f2a542650f8ef43f4747ea8a93097d4beaf05e5cc1c5dc2a83f400d0300d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e04417373657449442d3132333435363738008000000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104458e6e9f8261205a753d392e574d2d6de003aaa534c128abf12177d7f4329515010100000000010456bd58f0aec895d719bdfd43667f5c8c78de4c295dd429a96ecd12f143fed27e400d0300d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 2048", + "3 | Decl date : 128", "4 | Record date : 5521", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", - "8 | Withholding tax [3/3] : 20.0000%" + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 2048", + "3 | Decl date : 128", "4 | Record date : 5521", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 3d070a52b342e78bd5dc61332e4f876cba3388", - "6 | Targets [2/3] : c3bb48996bf3fc4de2232d6e49", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", "9 | Chain : Polymesh", - "10 | Nonce : 50283", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Nonce : 2339", + "11 | Tip : POLYX 1234.56789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 979, + "index": 984, "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e04417373657449442d3132333435363738030008000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104f51dc67c60a7ad627e739940be4b4f53ed5c71f5ed29c6c89d5bcb093e7a9075000100000000010427edbf8b93ee3f2a542650f8ef43f4747ea8a93097d4beaf05e5cc1c5dc2a83f400d0300d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e04417373657449442d3132333435363738038000000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104f1a26e6d46db3ddae96d7ec4b9043361f506cfb1ad75f8fdd8a7278b24d7ce22000123c2f001010456bd58f0aec895d719bdfd43667f5c8c78de4c295dd429a96ecd12f143fed27e400d0300d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : Reorganization", - "3 | Decl date : 2048", + "3 | Decl date : 128", "4 | Record date : 5521", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f51dc67c60a7ad627e739940be4b4f53ed5c71", - "6 | Targets [2/3] : f5ed29c6c89d5bcb093e7a9075", + "6 | Targets [1/3] : f1a26e6d46db3ddae96d7ec4b9043361f506cf", + "6 | Targets [2/3] : b1ad75f8fdd8a7278b24d7ce22", "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 0.000987" + "9 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : Reorganization", - "3 | Decl date : 2048", + "3 | Decl date : 128", "4 | Record date : 5521", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f51dc67c60a7ad627e739940be4b4f53ed5c71", - "6 | Targets [2/3] : f5ed29c6c89d5bcb093e7a9075", + "6 | Targets [1/3] : f1a26e6d46db3ddae96d7ec4b9043361f506cf", + "6 | Targets [2/3] : b1ad75f8fdd8a7278b24d7ce22", "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 0.000987", + "10 | Nonce : 100", + "11 | Tip : POLYX 5552342.355555", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 980, + "index": 985, "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e04417373657449442d3132333435363738000008000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104f51dc67c60a7ad627e739940be4b4f53ed5c71f5ed29c6c89d5bcb093e7a90750001400d0300010427edbf8b93ee3f2a542650f8ef43f4747ea8a93097d4beaf05e5cc1c5dc2a83f400d0300d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e04417373657449442d3132333435363738008000000000000000005044657461696c7320412c2044657461696c7320420104458e6e9f8261205a753d392e574d2d6de003aaa534c128abf12177d7f43295150101400d0300010456bd58f0aec895d719bdfd43667f5c8c78de4c295dd429a96ecd12f143fed27e400d0300d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 2048", - "4 | Record date : 5521", + "3 | Decl date : 128", + "4 | Record date : None", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f51dc67c60a7ad627e739940be4b4f53ed5c71", - "6 | Targets [2/3] : f5ed29c6c89d5bcb093e7a9075", - "6 | Targets [3/3] : Include", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", + "6 | Targets [3/3] : Exclude", "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 0.000987" + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action", "1 | Asset id : AssetID-12345678", "2 | Kind : PredictableBenefit", - "3 | Decl date : 2048", - "4 | Record date : 5521", + "3 | Decl date : 128", + "4 | Record date : None", "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f51dc67c60a7ad627e739940be4b4f53ed5c71", - "6 | Targets [2/3] : f5ed29c6c89d5bcb093e7a9075", - "6 | Targets [3/3] : Include", + "6 | Targets [1/3] : 458e6e9f8261205a753d392e574d2d6de003aa", + "6 | Targets [2/3] : a534c128abf12177d7f4329515", + "6 | Targets [3/3] : Exclude", "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 27edbf8b93ee3f2a542650f8ef43f4747ea8a9", - "8 | Withholding tax [2/3] : 3097d4beaf05e5cc1c5dc2a83f", + "8 | Withholding tax [1/3] : 56bd58f0aec895d719bdfd43667f5c8c78de4c", + "8 | Withholding tax [2/3] : 295dd429a96ecd12f143fed27e", "8 | Withholding tax [3/3] : 20.0000%", "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 0.000987", + "10 | Nonce : 100", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 981, + "index": 986, "name": "Corporateaction_Link_ca_doc", - "blob": "1e05417373657449442d31323334353637386fec210010672f0000406903000f000000bd3c1221d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e05417373657449442d31323334353637386fec21000400000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Docs : 0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", + "2 | Docs : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 982, + "index": 987, "name": "Corporateaction_Link_ca_doc", - "blob": "1e05417373657449442d31323334353637386fec21000400000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e05417373657449442d31323334353637386fec21000400000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", @@ -25559,69 +25704,67 @@ "1 | Id [2/2] : 2223215", "2 | Docs : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 983, + "index": 988, "name": "Corporateaction_Link_ca_doc", - "blob": "1e05417373657449442d31323334353637386fec210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e05417373657449442d31323334353637386fec21000400000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Docs : 0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs : ", + "2 | Docs : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 984, + "index": 989, "name": "Corporateaction_Link_ca_doc", - "blob": "1e05417373657449442d31323334353637386fec21000400000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e05417373657449442d31323334353637386fec210000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs : 0" + "2 | Docs : " ], "output_expert": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", "1 | Id [2/2] : 2223215", - "2 | Docs : 0", + "2 | Docs : ", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 985, + "index": 990, "name": "Corporateaction_Link_ca_doc", - "blob": "1e05417373657449442d31323334353637386fec210000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e05417373657449442d31323334353637386fec210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Link ca doc", "1 | Id [1/2] : AssetID-12345678", @@ -25636,113 +25779,111 @@ "1 | Id [2/2] : 2223215", "2 | Docs : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 986, + "index": 991, "name": "Corporateaction_Remove_ca", - "blob": "1e06417373657449442d31323334353637386fec2100d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e06417373657449442d31323334353637386fec2100d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 987, + "index": 992, "name": "Corporateaction_Remove_ca", - "blob": "1e06417373657449442d31323334353637386fec2100d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e06417373657449442d31323334353637386fec2100d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 988, + "index": 993, "name": "Corporateaction_Remove_ca", - "blob": "1e06417373657449442d31323334353637386fec2100d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e06417373657449442d31323334353637386fec2100d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 989, + "index": 994, "name": "Corporateaction_Remove_ca", - "blob": "1e06417373657449442d31323334353637386fec2100d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e06417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 990, + "index": 995, "name": "Corporateaction_Remove_ca", - "blob": "1e06417373657449442d31323334353637386fec2100d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e06417373657449442d31323334353637386fec2100d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Remove ca", "1 | Ca id [1/2] : AssetID-12345678", @@ -25758,20 +25899,21 @@ "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 991, + "index": 996, "name": "Corporateaction_Change_record_date", - "blob": "1e07417373657449442d31323334353637386fec21000102cc820d0000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e07417373657449442d31323334353637386fec21000102cc820d0000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Record date : 885452", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateaction : Change record date", @@ -25780,73 +25922,73 @@ "2 | Record date : 885452", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 992, + "index": 997, "name": "Corporateaction_Change_record_date", - "blob": "1e07417373657449442d31323334353637386fec210000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e07417373657449442d31323334353637386fec21000102cc820d0000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip : POLYX 1234.56789" + "2 | Record date : 885452" ], "output_expert": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", + "2 | Record date : 885452", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 993, + "index": 998, "name": "Corporateaction_Change_record_date", - "blob": "1e07417373657449442d31323334353637386fec210000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e07417373657449442d31323334353637386fec210001009115000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip : POLYX 5552342.355555" + "2 | Record date : 5521", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", + "2 | Record date : 5521", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 994, + "index": 999, "name": "Corporateaction_Change_record_date", - "blob": "1e07417373657449442d31323334353637386fec21000102cc820d0000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e07417373657449442d31323334353637386fec21000102cc820d0000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Record date : 885452", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateaction : Change record date", @@ -25855,24 +25997,24 @@ "2 | Record date : 885452", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 995, + "index": 1000, "name": "Corporateaction_Change_record_date", - "blob": "1e07417373657449442d31323334353637386fec210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e07417373657449442d31323334353637386fec210000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Change record date", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Record date : None", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Change record date", @@ -25880,418 +26022,371 @@ "1 | Ca id [2/2] : 2223215", "2 | Record date : None", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 996, + "index": 1001, "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e08417373657449442d3132333435363738017141051b7727ce6d0102c984db5c3552ccc30102a6eedbe273c14810fd61b737b71111f20668f72a9cb024132c1f2e80ab62d09fac90fdf96ac83799641b56db051f853e9ec69c5b32bc2b709314dac717e5884902517fc81c0616920b6de358580ca30537763d98b3cb1fd818aa1bdb8bc66765a6ebb574236bc6332aee865889acf032022e56f73b4e97d5f2117b78e1c1a55d0108d6a170110d043674900db27a58ddbc61de4581a16ddebff85e07b3fef537911971f6bc260f0937bde70ea71d0615a4fe78e5e41d941716565c8e683b7269da180101330019be01080b760f31cc5024c384497ff6de584fe541c881deeb2fa9aa6f1523be04f47a360819ba2ae0a433875bc598a085f7281dd2e94903e8299fde7fa57d1f4b1505c79666689a494057ff01bb13000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d0001000000000000018000000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e08417373657449442d31323334353637380181b67042583a0bd30102e4d84bee4e908e4180f0eb269a7947f01a5df782bf45a19c227ed0dd714ab6783b5b02f6054ab7050b0108e1071a0dab939a8e315dc5e3d309fa10de9e736f2b03870f99ec757ae40727a81da290708ff359e82da570c0fee341ec67ba998d0ff669fd0a35409a462b04fc0101ba42747a01082bb316c22216eb68a6a8b69c6477b901a860cbde75f48615843a2087e90ad23f23a877a2bea1b43dcc9502a34f43d933987494450a0cff0beb5714bd7dc6d0fdf60122cc18b19faa01cadc000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000010008000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 5051", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 56522", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Tip : POLYX 5552342.355555" + "7 | Expires at : 2048", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 5051", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 56522", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 256", - "7 | Expires at : 128", + "7 | Expires at : 2048", "8 | Chain : Polymesh", "9 | Nonce : 50283", - "10 | Tip : POLYX 5552342.355555", + "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 997, + "index": 1002, "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e08417373657449442d3132333435363738017141051b7727ce6d0102c984db5c3552ccc30102a6eedbe273c14810fd61b737b71111f20668f72a9cb024132c1f2e80ab62d09fac90fdf96ac83799641b56db051f853e9ec69c5b32bc2b709314dac717e5884902517fc81c0616920b6de358580ca30537763d98b3cb1fd818aa1bdb8bc66765a6ebb574236bc6332aee865889acf032022e56f73b4e97d5f2117b78e1c1a55d0108d6a170110d043674900db27a58ddbc61de4581a16ddebff85e07b3fef537911971f6bc260f0937bde70ea71d0615a4fe78e5e41d941716565c8e683b7269da180101330019be01080b760f31cc5024c384497ff6de584fe541c881deeb2fa9aa6f1523be04f47a360819ba2ae0a433875bc598a085f7281dd2e94903e8299fde7fa57d1f4b1505c79666689a494057ff01cadc000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000010001000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e08417373657449442d31323334353637380181b67042583a0bd30102e4d84bee4e908e4180f0eb269a7947f01a5df782bf45a19c227ed0dd714ab6783b5b02f6054ab7050b0108e1071a0dab939a8e315dc5e3d309fa10de9e736f2b03870f99ec757ae40727a81da290708ff359e82da570c0fee341ec67ba998d0ff669fd0a35409a462b04fc0101ba42747a01082bb316c22216eb68a6a8b69c6477b901a860cbde75f48615843a2087e90ad23f23a877a2bea1b43dcc9502a34f43d933987494450a0cff0beb5714bd7dc6d0fdf60122cc18b19faa011900000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe8000000000000000018000000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 56522", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 128", - "7 | Expires at : 256" + "7 | Expires at : 128", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 56522", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 128", - "7 | Expires at : 256", + "7 | Expires at : 128", "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 1", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 998, + "index": 1003, "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e08417373657449442d3132333435363738017141051b7727ce6d0102c984db5c3552ccc30102a6eedbe273c14810fd61b737b71111f20668f72a9cb024132c1f2e80ab62d09fac90fdf96ac83799641b56db051f853e9ec69c5b32bc2b709314dac717e5884902517fc81c0616920b6de358580ca30537763d98b3cb1fd818aa1bdb8bc66765a6ebb574236bc6332aee865889acf032022e56f73b4e97d5f2117b78e1c1a55d0108d6a170110d043674900db27a58ddbc61de4581a16ddebff85e07b3fef537911971f6bc260f0937bde70ea71d0615a4fe78e5e41d941716565c8e683b7269da180101330019be01080b760f31cc5024c384497ff6de584fe541c881deeb2fa9aa6f1523be04f47a360819ba2ae0a433875bc598a085f7281dd2e94903e8299fde7fa57d1f4b1505c79666689a494057ff010000000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d0008000000000000010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e08417373657449442d31323334353637380181b67042583a0bd30102e4d84bee4e908e4180f0eb269a7947f01a5df782bf45a19c227ed0dd714ab6783b5b02f6054ab7050b0108e1071a0dab939a8e315dc5e3d309fa10de9e736f2b03870f99ec757ae40727a81da290708ff359e82da570c0fee341ec67ba998d0ff669fd0a35409a462b04fc0101ba42747a01082bb316c22216eb68a6a8b69c6477b901a860cbde75f48615843a2087e90ad23f23a877a2bea1b43dcc9502a34f43d933987494450a0cff0beb5714bd7dc6d0fdf60122cc18b19faa01bb13000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000010001000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 0", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 2048", - "7 | Expires at : 2048" + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 256" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 0", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 5051", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 2048", - "7 | Expires at : 2048", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 256", "8 | Chain : Polymesh", - "9 | Nonce : 2339", + "9 | Nonce : 0", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 999, + "index": 1004, "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e08417373657449442d3132333435363738017141051b7727ce6d0102c984db5c3552ccc30102a6eedbe273c14810fd61b737b71111f20668f72a9cb024132c1f2e80ab62d09fac90fdf96ac83799641b56db051f853e9ec69c5b32bc2b709314dac717e5884902517fc81c0616920b6de358580ca30537763d98b3cb1fd818aa1bdb8bc66765a6ebb574236bc6332aee865889acf032022e56f73b4e97d5f2117b78e1c1a55d0108d6a170110d043674900db27a58ddbc61de4581a16ddebff85e07b3fef537911971f6bc260f0937bde70ea71d0615a4fe78e5e41d941716565c8e683b7269da180101330019be01080b760f31cc5024c384497ff6de584fe541c881deeb2fa9aa6f1523be04f47a360819ba2ae0a433875bc598a085f7281dd2e94903e8299fde7fa57d1f4b1505c79666689a494057ff010000000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000010001000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e08417373657449442d31323334353637380181b67042583a0bd30102e4d84bee4e908e4180f0eb269a7947f01a5df782bf45a19c227ed0dd714ab6783b5b02f6054ab7050b0108e1071a0dab939a8e315dc5e3d309fa10de9e736f2b03870f99ec757ae40727a81da290708ff359e82da570c0fee341ec67ba998d0ff669fd0a35409a462b04fc0101ba42747a01082bb316c22216eb68a6a8b69c6477b901a860cbde75f48615843a2087e90ad23f23a877a2bea1b43dcc9502a34f43d933987494450a0cff0beb5714bd7dc6d0fdf60122cc18b19faa011900000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe8000000000000000010001000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 0", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 128", "7 | Expires at : 256", - "8 | Tip : POLYX 1234.56789" + "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 0", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 25", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", "6 | Payment at : 128", "7 | Expires at : 256", "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", + "9 | Nonce : 50283", + "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1000, + "index": 1005, "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e08417373657449442d3132333435363738017141051b7727ce6d0102c984db5c3552ccc30102a6eedbe273c14810fd61b737b71111f20668f72a9cb024132c1f2e80ab62d09fac90fdf96ac83799641b56db051f853e9ec69c5b32bc2b709314dac717e5884902517fc81c0616920b6de358580ca30537763d98b3cb1fd818aa1bdb8bc66765a6ebb574236bc6332aee865889acf032022e56f73b4e97d5f2117b78e1c1a55d0108d6a170110d043674900db27a58ddbc61de4581a16ddebff85e07b3fef537911971f6bc260f0937bde70ea71d0615a4fe78e5e41d941716565c8e683b7269da180101330019be01080b760f31cc5024c384497ff6de584fe541c881deeb2fa9aa6f1523be04f47a360819ba2ae0a433875bc598a085f7281dd2e94903e8299fde7fa57d1f4b1505c79666689a494057ff011900000000000000417373657449442d3132333435363738e9f2fb1c9c0e574344ad0ce218e5c53de9f2fb1c9c0e574344ad0ce218e5c53d8000000000000000018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1e08417373657449442d31323334353637380181b67042583a0bd30102e4d84bee4e908e4180f0eb269a7947f01a5df782bf45a19c227ed0dd714ab6783b5b02f6054ab7050b0108e1071a0dab939a8e315dc5e3d309fa10de9e736f2b03870f99ec757ae40727a81da290708ff359e82da570c0fee341ec67ba998d0ff669fd0a35409a462b04fc0101ba42747a01082bb316c22216eb68a6a8b69c6477b901a860cbde75f48615843a2087e90ad23f23a877a2bea1b43dcc9502a34f43d933987494450a0cff0beb5714bd7dc6d0fdf60122cc18b19faa01cadc000000000000417373657449442d3132333435363738a9698bb58f31528289cbe66c452b62fea9698bb58f31528289cbe66c452b62fe0001000000000000018000000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 25", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 56522", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", - "7 | Expires at : 128" + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", + "7 | Expires at : 128", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/23] : AssetID-12345678", - "1 | Ca args [2/23] : UnpredictableBenfit", - "1 | Ca args [3/23] : 7912304987844460913", - "1 | Ca args [4/23] : 14108742121789555913", - "1 | Ca args [5/23] : a6eedbe273c14810fd61b737b71111f20668f7", - "1 | Ca args [6/23] : 2a9cb024132c1f2e80ab62d09fac90fdf96ac8", - "1 | Ca args [7/23] : 3799641b56db051f853e9ec69c5b32bc2b7093", - "1 | Ca args [8/23] : 14dac717e5884902517fc81c0616920b6de358", - "1 | Ca args [9/23] : 580ca30537763d98b3cb1fd818aa1bdb8bc667", - "1 | Ca args [10/23] : 65a6ebb574236bc6332aee865889acf032022e", - "1 | Ca args [11/23] : 56f73b4e97d5f2117b78e1c1a55d", - "1 | Ca args [12/23] : d6a170110d043674900db27a58ddbc61de4581", - "1 | Ca args [13/23] : a16ddebff85e07b3fef5379119", - "1 | Ca args [14/23] : 71f6bc260f0937bde70ea71d0615a4fe78e5e4", - "1 | Ca args [15/23] : 1d941716565c8e683b7269da18", - "1 | Ca args [16/23] : Exclude", - "1 | Ca args [17/23] : 318930.9491%", - "1 | Ca args [18/23] : 0b760f31cc5024c384497ff6de584fe541c881", - "1 | Ca args [19/23] : deeb2fa9aa6f1523be04f47a36", - "1 | Ca args [20/23] : 71683.9176%", - "1 | Ca args [21/23] : e0a433875bc598a085f7281dd2e94903e8299f", - "1 | Ca args [22/23] : de7fa57d1f4b1505c79666689a", - "1 | Ca args [23/23] : 428390.8169%", - "2 | Portfolio : 25", + "1 | Ca args [1/18] : AssetID-12345678", + "1 | Ca args [2/18] : UnpredictableBenfit", + "1 | Ca args [3/18] : 15207312717492827777", + "1 | Ca args [4/18] : 4723871727838025956", + "1 | Ca args [5/18] : f0eb269a7947f01a5df782bf45a19c227ed0dd", + "1 | Ca args [6/18] : 714ab6783b5b02f6054ab7050b", + "1 | Ca args [7/18] : e1071a0dab939a8e315dc5e3d309fa10de9e73", + "1 | Ca args [8/18] : 6f2b03870f99ec757ae40727a8", + "1 | Ca args [9/18] : 1da290708ff359e82da570c0fee341ec67ba99", + "1 | Ca args [10/18] : 8d0ff669fd0a35409a462b04fc", + "1 | Ca args [11/18] : Exclude", + "1 | Ca args [12/18] : 205443.9610%", + "1 | Ca args [13/18] : 2bb316c22216eb68a6a8b69c6477b901a860cb", + "1 | Ca args [14/18] : de75f48615843a2087e90ad23f", + "1 | Ca args [15/18] : 272575.0819%", + "1 | Ca args [16/18] : bea1b43dcc9502a34f43d933987494450a0cff", + "1 | Ca args [17/18] : 0beb5714bd7dc6d0fdf60122cc", + "1 | Ca args [18/18] : 286259.2280%", + "2 | Portfolio : 56522", "3 | Currency : AssetID-12345678", - "4 | Per share [1/2] : POLYX 82110436867245303422915782349504", - "4 | Per share [2/2] : .115433", - "5 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "5 | Amount [2/2] : .115433", - "6 | Payment at : 128", + "4 | Per share [1/2] : POLYX 33813363366556461050743772107277", + "4 | Per share [2/2] : 1.492265", + "5 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "5 | Amount [2/2] : 1.492265", + "6 | Payment at : 256", "7 | Expires at : 128", "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 1", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1001, + "index": 1006, "name": "Corporateballot_Attach_ballot", - "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Attach ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -26304,7 +26399,8 @@ "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", "4 | Rcv : True", - "5 | Tip : POLYX 1234.56789" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateballot : Attach ballot", @@ -26319,18 +26415,19 @@ "3 | Meta [5/5] : ChoiceTitle2", "4 | Rcv : True", "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", + "6 | Nonce : 2339", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1002, + "index": 1007, "name": "Corporateballot_Attach_ballot", - "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Attach ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -26342,7 +26439,7 @@ "3 | Meta [3/5] : MotionInfoLink", "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "4 | Rcv : True", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789" ], @@ -26357,21 +26454,21 @@ "3 | Meta [3/5] : MotionInfoLink", "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "4 | Rcv : True", "5 | Chain : Polymesh", - "6 | Nonce : 1", + "6 | Nonce : 100", "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", "7 | Tip [2/2] : 3.456789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1003, + "index": 1008, "name": "Corporateballot_Attach_ballot", - "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Attach ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -26384,7 +26481,7 @@ "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", "4 | Rcv : False", - "5 | Tip : POLYX 5552342.355555" + "5 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateballot : Attach ballot", @@ -26399,18 +26496,18 @@ "3 | Meta [5/5] : ChoiceTitle2", "4 | Rcv : False", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", + "6 | Nonce : 100", + "7 | Tip : POLYX 55.555555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1004, + "index": 1009, "name": "Corporateballot_Attach_ballot", - "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Attach ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -26423,7 +26520,8 @@ "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", "4 | Rcv : True", - "5 | Tip : POLYX 5552342.355555" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateballot : Attach ballot", @@ -26439,17 +26537,18 @@ "4 | Rcv : True", "5 | Chain : Polymesh", "6 | Nonce : 1", - "7 | Tip : POLYX 5552342.355555", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1005, + "index": 1010, "name": "Corporateballot_Attach_ballot", - "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Attach ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -26461,7 +26560,8 @@ "3 | Meta [3/5] : MotionInfoLink", "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False" + "4 | Rcv : True", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateballot : Attach ballot", @@ -26474,19 +26574,20 @@ "3 | Meta [3/5] : MotionInfoLink", "3 | Meta [4/5] : ChoiceTitle1", "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "4 | Rcv : True", "5 | Chain : Polymesh", "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1006, + "index": 1011, "name": "Corporateballot_Vote", - "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", @@ -26505,23 +26606,24 @@ "2 | Votes [3/4] : POLYX 6.759421", "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1007, + "index": 1012, "name": "Corporateballot_Vote", - "blob": "1f01417373657449442d31323334353637386fec210000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f01417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Votes : ", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateballot : Vote", @@ -26529,24 +26631,25 @@ "1 | Ca id [2/2] : 2223215", "2 | Votes : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1008, + "index": 1013, "name": "Corporateballot_Vote", - "blob": "1f01417373657449442d31323334353637386fec210000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f01417373657449442d31323334353637386fec210000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Votes : ", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateballot : Vote", @@ -26554,51 +26657,54 @@ "1 | Ca id [2/2] : 2223215", "2 | Votes : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1009, + "index": 1014, "name": "Corporateballot_Vote", - "blob": "1f01417373657449442d31323334353637386fec210000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Tip : POLYX 5552342.355555" + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1010, + "index": 1015, "name": "Corporateballot_Vote", - "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f01417373657449442d31323334353637386fec210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", + "2 | Votes : ", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], @@ -26606,30 +26712,28 @@ "0 | Corporateballot : Vote", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", + "2 | Votes : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1011, + "index": 1016, "name": "Corporateballot_Change_end", - "blob": "1f02417373657449442d31323334353637386fec21008000000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f02417373657449442d31323334353637386fec21008000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | End : 128", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateballot : Change end", @@ -26637,24 +26741,25 @@ "1 | Ca id [2/2] : 2223215", "2 | End : 128", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1012, + "index": 1017, "name": "Corporateballot_Change_end", - "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | End : 2048", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateballot : Change end", @@ -26662,73 +26767,71 @@ "1 | Ca id [2/2] : 2223215", "2 | End : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1013, + "index": 1018, "name": "Corporateballot_Change_end", - "blob": "1f02417373657449442d31323334353637386fec21000001000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f02417373657449442d31323334353637386fec21008000000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Tip : POLYX 55.555555" + "2 | End : 128", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 256", + "2 | End : 128", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1014, + "index": 1019, "name": "Corporateballot_Change_end", - "blob": "1f02417373657449442d31323334353637386fec21008000000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Tip : POLYX 5552342.355555" + "2 | End : 2048" ], "output_expert": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 128", + "2 | End : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1015, + "index": 1020, "name": "Corporateballot_Change_end", - "blob": "1f02417373657449442d31323334353637386fec21000001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 256", + "2 | End : 2048", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], @@ -26736,21 +26839,21 @@ "0 | Corporateballot : Change end", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | End : 256", + "2 | End : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1016, + "index": 1021, "name": "Corporateballot_Change_meta", - "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change meta", "1 | Ca id [1/2] : AssetID-12345678", @@ -26760,7 +26863,7 @@ "2 | Meta [3/5] : MotionInfoLink", "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateballot : Change meta", @@ -26772,18 +26875,18 @@ "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1017, + "index": 1022, "name": "Corporateballot_Change_meta", - "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change meta", "1 | Ca id [1/2] : AssetID-12345678", @@ -26793,7 +26896,8 @@ "2 | Meta [3/5] : MotionInfoLink", "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Corporateballot : Change meta", @@ -26805,18 +26909,19 @@ "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1018, + "index": 1023, "name": "Corporateballot_Change_meta", - "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change meta", "1 | Ca id [1/2] : AssetID-12345678", @@ -26825,7 +26930,8 @@ "2 | Meta [2/5] : MotionTitle", "2 | Meta [3/5] : MotionInfoLink", "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2" + "2 | Meta [5/5] : ChoiceTitle2", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateballot : Change meta", @@ -26837,17 +26943,18 @@ "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1019, + "index": 1024, "name": "Corporateballot_Change_meta", - "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change meta", "1 | Ca id [1/2] : AssetID-12345678", @@ -26857,7 +26964,7 @@ "2 | Meta [3/5] : MotionInfoLink", "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Corporateballot : Change meta", @@ -26869,18 +26976,18 @@ "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1020, + "index": 1025, "name": "Corporateballot_Change_meta", - "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change meta", "1 | Ca id [1/2] : AssetID-12345678", @@ -26890,7 +26997,7 @@ "2 | Meta [3/5] : MotionInfoLink", "2 | Meta [4/5] : ChoiceTitle1", "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateballot : Change meta", @@ -26903,117 +27010,115 @@ "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1021, + "index": 1026, "name": "Corporateballot_Change_rcv", - "blob": "1f04417373657449442d31323334353637386fec210000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f04417373657449442d31323334353637386fec210001d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 0.000987" + "2 | Rcv : True" ], "output_expert": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "2 | Rcv : True", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1022, + "index": 1027, "name": "Corporateballot_Change_rcv", - "blob": "1f04417373657449442d31323334353637386fec210000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f04417373657449442d31323334353637386fec210001d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 5552342.355555" + "2 | Rcv : True", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "2 | Rcv : True", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1023, + "index": 1028, "name": "Corporateballot_Change_rcv", - "blob": "1f04417373657449442d31323334353637386fec210001d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f04417373657449442d31323334353637386fec210000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Tip : POLYX 0.000987" + "2 | Rcv : False", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", + "2 | Rcv : False", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1024, + "index": 1029, "name": "Corporateballot_Change_rcv", - "blob": "1f04417373657449442d31323334353637386fec210000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f04417373657449442d31323334353637386fec210001d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "2 | Rcv : True", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "2 | Rcv : True", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1025, + "index": 1030, "name": "Corporateballot_Change_rcv", - "blob": "1f04417373657449442d31323334353637386fec210000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f04417373657449442d31323334353637386fec210000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Change rcv", "1 | Ca id [1/2] : AssetID-12345678", @@ -27026,17 +27131,17 @@ "1 | Ca id [2/2] : 2223215", "2 | Rcv : False", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1026, + "index": 1031, "name": "Corporateballot_Remove_ballot", - "blob": "1f05417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f05417373657449442d31323334353637386fec2100d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", @@ -27048,45 +27153,46 @@ "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1027, + "index": 1032, "name": "Corporateballot_Remove_ballot", - "blob": "1f05417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f05417373657449442d31323334353637386fec2100d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1028, + "index": 1033, "name": "Corporateballot_Remove_ballot", - "blob": "1f05417373657449442d31323334353637386fec2100d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f05417373657449442d31323334353637386fec2100d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215" + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Corporateballot : Remove ballot", @@ -27094,538 +27200,535 @@ "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1029, + "index": 1034, "name": "Corporateballot_Remove_ballot", - "blob": "1f05417373657449442d31323334353637386fec2100d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f05417373657449442d31323334353637386fec2100d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" + "1 | Ca id [2/2] : 2223215" ], "output_expert": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1030, + "index": 1035, "name": "Corporateballot_Remove_ballot", - "blob": "1f05417373657449442d31323334353637386fec2100d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "1f05417373657449442d31323334353637386fec2100d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Corporateballot : Remove ballot", "1 | Ca id [1/2] : AssetID-12345678", "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1031, + "index": 1036, + "name": "Pips_Set_prune_historical_pips", + "blob": "210000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Pips : Set prune historical pips", + "1 | Prune : False" + ], + "output_expert": [ + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1037, "name": "Pips_Set_prune_historical_pips", - "blob": "210001d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210001d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set prune historical pips", "1 | Prune : True", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set prune historical pips", "1 | Prune : True", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1032, + "index": 1038, "name": "Pips_Set_prune_historical_pips", - "blob": "210000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set prune historical pips", "1 | Prune : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set prune historical pips", "1 | Prune : False", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1033, + "index": 1039, "name": "Pips_Set_prune_historical_pips", - "blob": "210001d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210001d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set prune historical pips", "1 | Prune : True", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set prune historical pips", "1 | Prune : True", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1034, + "index": 1040, "name": "Pips_Set_prune_historical_pips", - "blob": "210001d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Tip : POLYX 5552342.355555" + "1 | Prune : False", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Set prune historical pips", - "1 | Prune : True", + "1 | Prune : False", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1035, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1036, + "index": 1041, "name": "Pips_Set_min_proposal_deposit", - "blob": "2101e9f2fb1c9c0e574344ad0ce218e5c53dd503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2101a9698bb58f31528289cbe66c452b62fed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", - "2 | Tip : POLYX 5552342.355555" + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1037, + "index": 1042, "name": "Pips_Set_min_proposal_deposit", - "blob": "2101e9f2fb1c9c0e574344ad0ce218e5c53dd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2101a9698bb58f31528289cbe66c452b62fed5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1038, + "index": 1043, "name": "Pips_Set_min_proposal_deposit", - "blob": "2101e9f2fb1c9c0e574344ad0ce218e5c53dd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2101a9698bb58f31528289cbe66c452b62fed5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433" + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1039, + "index": 1044, "name": "Pips_Set_min_proposal_deposit", - "blob": "2101e9f2fb1c9c0e574344ad0ce218e5c53dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2101a9698bb58f31528289cbe66c452b62fed5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", - "2 | Tip : POLYX 5552342.355555" + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1040, + "index": 1045, "name": "Pips_Set_min_proposal_deposit", - "blob": "2101e9f2fb1c9c0e574344ad0ce218e5c53dd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2101a9698bb58f31528289cbe66c452b62fed5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265" ], "output_expert": [ "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "1 | Deposit [2/2] : .115433", + "1 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "1 | Deposit [2/2] : 1.492265", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1041, + "index": 1046, "name": "Pips_Set_default_enactment_period", - "blob": "21027b000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2102b3e30100d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set default enactment period", - "1 | Duration : 123", - "2 | Tip : POLYX 55.555555" + "1 | Duration : 123827" ], "output_expert": [ "0 | Pips : Set default enactment period", - "1 | Duration : 123", + "1 | Duration : 123827", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1042, + "index": 1047, "name": "Pips_Set_default_enactment_period", - "blob": "2102ac350000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210200000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set default enactment period", - "1 | Duration : 13740" + "1 | Duration : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set default enactment period", - "1 | Duration : 13740", + "1 | Duration : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1043, + "index": 1048, "name": "Pips_Set_default_enactment_period", - "blob": "2102b3e30100d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2102ff030000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set default enactment period", - "1 | Duration : 123827", + "1 | Duration : 1023", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set default enactment period", - "1 | Duration : 123827", + "1 | Duration : 1023", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1044, + "index": 1049, "name": "Pips_Set_default_enactment_period", - "blob": "210201000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210225010000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set default enactment period", - "1 | Duration : 1", - "2 | Tip : POLYX 0.000987" + "1 | Duration : 293", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Set default enactment period", - "1 | Duration : 1", + "1 | Duration : 293", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1045, + "index": 1050, "name": "Pips_Set_default_enactment_period", - "blob": "21027b000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21027b000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set default enactment period", - "1 | Duration : 123" + "1 | Duration : 123", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set default enactment period", "1 | Duration : 123", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1046, + "index": 1051, "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210300a1860100d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set pending pip expiry", "1 | Expiry : 100001", - "2 | Tip : POLYX 55.555555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set pending pip expiry", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1047, + "index": 1052, "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210300a1860100d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" + "1 | Expiry : 100001", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1048, + "index": 1053, "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210300a1860100d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set pending pip expiry", "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set pending pip expiry", "1 | Expiry : 100001", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1049, + "index": 1054, "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210300a1860100d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Expiry : 100001", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1050, + "index": 1055, "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210300a1860100d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Expiry : 100001", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1051, + "index": 1056, "name": "Pips_Set_max_pip_skip_count", - "blob": "21040dd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210434d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set max pip skip count", - "1 | Max : 13", - "2 | Tip : POLYX 0.000987" + "1 | Max : 52", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set max pip skip count", - "1 | Max : 13", + "1 | Max : 52", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1052, + "index": 1057, "name": "Pips_Set_max_pip_skip_count", - "blob": "2104ffd503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210400d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Tip : POLYX 0.000987" + "1 | Max : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set max pip skip count", - "1 | Max : 255", + "1 | Max : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1053, + "index": 1058, "name": "Pips_Set_max_pip_skip_count", - "blob": "210400d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210400d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set max pip skip count", "1 | Max : 0", @@ -27636,559 +27739,571 @@ "0 | Pips : Set max pip skip count", "1 | Max : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1054, + "index": 1059, "name": "Pips_Set_max_pip_skip_count", - "blob": "2104ffd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210400d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Max : 0" ], "output_expert": [ "0 | Pips : Set max pip skip count", - "1 | Max : 255", + "1 | Max : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1055, + "index": 1060, "name": "Pips_Set_max_pip_skip_count", - "blob": "210434d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210434d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set max pip skip count", "1 | Max : 52", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set max pip skip count", "1 | Max : 52", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1056, + "index": 1061, "name": "Pips_Set_active_pip_limit", - "blob": "2105f7010000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2105f7010000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set active pip limit", - "1 | Limit : 503" + "1 | Limit : 503", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Set active pip limit", "1 | Limit : 503", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1057, + "index": 1062, "name": "Pips_Set_active_pip_limit", - "blob": "21059d1c0000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2105d3040000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set active pip limit", - "1 | Limit : 7325", - "2 | Tip : POLYX 1234.56789" + "1 | Limit : 1235", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set active pip limit", - "1 | Limit : 7325", + "1 | Limit : 1235", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1058, + "index": 1063, "name": "Pips_Set_active_pip_limit", - "blob": "21059d1c0000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21059d1c0000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set active pip limit", "1 | Limit : 7325", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Set active pip limit", "1 | Limit : 7325", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1059, + "index": 1064, "name": "Pips_Set_active_pip_limit", - "blob": "2105d3040000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2105f7010000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set active pip limit", - "1 | Limit : 1235", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Limit : 503", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Set active pip limit", - "1 | Limit : 1235", + "1 | Limit : 503", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1060, + "index": 1065, "name": "Pips_Set_active_pip_limit", - "blob": "210534300000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2105d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 1235", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Set active pip limit", - "1 | Limit : 12340", + "1 | Limit : 1235", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1061, + "index": 1066, "name": "Pips_Propose", - "blob": "21060000083434e9f2fb1c9c0e574344ad0ce218e5c53d014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21060000083434a9698bb58f31528289cbe66c452b62fe014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", - "5 | Tip : POLYX 1234.56789" + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 1234.56789", + "6 | Nonce : 2339", + "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1062, + "index": 1067, "name": "Pips_Propose", - "blob": "21060000083434e9f2fb1c9c0e574344ad0ce218e5c53d014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21060000083434a9698bb58f31528289cbe66c452b62fe014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", - "4 | Description : This is a description" + "4 | Description : This is a description", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 100", + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1063, + "index": 1068, "name": "Pips_Propose", - "blob": "21060000083434e9f2fb1c9c0e574344ad0ce218e5c53d014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21060000083434a9698bb58f31528289cbe66c452b62fe014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", - "4 | Description : This is a description" + "4 | Description : This is a description", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 0", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1064, + "index": 1069, "name": "Pips_Propose", - "blob": "21060000083434e9f2fb1c9c0e574344ad0ce218e5c53d014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21060000083434a9698bb58f31528289cbe66c452b62fe014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", + "6 | Nonce : 100", + "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1065, + "index": 1070, "name": "Pips_Propose", - "blob": "21060000083434e9f2fb1c9c0e574344ad0ce218e5c53d014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21060000083434a9698bb58f31528289cbe66c452b62fe014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", - "5 | Tip : POLYX 55.555555" + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Propose", "1 | Proposal [1/2] : Remark", "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Deposit [2/2] : .115433", + "2 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Deposit [2/2] : 1.492265", "3 | Url : https://myurl.url", "4 | Description : This is a description", "5 | Chain : Polymesh", "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", + "7 | Tip : POLYX 5552342.355555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1066, + "index": 1071, "name": "Pips_Vote", - "blob": "21070000000001e9f2fb1c9c0e574344ad0ce218e5c53dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2107775b000001a9698bb58f31528289cbe66c452b62fed5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Vote", - "1 | Id : 0", + "1 | Id : 23415", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Vote", - "1 | Id : 0", + "1 | Id : 23415", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 1", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1067, + "index": 1072, "name": "Pips_Vote", - "blob": "2107775b000000e9f2fb1c9c0e574344ad0ce218e5c53dd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2107775b000001a9698bb58f31528289cbe66c452b62fed503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Vote", "1 | Id : 23415", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433" + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Vote", "1 | Id : 23415", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1068, + "index": 1073, "name": "Pips_Vote", - "blob": "21073530000001e9f2fb1c9c0e574344ad0ce218e5c53dd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21073530000000a9698bb58f31528289cbe66c452b62fed5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Vote", "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", - "4 | Tip : POLYX 55.555555" + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Vote", "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1069, + "index": 1074, "name": "Pips_Vote", - "blob": "2107775b000001e9f2fb1c9c0e574344ad0ce218e5c53dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21073530000001a9698bb58f31528289cbe66c452b62fed5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Vote", - "1 | Id : 23415", + "1 | Id : 12341", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Vote", - "1 | Id : 23415", + "1 | Id : 12341", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1070, + "index": 1075, "name": "Pips_Vote", - "blob": "2107775b000001e9f2fb1c9c0e574344ad0ce218e5c53dd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21070000000001a9698bb58f31528289cbe66c452b62fed503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Vote", - "1 | Id : 23415", + "1 | Id : 0", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", - "4 | Tip : POLYX 0.000987" + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Vote", - "1 | Id : 23415", + "1 | Id : 0", "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 82110436867245303422915782349504", - "3 | Deposit [2/2] : .115433", + "3 | Deposit [1/2] : POLYX 33813363366556461050743772107277", + "3 | Deposit [2/2] : 1.492265", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1071, + "index": 1076, "name": "Pips_Approve_committee_proposal", - "blob": "210800000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210835300000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Approve committee proposal", - "1 | Id : 0" + "1 | Id : 12341", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Approve committee proposal", - "1 | Id : 0", + "1 | Id : 12341", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1072, + "index": 1077, "name": "Pips_Approve_committee_proposal", - "blob": "2108db030000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2108db030000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Approve committee proposal", "1 | Id : 987", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Approve committee proposal", "1 | Id : 987", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1073, + "index": 1078, "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210800000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 0.000987" + "1 | Id : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Approve committee proposal", - "1 | Id : 12341", + "1 | Id : 0", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1074, + "index": 1079, "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210835300000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Approve committee proposal", - "1 | Id : 12341" + "1 | Id : 12341", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Approve committee proposal", "1 | Id : 12341", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1075, + "index": 1080, "name": "Pips_Approve_committee_proposal", - "blob": "2108775b0000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2108775b0000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Approve committee proposal", "1 | Id : 23415", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Approve committee proposal", "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1076, + "index": 1081, "name": "Pips_Reject_proposal", - "blob": "210900000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210900000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reject proposal", "1 | Id : 0", @@ -28198,232 +28313,230 @@ "0 | Pips : Reject proposal", "1 | Id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1077, + "index": 1082, "name": "Pips_Reject_proposal", - "blob": "2109db030000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2109db030000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reject proposal", - "1 | Id : 987", - "2 | Tip : POLYX 0.000987" + "1 | Id : 987" ], "output_expert": [ "0 | Pips : Reject proposal", "1 | Id : 987", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1078, + "index": 1083, "name": "Pips_Reject_proposal", - "blob": "2109db030000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2109775b0000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reject proposal", - "1 | Id : 987", - "2 | Tip : POLYX 0.000987" + "1 | Id : 23415", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Reject proposal", - "1 | Id : 987", + "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1079, + "index": 1084, "name": "Pips_Reject_proposal", - "blob": "2109775b0000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210935300000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reject proposal", - "1 | Id : 23415", - "2 | Tip : POLYX 0.000987" + "1 | Id : 12341", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Reject proposal", - "1 | Id : 23415", + "1 | Id : 12341", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1080, + "index": 1085, "name": "Pips_Reject_proposal", - "blob": "210900000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2109775b0000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reject proposal", - "1 | Id : 0", - "2 | Tip : POLYX 1234.56789" + "1 | Id : 23415", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Reject proposal", - "1 | Id : 0", + "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1081, + "index": 1086, "name": "Pips_Prune_proposal", - "blob": "210adb030000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210a775b0000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Prune proposal", - "1 | Id : 987", - "2 | Tip : POLYX 0.000987" + "1 | Id : 23415", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Prune proposal", - "1 | Id : 987", + "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1082, + "index": 1087, "name": "Pips_Prune_proposal", - "blob": "210a00000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210a00000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Prune proposal", "1 | Id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Prune proposal", "1 | Id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1083, + "index": 1088, "name": "Pips_Prune_proposal", - "blob": "210a35300000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210a00000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Prune proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 55.555555" + "1 | Id : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Prune proposal", - "1 | Id : 12341", + "1 | Id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1084, + "index": 1089, "name": "Pips_Prune_proposal", - "blob": "210a35300000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210a35300000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Prune proposal", "1 | Id : 12341", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Prune proposal", "1 | Id : 12341", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1085, + "index": 1090, "name": "Pips_Prune_proposal", - "blob": "210a00000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210adb030000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Tip : POLYX 5552342.355555" + "1 | Id : 987", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Prune proposal", - "1 | Id : 0", + "1 | Id : 987", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1086, + "index": 1091, "name": "Pips_Reschedule_execution", - "blob": "210b775b00000123620000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210bdb03000001149d1d21d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", - "3 | Tip : POLYX 55.555555" + "1 | Id : 987", + "2 | Until : 555588884", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", + "1 | Id : 987", + "2 | Until : 555588884", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1087, + "index": 1092, "name": "Pips_Reschedule_execution", - "blob": "210b000000000123620000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210b000000000123620000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reschedule execution", "1 | Id : 0", @@ -28435,281 +28548,277 @@ "1 | Id : 0", "2 | Until : 25123", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1088, + "index": 1093, "name": "Pips_Reschedule_execution", - "blob": "210b353000000123620000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210b775b000001149d1d21d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 25123", - "3 | Tip : POLYX 0.000987" + "1 | Id : 23415", + "2 | Until : 555588884", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 25123", + "1 | Id : 23415", + "2 | Until : 555588884", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1089, + "index": 1094, "name": "Pips_Reschedule_execution", - "blob": "210b775b000001149d1d21d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210b000000000123620000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 555588884", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Id : 0", + "2 | Until : 25123", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 555588884", + "1 | Id : 0", + "2 | Until : 25123", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1090, + "index": 1095, "name": "Pips_Reschedule_execution", - "blob": "210bdb03000001149d1d21d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210b0000000001149d1d21d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Reschedule execution", - "1 | Id : 987", + "1 | Id : 0", "2 | Until : 555588884", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Reschedule execution", - "1 | Id : 987", + "1 | Id : 0", "2 | Until : 555588884", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1091, + "index": 1096, "name": "Pips_Clear_snapshot", - "blob": "210cd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210cd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Pips : Clear snapshot" + "0 | Pips : Clear snapshot", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Clear snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 50283", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1092, + "index": 1097, "name": "Pips_Clear_snapshot", - "blob": "210cd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210cd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 55.555555" + "0 | Pips : Clear snapshot" ], "output_expert": [ "0 | Pips : Clear snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "5 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1093, + "index": 1098, "name": "Pips_Clear_snapshot", - "blob": "210cd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210cd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Clear snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 1", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1094, + "index": 1099, "name": "Pips_Clear_snapshot", - "blob": "210cd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210cd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Clear snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1095, + "index": 1100, "name": "Pips_Clear_snapshot", - "blob": "210cd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210cd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Clear snapshot", "1 | Chain : Polymesh", "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1096, + "index": 1101, "name": "Pips_Snapshot", - "blob": "210dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210dd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Snapshot", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1097, + "index": 1102, "name": "Pips_Snapshot", - "blob": "210dd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Snapshot", - "1 | Tip : POLYX 55.555555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1098, + "index": 1103, "name": "Pips_Snapshot", - "blob": "210dd503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210dd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Snapshot", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Snapshot", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 1", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1099, + "index": 1104, "name": "Pips_Snapshot", - "blob": "210dd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210dd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Snapshot", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Snapshot", "1 | Chain : Polymesh", "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1100, + "index": 1105, "name": "Pips_Snapshot", - "blob": "210dd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210dd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Snapshot", - "1 | Tip : POLYX 0.000987" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Snapshot", "1 | Chain : Polymesh", "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1101, + "index": 1106, "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210e0893150000007510000002d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Enact snapshot results", "1 | Results [1/4] : 5523", @@ -28725,25 +28834,24 @@ "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1102, + "index": 1107, "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210e0893150000007510000002d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Enact snapshot results", "1 | Results [1/4] : 5523", "1 | Results [2/4] : Approve", "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 1234.56789" + "1 | Results [4/4] : Skip" ], "output_expert": [ "0 | Pips : Enact snapshot results", @@ -28752,25 +28860,24 @@ "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1103, + "index": 1108, "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210e0893150000007510000002d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Enact snapshot results", "1 | Results [1/4] : 5523", "1 | Results [2/4] : Approve", "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Enact snapshot results", @@ -28779,26 +28886,25 @@ "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1104, + "index": 1109, "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210e0893150000007510000002d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Enact snapshot results", "1 | Results [1/4] : 5523", "1 | Results [2/4] : Approve", "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Enact snapshot results", @@ -28807,27 +28913,25 @@ "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1105, + "index": 1110, "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210e0893150000007510000002d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Enact snapshot results", "1 | Results [1/4] : 5523", "1 | Results [2/4] : Approve", "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Enact snapshot results", @@ -28836,82 +28940,83 @@ "1 | Results [3/4] : 4213", "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1106, + "index": 1111, "name": "Pips_Execute_scheduled_pip", - "blob": "210fdb030000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210fdb030000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Execute scheduled pip", "1 | Id : 987", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Execute scheduled pip", "1 | Id : 987", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1107, + "index": 1112, "name": "Pips_Execute_scheduled_pip", - "blob": "210fdb030000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210f35300000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 987", - "2 | Tip : POLYX 0.000987" + "1 | Id : 12341", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 987", + "1 | Id : 12341", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1108, + "index": 1113, "name": "Pips_Execute_scheduled_pip", - "blob": "210f00000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210fdb030000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Tip : POLYX 55.555555" + "1 | Id : 987", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 0", + "1 | Id : 987", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1109, + "index": 1114, "name": "Pips_Execute_scheduled_pip", - "blob": "210f775b0000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210f775b0000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Execute scheduled pip", "1 | Id : 23415", @@ -28921,164 +29026,162 @@ "0 | Pips : Execute scheduled pip", "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1110, + "index": 1115, "name": "Pips_Execute_scheduled_pip", - "blob": "210f35300000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "210f775b0000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 12341" + "1 | Id : 23415", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Execute scheduled pip", - "1 | Id : 12341", + "1 | Id : 23415", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1111, + "index": 1116, "name": "Pips_Expire_scheduled_pip", - "blob": "2110117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d435300000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21102910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bdb030000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 12341" + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 987", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 12341", + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 987", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1112, + "index": 1117, "name": "Pips_Expire_scheduled_pip", - "blob": "2110117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4775b0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21102910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b35300000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 23415", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 12341", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 23415", + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 12341", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1113, + "index": 1118, "name": "Pips_Expire_scheduled_pip", - "blob": "2110117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4db030000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21102910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bdb030000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 987", - "3 | Tip : POLYX 5552342.355555" + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 987" ], "output_expert": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Id : 987", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1114, + "index": 1119, "name": "Pips_Expire_scheduled_pip", - "blob": "2110117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4db030000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21102910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b00000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 987", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 987", + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1115, + "index": 1120, "name": "Pips_Expire_scheduled_pip", - "blob": "2110117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4db030000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "21102910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b775b0000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 987", - "3 | Tip : POLYX 5552342.355555" + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 23415", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Did [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Id : 987", + "1 | Did [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Did [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Id : 23415", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1116, + "index": 1121, "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220034506f7274666f6c696f4e616d65d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", @@ -29088,18 +29191,18 @@ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1117, + "index": 1122, "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220034506f7274666f6c696f4e616d65d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", @@ -29109,18 +29212,18 @@ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1118, + "index": 1123, "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220034506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", @@ -29136,165 +29239,166 @@ "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1119, + "index": 1124, "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220034506f7274666f6c696f4e616d65d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip : POLYX 5552342.355555" + "1 | Name : PortfolioName" ], "output_expert": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1120, + "index": 1125, "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220034506f7274666f6c696f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", - "2 | Tip : POLYX 1234.56789" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Create portfolio", "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1121, + "index": 1126, "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2201ff03000000000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Delete portfolio", "1 | Num : 1023", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Delete portfolio", "1 | Num : 1023", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1122, + "index": 1127, "name": "Portfolio_Delete_portfolio", - "blob": "22010000000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2201b3e3010000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Tip : POLYX 0.000987" + "1 | Num : 123827" ], "output_expert": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 0", + "1 | Num : 123827", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1123, + "index": 1128, "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22017b00000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 1023" + "1 | Num : 123", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", + "1 | Num : 123", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1124, + "index": 1129, "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2201b3e3010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 1023" + "1 | Num : 123827", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", + "1 | Num : 123827", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1125, + "index": 1130, "name": "Portfolio_Delete_portfolio", - "blob": "22012501000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2201b3e3010000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 293", - "2 | Tip : POLYX 5552342.355555" + "1 | Num : 123827", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Delete portfolio", - "1 | Num : 293", + "1 | Num : 123827", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1126, + "index": 1131, "name": "Portfolio_Rename_portfolio", - "blob": "2202010000000000000034506f7274666f6c696f4e616d65d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2202010000000000000034506f7274666f6c696f4e616d65d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Rename portfolio", "1 | Num : 1", "2 | To name : PortfolioName", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Rename portfolio", @@ -29302,1248 +29406,1223 @@ "2 | To name : PortfolioName", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1127, + "index": 1132, "name": "Portfolio_Rename_portfolio", - "blob": "22027b0000000000000034506f7274666f6c696f4e616d65d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2202010000000000000034506f7274666f6c696f4e616d65d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123", - "2 | To name : PortfolioName" + "1 | Num : 1", + "2 | To name : PortfolioName", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123", + "1 | Num : 1", "2 | To name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1128, + "index": 1133, "name": "Portfolio_Rename_portfolio", - "blob": "22027b0000000000000034506f7274666f6c696f4e616d65d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2202000000000000000034506f7274666f6c696f4e616d65d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 0.000987" + "1 | Num : 0", + "2 | To name : PortfolioName" ], "output_expert": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123", + "1 | Num : 0", "2 | To name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1129, + "index": 1134, "name": "Portfolio_Rename_portfolio", - "blob": "2202b3e301000000000034506f7274666f6c696f4e616d65d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2202010000000000000034506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", + "1 | Num : 1", "2 | To name : PortfolioName", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", + "1 | Num : 1", "2 | To name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1130, + "index": 1135, "name": "Portfolio_Rename_portfolio", - "blob": "2202b3e301000000000034506f7274666f6c696f4e616d65d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2202010000000000000034506f7274666f6c696f4e616d65d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", + "1 | Num : 1", "2 | To name : PortfolioName", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", + "1 | Num : 1", "2 | To name : PortfolioName", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1131, + "index": 1136, "name": "Portfolio_Quit_portfolio_custody", - "blob": "2203d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2203c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1132, + "index": 1137, "name": "Portfolio_Quit_portfolio_custody", - "blob": "2203d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2203c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1133, + "index": 1138, "name": "Portfolio_Quit_portfolio_custody", - "blob": "2203d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2203c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1134, + "index": 1139, "name": "Portfolio_Quit_portfolio_custody", - "blob": "2203d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2203c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1135, + "index": 1140, "name": "Portfolio_Quit_portfolio_custody", - "blob": "2203d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2203c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Pid [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Pid [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Pid [2/3] : 82e9460bc258f6e8121af313b8", "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1136, + "index": 1141, "name": "Portfolio_Accept_portfolio_custody", - "blob": "22042309000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22040100000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Auth id : 1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", + "1 | Auth id : 1", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1137, + "index": 1142, "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040100000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22040000000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1" + "1 | Auth id : 0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1138, + "index": 1143, "name": "Portfolio_Accept_portfolio_custody", - "blob": "22042309000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22040100000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1139, + "index": 1144, "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040100000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22046bc4000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1", - "2 | Tip : POLYX 55.555555" + "1 | Auth id : 50283" ], "output_expert": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1140, + "index": 1145, "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22046400000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth id : 100", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1141, + "index": 1146, "name": "Portfolio_Move_portfolio_funds", - "blob": "2205d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000800417373657449442d3132333435363738530e2570b3f8c9f32025e3d071b624cb01c2f778c99d663cf5909c8627084e132a2f051667386edefc2d69ad8112f51f5401417373657449442d313233343536373804cb5f816fd3f1695a01459a4010f59b7ecce1da5627fabf81f56b7e213dde25c420a8d7b28fcd7db3a6d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2205c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e201000000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", - "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", - "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Funds : ", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", - "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", - "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", + "3 | Funds : ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1142, + "index": 1147, "name": "Portfolio_Move_portfolio_funds", - "blob": "2205d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000800417373657449442d3132333435363738530e2570b3f8c9f32025e3d071b624cb01c2f778c99d663cf5909c8627084e132a2f051667386edefc2d69ad8112f51f5401417373657449442d313233343536373804cb5f816fd3f1695a01459a4010f59b7ecce1da5627fabf81f56b7e213dde25c420a8d7b28fcd7db3a6d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2205c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e20100000000000800417373657449442d3132333435363738eafe7f56e2a7ca7913a5c1d50186fb55018e6a6748e986491bc200eb8d87c21e6d9c32de9b1ebb5be96ce03289dc72b9fd01417373657449442d313233343536373804c97ec342a0f1f50b010cc4810752dc958ee11b77a963a8d1db7904d68b1ae3f298b98656fa313a30eed503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1143, + "index": 1148, "name": "Portfolio_Move_portfolio_funds", - "blob": "2205d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000800417373657449442d3132333435363738530e2570b3f8c9f32025e3d071b624cb01c2f778c99d663cf5909c8627084e132a2f051667386edefc2d69ad8112f51f5401417373657449442d313233343536373804cb5f816fd3f1695a01459a4010f59b7ecce1da5627fabf81f56b7e213dde25c420a8d7b28fcd7db3a6d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2205c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e20100000000000800417373657449442d3132333435363738eafe7f56e2a7ca7913a5c1d50186fb55018e6a6748e986491bc200eb8d87c21e6d9c32de9b1ebb5be96ce03289dc72b9fd01417373657449442d313233343536373804c97ec342a0f1f50b010cc4810752dc958ee11b77a963a8d1db7904d68b1ae3f298b98656fa313a30eed503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", - "4 | Tip : POLYX 0.000987" + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee" ], "output_expert": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1144, + "index": 1149, "name": "Portfolio_Move_portfolio_funds", - "blob": "2205d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000800417373657449442d3132333435363738530e2570b3f8c9f32025e3d071b624cb01c2f778c99d663cf5909c8627084e132a2f051667386edefc2d69ad8112f51f5401417373657449442d313233343536373804cb5f816fd3f1695a01459a4010f59b7ecce1da5627fabf81f56b7e213dde25c420a8d7b28fcd7db3a6d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2205c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e20100000000000800417373657449442d3132333435363738eafe7f56e2a7ca7913a5c1d50186fb55018e6a6748e986491bc200eb8d87c21e6d9c32de9b1ebb5be96ce03289dc72b9fd01417373657449442d313233343536373804c97ec342a0f1f50b010cc4810752dc958ee11b77a963a8d1db7904d68b1ae3f298b98656fa313a30eed503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", - "4 | Tip : POLYX 1234.56789" + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds [1/9] : AssetID-12345678", - "3 | Funds [2/9] : 270023906247222888249302054499053.2767", - "3 | Funds [3/9] : 55", - "3 | Funds [4/9] : 0xc2f778c99d663cf5909c8627084e132a2f05", - "3 | Funds [5/9] : 1667386edefc2d69ad8112f51f54", + "3 | Funds [2/9] : 114290364141479552094551846603158.7161", + "3 | Funds [3/9] : 38", + "3 | Funds [4/9] : 0x8e6a6748e986491bc200eb8d87c21e6d9c32", + "3 | Funds [5/9] : de9b1ebb5be96ce03289dc72b9fd", "3 | Funds [6/9] : AssetID-12345678", - "3 | Funds [7/9] : 6515004226379276235", - "3 | Funds [8/9] : 0x459a4010f59b7ecce1da5627fabf81f56b7e", - "3 | Funds [9/9] : 213dde25c420a8d7b28fcd7db3a6", + "3 | Funds [7/9] : 861860574328487625", + "3 | Funds [8/9] : 0x0cc4810752dc958ee11b77a963a8d1db7904", + "3 | Funds [9/9] : d68b1ae3f298b98656fa313a30ee", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1145, + "index": 1150, "name": "Portfolio_Move_portfolio_funds", - "blob": "2205d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2205c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e201000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", - "3 | Funds : " + "3 | Funds : ", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | From [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | From [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | From [2/3] : 82e9460bc258f6e8121af313b8", "1 | From [3/3] : 123456", - "2 | To [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | To [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | To [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | To [2/3] : 82e9460bc258f6e8121af313b8", "2 | To [3/3] : 123456", "3 | Funds : ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1146, + "index": 1151, "name": "Portfolio_Pre_approve_portfolio", - "blob": "2206417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2206417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio id [3/3] : 123456" + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1147, + "index": 1152, "name": "Portfolio_Pre_approve_portfolio", - "blob": "2206417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2206417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1148, + "index": 1153, "name": "Portfolio_Pre_approve_portfolio", - "blob": "2206417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2206417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1149, + "index": 1154, "name": "Portfolio_Pre_approve_portfolio", - "blob": "2206417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2206417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1150, + "index": 1155, "name": "Portfolio_Pre_approve_portfolio", - "blob": "2206417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2206417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio id [3/3] : 123456" ], "output_expert": [ "0 | Portfolio : Pre approve portfolio", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1151, + "index": 1156, "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "2207417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2207417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1152, + "index": 1157, "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "2207417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2207417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1153, + "index": 1158, "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "2207417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2207417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio id [3/3] : 123456" + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1154, + "index": 1159, "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "2207417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2207417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio id [3/3] : 123456" ], "output_expert": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1155, + "index": 1160, "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "2207417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2207417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Remove portfolio pre approval", "1 | Asset id : AssetID-12345678", - "2 | Portfolio id [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio id [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio id [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio id [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1156, + "index": 1161, "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "2208117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22082910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4" + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1157, + "index": 1162, "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "2208117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22082910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1158, + "index": 1163, "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "2208117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22082910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1159, + "index": 1164, "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "2208117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22082910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1160, + "index": 1165, "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "2208117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22082910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 1234.56789" + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Trusted identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Trusted identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Trusted identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1161, + "index": 1166, "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "2209117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22092910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1162, + "index": 1167, "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "2209117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22092910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 55.555555" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1163, + "index": 1168, "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "2209117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22092910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1164, + "index": 1169, "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "2209117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22092910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1165, + "index": 1170, "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "2209117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "22092910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", - "2 | Tip : POLYX 0.000987" + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Identity [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Identity [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Identity [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1166, + "index": 1171, "name": "Portfolio_Create_custody_portfolio", - "blob": "220a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434506f7274666f6c696f4e616d65d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34506f7274666f6c696f4e616d65d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1167, + "index": 1172, "name": "Portfolio_Create_custody_portfolio", - "blob": "220a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434506f7274666f6c696f4e616d65d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34506f7274666f6c696f4e616d65d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1168, + "index": 1173, "name": "Portfolio_Create_custody_portfolio", - "blob": "220a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434506f7274666f6c696f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34506f7274666f6c696f4e616d65d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1169, + "index": 1174, "name": "Portfolio_Create_custody_portfolio", - "blob": "220a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434506f7274666f6c696f4e616d65d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34506f7274666f6c696f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1170, + "index": 1175, "name": "Portfolio_Create_custody_portfolio", - "blob": "220a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d434506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "220a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b34506f7274666f6c696f4e616d65d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "1 | Portfolio owner id [2/2] : bc938b8219f2e4cea7f54ab5d4", + "1 | Portfolio owner id [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "1 | Portfolio owner id [2/2] : 9e2631054113aec3667f5a1d3b", "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1171, + "index": 1176, "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2300f4010000f4010000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Protocolfee : Change coefficient", "1 | Coefficient [1/2] : 500", "1 | Coefficient [2/2] : 500", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Protocolfee : Change coefficient", "1 | Coefficient [1/2] : 500", "1 | Coefficient [2/2] : 500", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1172, + "index": 1177, "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2300e8030000e8030000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 5552342.355555" + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1173, + "index": 1178, "name": "Protocolfee_Change_coefficient", - "blob": "2300e8030000e8030000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2300e8030000e8030000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Protocolfee : Change coefficient", "1 | Coefficient [1/2] : 1000", @@ -30555,290 +30634,310 @@ "1 | Coefficient [1/2] : 1000", "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1174, + "index": 1179, "name": "Protocolfee_Change_coefficient", - "blob": "2300e8030000e8030000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2300f4010000f4010000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 1000", - "1 | Coefficient [2/2] : 1000", - "2 | Tip : POLYX 5552342.355555" + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 1000", - "1 | Coefficient [2/2] : 1000", + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1175, + "index": 1180, "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2300e8030000e8030000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 0.000987" + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1176, + "index": 1181, "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4120dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc3202d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25003856656e756544657461696c735f410454abf7040d58ad96f8ad5b94b995956f1bd943109482d3a907143b727c54f01700d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", - "3 | Typ : Sto", - "4 | Tip : POLYX 1234.56789" + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", + "3 | Typ : Other", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", - "3 | Typ : Sto", + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", + "3 | Typ : Other", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1177, + "index": 1182, "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2200d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25003856656e756544657461696c735f412088bcbfd6c94243caca6504d1fceca29296b9bb978a1300d78b1b710779e5373baa203d0eaca754e2e51d0c488f0f634920f183ac842df7d25d4a337c9e6ca64e24165d680a5d16594cfb61ad235d7916352d551057ae7e5db4eddfb7a4632326f80cd689dcd4c3a616793317592907b39543059bfcf6d0ceb808ad43d5c14e38428827a36a273e2ee99415b00104ed739e1cf725495f1c1ed704b5f52b7768353664744c6e81c785fb5e88362229a67ed553748aeef52e329ff1a53238bb1452285c69b07070dad8ee63eeeedb47b0ed0f14781afde744ee18c5a1aebc584f12f6d71ec72270994e86c173511188c55fe4fa120495efa94a9656c475cda7013a00d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "2 | Signers [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Signers [2/16] : NiMd9HmyXd", + "2 | Signers [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Signers [4/16] : UCxwGrXN6P", + "2 | Signers [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Signers [6/16] : kvj2xufBeK", + "2 | Signers [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Signers [8/16] : 9BKYhesLcQ", + "2 | Signers [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Signers [10/16] : TU5pBNhuU2", + "2 | Signers [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Signers [12/16] : 1MPbD4qJtM", + "2 | Signers [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Signers [14/16] : hvt9V8Zaza", + "2 | Signers [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Signers [16/16] : 6ERrr99DbT", "3 | Typ : Other", - "4 | Tip : POLYX 1234.56789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "2 | Signers [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Signers [2/16] : NiMd9HmyXd", + "2 | Signers [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Signers [4/16] : UCxwGrXN6P", + "2 | Signers [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Signers [6/16] : kvj2xufBeK", + "2 | Signers [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Signers [8/16] : 9BKYhesLcQ", + "2 | Signers [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Signers [10/16] : TU5pBNhuU2", + "2 | Signers [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Signers [12/16] : 1MPbD4qJtM", + "2 | Signers [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Signers [14/16] : hvt9V8Zaza", + "2 | Signers [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Signers [16/16] : 6ERrr99DbT", "3 | Typ : Other", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1178, + "index": 1183, "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2203d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25003856656e756544657461696c735f4110f08315d04e94640278050b987c1d3b1aace5a42fa889076731bb37578945736f5a5540ba35929d88b845eb06873a17e1e20b4b1e0639dfd9a2523f7119add150409019a44ae2bc7478879bb57826a5aadf6d76995d9cbce903a8fd70c67f3b17c24cf8460795aa3e83c48aad739403bbaa41b700423e88150237ec057505ee7701d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", - "3 | Typ : Exchange", - "4 | Tip : POLYX 5552342.355555" + "2 | Signers [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Signers [2/8] : 4WsdVZdTEZ", + "2 | Signers [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Signers [4/8] : ZKWhXp3DFM", + "2 | Signers [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Signers [6/8] : TXFeuVBVFn", + "2 | Signers [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Signers [8/8] : kuNGAaBgwB", + "3 | Typ : Distribution", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", - "3 | Typ : Exchange", + "2 | Signers [1/8] : 5HW4HmabFHybRvsX73NfQDtM4oRudK9n8u6Y3G", + "2 | Signers [2/8] : 4WsdVZdTEZ", + "2 | Signers [3/8] : 5E79VVuTWqVYZAv1eGDtophr3pB7WnoW7hPELj", + "2 | Signers [4/8] : ZKWhXp3DFM", + "2 | Signers [5/8] : 5DXMjCq9bJGnSofCFJiduucnbZ5ZGDRbeXtE5X", + "2 | Signers [6/8] : TXFeuVBVFn", + "2 | Signers [7/8] : 5GTU1dHxZwjnLSNgBfKqCKRRc6RwjPBZuYm6bz", + "2 | Signers [8/8] : kuNGAaBgwB", + "3 | Typ : Distribution", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1179, + "index": 1184, "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4120dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc3202d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25003856656e756544657461696c735f411402bb3771c852628ca659942b3c0ff44c07bd6e5dbedafe3238d8544f6cb6e24b002e69528447802e3c8a8b5bd4e597dccac7c2e63776415541698cdbef9b2d01f4f14cfc20369461223aa4664581c86dbcfe704c55e4a63fa9a0b310ce9449067a374c5e82645395a43210eb14272247d33e251dcf3dc71d1f9523f2bc0c970c182ba8837854781fbfa90881c16e42cb760df47c877686137fa1864bc3a9cf2903d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", - "3 | Typ : Sto", - "4 | Tip : POLYX 5552342.355555" + "2 | Signers [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Signers [2/10] : 6FZYMDuRsY", + "2 | Signers [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Signers [4/10] : QiM4baG52j", + "2 | Signers [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Signers [6/10] : 5Skz3Q5wkP", + "2 | Signers [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Signers [8/10] : GFUWCfiVGf", + "2 | Signers [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Signers [10/10] : ydXR2RELm9", + "3 | Typ : Exchange", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", - "3 | Typ : Sto", + "2 | Signers [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Signers [2/10] : 6FZYMDuRsY", + "2 | Signers [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Signers [4/10] : QiM4baG52j", + "2 | Signers [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Signers [6/10] : 5Skz3Q5wkP", + "2 | Signers [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Signers [8/10] : GFUWCfiVGf", + "2 | Signers [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Signers [10/10] : ydXR2RELm9", + "3 | Typ : Exchange", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1180, + "index": 1185, "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2202d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25003856656e756544657461696c735f412088bcbfd6c94243caca6504d1fceca29296b9bb978a1300d78b1b710779e5373baa203d0eaca754e2e51d0c488f0f634920f183ac842df7d25d4a337c9e6ca64e24165d680a5d16594cfb61ad235d7916352d551057ae7e5db4eddfb7a4632326f80cd689dcd4c3a616793317592907b39543059bfcf6d0ceb808ad43d5c14e38428827a36a273e2ee99415b00104ed739e1cf725495f1c1ed704b5f52b7768353664744c6e81c785fb5e88362229a67ed553748aeef52e329ff1a53238bb1452285c69b07070dad8ee63eeeedb47b0ed0f14781afde744ee18c5a1aebc584f12f6d71ec72270994e86c173511188c55fe4fa120495efa94a9656c475cda7013a02d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "2 | Signers [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Signers [2/16] : NiMd9HmyXd", + "2 | Signers [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Signers [4/16] : UCxwGrXN6P", + "2 | Signers [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Signers [6/16] : kvj2xufBeK", + "2 | Signers [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Signers [8/16] : 9BKYhesLcQ", + "2 | Signers [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Signers [10/16] : TU5pBNhuU2", + "2 | Signers [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Signers [12/16] : 1MPbD4qJtM", + "2 | Signers [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Signers [14/16] : hvt9V8Zaza", + "2 | Signers [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Signers [16/16] : 6ERrr99DbT", "3 | Typ : Sto", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Create venue", "1 | Details : VenueDetails_A", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "2 | Signers [1/16] : 5F9zSTbBjQ5X1N5irJmDH7bgHHSuA2eaBLu3kp", + "2 | Signers [2/16] : NiMd9HmyXd", + "2 | Signers [3/16] : 5FumaGXKjhcf8Ccv4KxtpWp99BXfXnfECLGxja", + "2 | Signers [4/16] : UCxwGrXN6P", + "2 | Signers [5/16] : 5Ct2DzMiSHdctZJJBGq52JfZQip572z8TXPvz2", + "2 | Signers [6/16] : kvj2xufBeK", + "2 | Signers [7/16] : 5HfwYdsv1sQ9XL1nNDNoyVyRbkv8SR3GFg6JBG", + "2 | Signers [8/16] : 9BKYhesLcQ", + "2 | Signers [9/16] : 5DZwTs6sn3LYwGhSRkUUuiBUNoGwCXwG6awP5N", + "2 | Signers [10/16] : TU5pBNhuU2", + "2 | Signers [11/16] : 5DJ2HRwS33pDZtPYZtHR6vg3BSREAvsgUZC3BP", + "2 | Signers [12/16] : 1MPbD4qJtM", + "2 | Signers [13/16] : 5CydDzp6wVPCCARm9gEFJDXtYMM6XssZdeBp2A", + "2 | Signers [14/16] : hvt9V8Zaza", + "2 | Signers [15/16] : 5HeMYKgZfRGNHfJyAEe98UNQmrjbwNMdfNRrvR", + "2 | Signers [16/16] : 6ERrr99DbT", "3 | Typ : Sto", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 100", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1181, + "index": 1186, "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250123090000000000003856656e756544657461696c735f41d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue details", - "1 | Id : 50283", + "1 | Id : 2339", "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Update venue details", - "1 | Id : 50283", + "1 | Id : 2339", "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1182, + "index": 1187, "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25016bc40000000000003856656e756544657461696c735f41d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue details", "1 | Id : 50283", @@ -30851,638 +30950,590 @@ "1 | Id : 50283", "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1183, + "index": 1188, "name": "Settlement_Update_venue_details", - "blob": "250100000000000000003856656e756544657461696c735f41d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250101000000000000003856656e756544657461696c735f41d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue details", - "1 | Id : 0", + "1 | Id : 1", "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Update venue details", - "1 | Id : 0", + "1 | Id : 1", "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1184, + "index": 1189, "name": "Settlement_Update_venue_details", - "blob": "250123090000000000003856656e756544657461696c735f41d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250164000000000000003856656e756544657461696c735f41d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue details", - "1 | Id : 2339", + "1 | Id : 100", "2 | Details : VenueDetails_A", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Update venue details", - "1 | Id : 2339", + "1 | Id : 100", "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1185, + "index": 1190, "name": "Settlement_Update_venue_details", - "blob": "250164000000000000003856656e756544657461696c735f41d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250123090000000000003856656e756544657461696c735f41d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue details", - "1 | Id : 100", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 1234.56789" + "1 | Id : 2339", + "2 | Details : VenueDetails_A" ], "output_expert": [ "0 | Settlement : Update venue details", - "1 | Id : 100", + "1 | Id : 2339", "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1186, + "index": 1191, "name": "Settlement_Update_venue_type", - "blob": "2502230900000000000002d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2502230900000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue type", "1 | Id : 2339", - "2 | Typ : Sto", - "3 | Tip : POLYX 1234.56789" + "2 | Typ : Other", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Update venue type", "1 | Id : 2339", - "2 | Typ : Sto", + "2 | Typ : Other", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1187, + "index": 1192, "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2502010000000000000003d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", - "3 | Tip : POLYX 55.555555" + "1 | Id : 1", + "2 | Typ : Exchange", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", + "1 | Id : 1", + "2 | Typ : Exchange", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1188, + "index": 1193, "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2502640000000000000001d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", - "3 | Tip : POLYX 0.000987" + "1 | Id : 100", + "2 | Typ : Distribution", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", + "1 | Id : 100", + "2 | Typ : Distribution", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1189, + "index": 1194, "name": "Settlement_Update_venue_type", - "blob": "2502010000000000000002d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2502640000000000000003d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue type", - "1 | Id : 1", - "2 | Typ : Sto", - "3 | Tip : POLYX 1234.56789" + "1 | Id : 100", + "2 | Typ : Exchange", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Update venue type", - "1 | Id : 1", - "2 | Typ : Sto", + "1 | Id : 100", + "2 | Typ : Exchange", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1190, + "index": 1195, "name": "Settlement_Update_venue_type", - "blob": "2502640000000000000002d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2502230900000000000002d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue type", - "1 | Id : 100", + "1 | Id : 2339", "2 | Typ : Sto", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Update venue type", - "1 | Id : 100", + "1 | Id : 2339", "2 | Typ : Sto", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1191, + "index": 1196, "name": "Settlement_Affirm_with_receipts", - "blob": "250301000000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2503010000000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts", "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Tip : POLYX 5552342.355555" + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Affirm with receipts", "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios : ", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1192, + "index": 1197, "name": "Settlement_Affirm_with_receipts", - "blob": "2503010000000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e00d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250364000000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 1", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", - "4 | Tip : POLYX 1234.56789" + "1 | Id : 100", + "2 | Receipt details : ", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 1", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", + "1 | Id : 100", + "2 | Receipt details : ", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1193, + "index": 1198, "name": "Settlement_Affirm_with_receipts", - "blob": "2503000000000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e00d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250300000000000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts", "1 | Id : 0", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : " + "2 | Receipt details : ", + "3 | Portfolios : ", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Affirm with receipts", "1 | Id : 0", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", + "2 | Receipt details : ", "3 | Portfolios : ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1194, + "index": 1199, "name": "Settlement_Affirm_with_receipts", - "blob": "2503000000000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e00d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25036bc40000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 0", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", + "1 | Id : 50283", + "2 | Receipt details : ", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 0", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", + "1 | Id : 50283", + "2 | Receipt details : ", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 1", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1195, + "index": 1200, "name": "Settlement_Affirm_with_receipts", - "blob": "2503230900000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e00d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2503640000000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", - "4 | Tip : POLYX 1234.56789" + "1 | Id : 100", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456" ], "output_expert": [ "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios : ", + "1 | Id : 100", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "3 | Portfolios [6/6] : 123456", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1196, + "index": 1201, "name": "Settlement_Set_venue_filtering", - "blob": "2504417373657449442d313233343536373800d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2504417373657449442d313233343536373801d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", - "2 | Enabled : False", - "3 | Tip : POLYX 0.000987" + "2 | Enabled : True" ], "output_expert": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", - "2 | Enabled : False", + "2 | Enabled : True", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1197, + "index": 1202, "name": "Settlement_Set_venue_filtering", - "blob": "2504417373657449442d313233343536373800d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2504417373657449442d313233343536373800d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : False", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : False", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1198, + "index": 1203, "name": "Settlement_Set_venue_filtering", - "blob": "2504417373657449442d313233343536373801d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2504417373657449442d313233343536373801d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : True", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : True", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1199, + "index": 1204, "name": "Settlement_Set_venue_filtering", - "blob": "2504417373657449442d313233343536373801d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2504417373657449442d313233343536373800d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", - "2 | Enabled : True", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Enabled : False", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", - "2 | Enabled : True", + "2 | Enabled : False", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1200, + "index": 1205, "name": "Settlement_Set_venue_filtering", - "blob": "2504417373657449442d313233343536373800d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2504417373657449442d313233343536373800d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : False", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Set venue filtering", "1 | Asset id : AssetID-12345678", "2 | Enabled : False", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1201, + "index": 1206, "name": "Settlement_Allow_venues", - "blob": "2505417373657449442d3132333435363738040844200000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2505417373657449442d3132333435363738040844200000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", "2 | Venues : 2114568", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", "2 | Venues : 2114568", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1202, + "index": 1207, "name": "Settlement_Allow_venues", - "blob": "2505417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2505417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", @@ -31490,7 +31541,7 @@ "2 | Venues [2/4] : 0", "2 | Venues [3/4] : 2114568", "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Allow venues", @@ -31501,122 +31552,134 @@ "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1203, + "index": 1208, "name": "Settlement_Allow_venues", - "blob": "2505417373657449442d3132333435363738040844200000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568", - "3 | Tip : POLYX 1234.56789" + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1204, + "index": 1209, "name": "Settlement_Allow_venues", - "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2505417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222" + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222" ], "output_expert": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1205, + "index": 1210, "name": "Settlement_Allow_venues", - "blob": "2505417373657449442d3132333435363738040844200000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568", - "3 | Tip : POLYX 0.000987" + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Allow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1206, + "index": 1211, "name": "Settlement_Disallow_venues", - "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2506417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1207, + "index": 1212, "name": "Settlement_Disallow_venues", - "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", "2 | Venues [1/3] : 0", "2 | Venues [2/3] : 2114568", "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Disallow venues", @@ -31625,39 +31688,49 @@ "2 | Venues [2/3] : 2114568", "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1208, + "index": 1213, "name": "Settlement_Disallow_venues", - "blob": "2506417373657449442d3132333435363738040844200000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2506417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568" + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues : 2114568", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1209, + "index": 1214, "name": "Settlement_Disallow_venues", - "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", @@ -31673,3157 +31746,3312 @@ "2 | Venues [2/3] : 2114568", "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1210, + "index": 1215, "name": "Settlement_Disallow_venues", - "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2506417373657449442d3132333435363738040844200000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 1234.56789" + "2 | Venues : 2114568", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Disallow venues", "1 | Asset id : AssetID-12345678", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", + "2 | Venues : 2114568", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1211, + "index": 1216, "name": "Settlement_Update_venue_signers", - "blob": "25076bc4000000000000086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2201d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250701000000000000000454abf7040d58ad96f8ad5b94b995956f1bd943109482d3a907143b727c54f01701d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", - "3 | Add signers : True", - "4 | Tip : POLYX 5552342.355555" + "1 | Id : 1", + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", + "3 | Add signers : True" ], "output_expert": [ "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "1 | Id : 1", + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", "3 | Add signers : True", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1212, + "index": 1217, "name": "Settlement_Update_venue_signers", - "blob": "25070100000000000000086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2200d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250700000000000000001410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a085900d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue signers", - "1 | Id : 1", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "1 | Id : 0", + "2 | Signers [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Signers [2/10] : mAQmPAv3py", + "2 | Signers [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Signers [4/10] : 4nPV7SRNhS", + "2 | Signers [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Signers [6/10] : M8PtP3suCY", + "2 | Signers [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Signers [8/10] : ZCZxbsVkJF", + "2 | Signers [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Signers [10/10] : AsDCZcNZ6q", "3 | Add signers : False", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Update venue signers", - "1 | Id : 1", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "1 | Id : 0", + "2 | Signers [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Signers [2/10] : mAQmPAv3py", + "2 | Signers [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Signers [4/10] : 4nPV7SRNhS", + "2 | Signers [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Signers [6/10] : M8PtP3suCY", + "2 | Signers [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Signers [8/10] : ZCZxbsVkJF", + "2 | Signers [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Signers [10/10] : AsDCZcNZ6q", "3 | Add signers : False", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1213, + "index": 1218, "name": "Settlement_Update_venue_signers", - "blob": "2507230900000000000020dea95531f10c94591dc6b0a369253b185d287304be0040b28b4dbcae4461e7359ac106d309cd24cb4d80a1e0973da9f6fad6d0bcc59603c087c1c51506ea8404de3a12bc7a86842fe41db9c7330095584bea5e31407f01c4923582abbdc96240b2b363226f35b349b3d0601129ff14f1b962af0365b41d54a820ea8757b6733c1e5f33186ea0f33e48b0f16fcccf15b37f481982c367a7da53ac8cc4ca0c026ab8c5fdc04529b56ddd8b5fbde7a561b50373b49f7e997bb6354730a7f94b0601c05006b52c9f649249cefb1228a8efa7a374e6eb839d249f5fa7c6b122f5092aa89971efa483daa5f08632adf897ce97bdbaa6042be0d89e245d0b8f1df4cc3200d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250764000000000000001402bb3771c852628ca659942b3c0ff44c07bd6e5dbedafe3238d8544f6cb6e24b002e69528447802e3c8a8b5bd4e597dccac7c2e63776415541698cdbef9b2d01f4f14cfc20369461223aa4664581c86dbcfe704c55e4a63fa9a0b310ce9449067a374c5e82645395a43210eb14272247d33e251dcf3dc71d1f9523f2bc0c970c182ba8837854781fbfa90881c16e42cb760df47c877686137fa1864bc3a9cf2900d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", + "1 | Id : 100", + "2 | Signers [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Signers [2/10] : 6FZYMDuRsY", + "2 | Signers [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Signers [4/10] : QiM4baG52j", + "2 | Signers [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Signers [6/10] : 5Skz3Q5wkP", + "2 | Signers [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Signers [8/10] : GFUWCfiVGf", + "2 | Signers [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Signers [10/10] : ydXR2RELm9", "3 | Add signers : False", - "4 | Tip : POLYX 1234.56789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/16] : 5H6enmWrqBjBfxttB3k4s14GeqNq9WB95c648H", - "2 | Signers [2/16] : 8vjy5sVa9B", - "2 | Signers [3/16] : 5FZca9U9b9Z5jzLyvqzNRGZwcDphFnWH5XCjnX", - "2 | Signers [4/16] : z9mBZSgDsc", - "2 | Signers [5/16] : 5H65jovvkH2nkWPaZRJGdfhM8XreGnwoJktxSM", - "2 | Signers [6/16] : kCwkrpqs9Q", - "2 | Signers [7/16] : 5G71foPpQgWuuSRqhyaQJLXtSmLrTMT6im9mZ5", - "2 | Signers [8/16] : 35oBi2h5Bv", - "2 | Signers [9/16] : 5CkXaEoxZbCt18ad6cpqyefkvS46cXe5tFgiXG", - "2 | Signers [10/16] : XhgjBF2tmK", - "2 | Signers [11/16] : 5GEyV1A9a3BADPujJVuKVyj5FCFu4ZiwQ1vpgj", - "2 | Signers [12/16] : 3yNjHoshVs", - "2 | Signers [13/16] : 5GQrpjRKCCZen54QMpMa8wnhDAXpHxwpxbtjLg", - "2 | Signers [14/16] : 5SHQC1xWWu", - "2 | Signers [15/16] : 5FsmV46a8dzpnNCKRYraFeWYSgugzYgBEL8GZJ", - "2 | Signers [16/16] : ewdGCNYSkS", + "1 | Id : 100", + "2 | Signers [1/10] : 5C8HZta4Baipo1Z2sfxj1dQ6a3MPPPdpEE6Bzw", + "2 | Signers [2/10] : 6FZYMDuRsY", + "2 | Signers [3/10] : 5C4weKSmbBSTGuh2ARguLeuq4qZKULmM6W4x2m", + "2 | Signers [4/10] : QiM4baG52j", + "2 | Signers [5/10] : 5HbsDr84PJegnhi7MUNPdR5hZ7aB5yaHkiP1hd", + "2 | Signers [6/10] : 5Skz3Q5wkP", + "2 | Signers [7/10] : 5Epx8GYJmAFGvp5eFkSCYZNazPFUQmRdnfcZq4", + "2 | Signers [8/10] : GFUWCfiVGf", + "2 | Signers [9/10] : 5CcPyYBmYU27g22Rch2SkEW2qwsaPeHndi189Q", + "2 | Signers [10/10] : ydXR2RELm9", "3 | Add signers : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1214, + "index": 1219, "name": "Settlement_Update_venue_signers", - "blob": "25070000000000000000086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2201d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250723090000000000000454abf7040d58ad96f8ad5b94b995956f1bd943109482d3a907143b727c54f01700d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue signers", - "1 | Id : 0", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", - "3 | Add signers : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Id : 2339", + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", + "3 | Add signers : False" ], "output_expert": [ "0 | Settlement : Update venue signers", - "1 | Id : 0", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", - "3 | Add signers : True", + "1 | Id : 2339", + "2 | Signers [1/2] : 5DyixrDZFwuhJCuY6eAsgh1M5Vz1FJCZLYSQwR", + "2 | Signers [2/2] : wvDqA2yuhw", + "3 | Add signers : False", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1215, + "index": 1220, "name": "Settlement_Update_venue_signers", - "blob": "25072309000000000000086269d193ab4c7ff3a46dbd6b9a980c64b9982c37ade605a2adf878c48e998a0128b1808f2b8f7e37e81e5c02c9128bdf0e45d24996b8e44c2eb0f9770de85a2200d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250701000000000000001410e7b32d38a2306946c202f757632ba601d597984f6856c9ca26f2e03859ef100e9162dddaf999feae17c13646fdaa861466349480c150207b46dc9a79a8be62b0f3b91c2e5a9f285f4477cb335f86e68524ce553182567f9af7c1de7013aa100eddeb1fd7bfd92e256350779302292a53ab234cf32150d48b3820c8ae4583578ca03c5756ef5ea636e5e420caa711c20b53b9e63f855a79cf8811f0919a085900d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "1 | Id : 1", + "2 | Signers [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Signers [2/10] : mAQmPAv3py", + "2 | Signers [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Signers [4/10] : 4nPV7SRNhS", + "2 | Signers [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Signers [6/10] : M8PtP3suCY", + "2 | Signers [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Signers [8/10] : ZCZxbsVkJF", + "2 | Signers [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Signers [10/10] : AsDCZcNZ6q", "3 | Add signers : False", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/4] : 5EHjz4LwnhVFsBCfDraSRfdKizbqaHocfaaFeD", - "2 | Signers [2/4] : K6MpSXt3iY", - "2 | Signers [3/4] : 5Cz4W41ZSrULyvrzg5xCGDGG3SAPfAg7angh3X", - "2 | Signers [4/4] : G6cuGg7X9G", + "1 | Id : 1", + "2 | Signers [1/10] : 5CSsTCgcFXKgagP9FNvepPBAYCpnetJPekhFWr", + "2 | Signers [2/10] : mAQmPAv3py", + "2 | Signers [3/10] : 5CPoiVnAbmSQzo38GrRkszkWCFwhhVN5D9jWgM", + "2 | Signers [4/10] : 4nPV7SRNhS", + "2 | Signers [5/10] : 5G4igj7JsKYWmVffhwzgSLRH1sqiWioP4op7hd", + "2 | Signers [6/10] : M8PtP3suCY", + "2 | Signers [7/10] : 5CQCT7k96jnWW7Tf98FQAfR3M16krewQbHWsnM", + "2 | Signers [8/10] : ZCZxbsVkJF", + "2 | Signers [9/10] : 5FF6AHkCywuJYQ4wFfuuxoxiAWUBXWqXmUegHi", + "2 | Signers [10/10] : AsDCZcNZ6q", "3 | Add signers : False", "4 | Chain : Polymesh", "5 | Nonce : 2339", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1216, + "index": 1221, "name": "Settlement_Execute_manual_instruction", - "blob": "2508010000000000000000f701000000000000d3040000010fefd3f3300ac5a40ff9a6a5a103f7a3d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25086bc400000000000001ea6b37f19e409e52c8364beeab0bda2a63e557d1253a57763c59a3f8fb812d3b00d3040000d30400009d1c0000017efd596351ffd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 46378543742178287", - "6 | Weight limit [2/2] : 46152016172787449", - "7 | Tip : POLYX 0.000987" + "1 | Id : 50283", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 7325", + "6 | Weight limit [1/2] : 416710495", + "6 | Weight limit [2/2] : 16340", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 46378543742178287", - "6 | Weight limit [2/2] : 46152016172787449", + "1 | Id : 50283", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 7325", + "6 | Weight limit [1/2] : 416710495", + "6 | Weight limit [2/2] : 16340", "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", + "8 | Nonce : 50283", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1217, + "index": 1222, "name": "Settlement_Execute_manual_instruction", - "blob": "25082309000000000000000000000000000000d304000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2508010000000000000001ea6b37f19e409e52c8364beeab0bda2a63e557d1253a57763c59a3f8fb812d3b009d1c00003430000000000000018e86179f60d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 0", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", - "7 | Tip : POLYX 1234.56789" + "1 | Id : 1", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 0", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 0", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", + "1 | Id : 1", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 0", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", + "8 | Nonce : 50283", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1218, + "index": 1223, "name": "Settlement_Execute_manual_instruction", - "blob": "2508640000000000000001d53f69358427722e4f6f43ed0ddac1bad6012a7cce2be59a8ece322f8a2bf54e00f7010000d30400003430000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2508640000000000000001ea6b37f19e409e52c8364beeab0bda2a63e557d1253a57763c59a3f8fb812d3b009d1c000034300000d3040000018e86179f60d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute manual instruction", "1 | Id : 100", - "2 | Portfolio [1/3] : d53f69358427722e4f6f43ed0ddac1bad6012a", - "2 | Portfolio [2/3] : 7cce2be59a8ece322f8a2bf54e", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 1235", - "5 | Offchain transfers : 12340", - "6 | Weight limit : None" + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 1235", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Execute manual instruction", "1 | Id : 100", - "2 | Portfolio [1/3] : d53f69358427722e4f6f43ed0ddac1bad6012a", - "2 | Portfolio [2/3] : 7cce2be59a8ece322f8a2bf54e", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 1235", - "5 | Offchain transfers : 12340", - "6 | Weight limit : None", + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 1235", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 0", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1219, + "index": 1224, "name": "Settlement_Execute_manual_instruction", - "blob": "250801000000000000000034300000f70100009d1c000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2508000000000000000001ea6b37f19e409e52c8364beeab0bda2a63e557d1253a57763c59a3f8fb812d3b003430000034300000d3040000018e86179f60d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio : None", + "1 | Id : 0", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", "3 | Fungible transfers : 12340", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 7325", - "6 | Weight limit : None" + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 1235", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio : None", + "1 | Id : 0", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", "3 | Fungible transfers : 12340", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 7325", - "6 | Weight limit : None", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 1235", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 0", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1220, + "index": 1225, "name": "Settlement_Execute_manual_instruction", - "blob": "25082309000000000000009d1c0000f7010000f7010000010f1e5dae2450338f0fb1229a21cbd611d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2508000000000000000001ea6b37f19e409e52c8364beeab0bda2a63e557d1253a57763c59a3f8fb812d3b00000000009d1c00009d1c0000018e86179f60d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 503", - "6 | Weight limit [1/2] : 40307340975430942", - "6 | Weight limit [2/2] : 5021242534535857", + "1 | Id : 0", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 0", + "4 | Nfts transfers : 7325", + "5 | Offchain transfers : 7325", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 503", - "6 | Weight limit [1/2] : 40307340975430942", - "6 | Weight limit [2/2] : 5021242534535857", + "1 | Id : 0", + "2 | Portfolio [1/3] : ea6b37f19e409e52c8364beeab0bda2a63e557", + "2 | Portfolio [2/3] : d1253a57763c59a3f8fb812d3b", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 0", + "4 | Nfts transfers : 7325", + "5 | Offchain transfers : 7325", + "6 | Weight limit [1/2] : 667279779", + "6 | Weight limit [2/2] : 24", "7 | Chain : Polymesh", - "8 | Nonce : 0", + "8 | Nonce : 100", "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1221, + "index": 1226, "name": "Settlement_Add_instruction", - "blob": "250901d00700000000000002540c5fcd0180000000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250901d007000000000000013b3ffa7e0100080000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : 2130329403", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Tip : POLYX 55.555555" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : 2130329403", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 55.555555", + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1222, + "index": 1227, "name": "Settlement_Add_instruction", - "blob": "250901d007000000000000000100010000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250901d007000000000000000180000000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "3 | Trade date : 128", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Tip : POLYX 0.000987" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "3 | Trade date : 128", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", + "8 | Nonce : 50283", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1223, + "index": 1228, "name": "Settlement_Add_instruction", - "blob": "250901d00700000000000001991f15e40100080000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250901d007000000000000013b3ffa7e0100080000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 2130329403", "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 2130329403", "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Chain : Polymesh", - "8 | Nonce : 2339", + "8 | Nonce : 0", "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1224, + "index": 1229, "name": "Settlement_Add_instruction", - "blob": "250901d00700000000000001991f15e40100080000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250901d007000000000000013b3ffa7e0100010000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 2048", + "2 | Settlement type : 2130329403", + "3 | Trade date : 256", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Tip : POLYX 1234.56789" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 2048", + "2 | Settlement type : 2130329403", + "3 | Trade date : 256", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", + "8 | Nonce : 100", + "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1225, + "index": 1230, "name": "Settlement_Add_instruction", - "blob": "250901d007000000000000000100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250901d00700000000000002b240c73f0100010000000000000100080000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", + "2 | Settlement type : 1070022834", "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Tip : POLYX 1234.56789" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Add instruction", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", + "2 | Settlement type : 1070022834", "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", + "8 | Nonce : 100", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1226, + "index": 1231, "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01d007000000000000000100010000000000000180000000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250a01d007000000000000013b3ffa7e0100010000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c58408368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e20100000000000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", + "2 | Settlement type : 2130329403", "3 | Trade date : 256", "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", + "2 | Settlement type : 2130329403", "3 | Trade date : 256", "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Chain : Polymesh", "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", + "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1227, + "index": 1232, "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01d00700000000000002540c5fcd0100080000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f0001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250a01d007000000000000013b3ffa7e0100080000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c58408368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e20100000000000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 2130329403", "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Tip : POLYX 0.000987" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8" ], "output_expert": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 2130329403", "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 100", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1228, + "index": 1233, "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01d00700000000000001991f15e40100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f0001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250a01d00700000000000002b240c73f0100010000000000000100080000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c584000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 1070022834", "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Tip : POLYX 5552342.355555" + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 1070022834", "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 5552342.355555", + "9 | Nonce : 50283", + "10 | Tip : POLYX 1234.56789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1229, + "index": 1234, "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01d00700000000000002540c5fcd0180000000000000000180000000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f0001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250a01d007000000000000013b3ffa7e0180000000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c584000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 2130329403", "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Tip : POLYX 0.000987" + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 2130329403", "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 0.000987", + "9 | Nonce : 50283", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1230, + "index": 1235, "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01d00700000000000001991f15e40100010000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2ad503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250a01d007000000000000000100080000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c58408368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e20100000000000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add and affirm instruction", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", "8 | Chain : Polymesh", - "9 | Nonce : 0", + "9 | Nonce : 1", "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1231, + "index": 1236, "name": "Settlement_Affirm_instruction", - "blob": "250b2309000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e2010000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250b010000000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 0.000987" + "1 | Id : 1", + "2 | Portfolios : ", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "2 | Portfolios [6/6] : 123456", + "1 | Id : 1", + "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1232, + "index": 1237, "name": "Settlement_Affirm_instruction", - "blob": "250b010000000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250b6bc400000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction", - "1 | Id : 1", - "2 | Portfolios : " + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Affirm instruction", - "1 | Id : 1", + "1 | Id : 50283", "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1233, + "index": 1238, "name": "Settlement_Affirm_instruction", - "blob": "250b230900000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250b000000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios : " + "1 | Id : 0", + "2 | Portfolios : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", + "1 | Id : 0", "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1234, + "index": 1239, "name": "Settlement_Affirm_instruction", - "blob": "250b010000000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250b000000000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction", - "1 | Id : 1", + "1 | Id : 0", "2 | Portfolios : ", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Affirm instruction", - "1 | Id : 1", + "1 | Id : 0", "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1235, + "index": 1240, "name": "Settlement_Affirm_instruction", - "blob": "250b230900000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250b6bc400000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Tip : POLYX 1234.56789" + "1 | Id : 50283", + "2 | Portfolios : " ], "output_expert": [ "0 | Settlement : Affirm instruction", - "1 | Id : 2339", + "1 | Id : 50283", "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1236, + "index": 1241, "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250c010000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : " + "1 | Id : 1", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : ", + "1 | Id : 1", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1237, + "index": 1242, "name": "Settlement_Withdraw_affirmation", - "blob": "250c0100000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e2010000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250c230900000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1238, + "index": 1243, "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250c010000000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", + "1 | Id : 1", "2 | Portfolios : ", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", + "1 | Id : 1", "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1239, + "index": 1244, "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250c000000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : " + "1 | Id : 0", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : ", + "1 | Id : 0", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1240, + "index": 1245, "name": "Settlement_Withdraw_affirmation", - "blob": "250c640000000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250c6bc400000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 100", - "2 | Portfolios : " + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation", - "1 | Id : 100", + "1 | Id : 50283", "2 | Portfolios : ", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1241, + "index": 1246, "name": "Settlement_Reject_instruction", - "blob": "250d6400000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250d0000000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456" ], "output_expert": [ "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1242, + "index": 1247, "name": "Settlement_Reject_instruction", - "blob": "250d6bc4000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250d2309000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 2339", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 2339", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1243, + "index": 1248, "name": "Settlement_Reject_instruction", - "blob": "250d6400000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250d0000000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1244, + "index": 1249, "name": "Settlement_Reject_instruction", - "blob": "250d6bc4000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250d0100000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio [3/3] : 123456" + "1 | Id : 1", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio [3/3] : 123456", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 1", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1245, + "index": 1250, "name": "Settlement_Reject_instruction", - "blob": "250d0000000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250d0000000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction", "1 | Id : 0", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Reject instruction", "1 | Id : 0", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1246, + "index": 1251, "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e6400000000000000135538e412b597bce91349338e8af145f627d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250e000000000000000013458045125ace6a89135518ce23543ce884d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 16842503510420633685", - "2 | Weight limit [2/2] : 2879565915464020809", - "3 | Tip : POLYX 5552342.355555" + "1 | Id : 0", + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 16842503510420633685", - "2 | Weight limit [2/2] : 2879565915464020809", + "1 | Id : 0", + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1247, + "index": 1252, "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0000000000000000a1f8fa7b05d0d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250e6bc40000000000005ed5e0deadc9d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 15912", - "2 | Weight limit [2/2] : 872505086", - "3 | Tip : POLYX 0.000987" + "1 | Id : 50283", + "2 | Weight limit [1/2] : 934819159", + "2 | Weight limit [2/2] : 12907" ], "output_expert": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 15912", - "2 | Weight limit [2/2] : 872505086", + "1 | Id : 50283", + "2 | Weight limit [1/2] : 934819159", + "2 | Weight limit [2/2] : 12907", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1248, + "index": 1253, "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e00000000000000000f0da5cef216be91acd5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250e230900000000000013458045125ace6a89135518ce23543ce884d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43" + "1 | Id : 2339", + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43", + "1 | Id : 2339", + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1249, + "index": 1254, "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e01000000000000000f0da5cef216be91acd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250e23090000000000005ed5e0deadc9d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Id : 2339", + "2 | Weight limit [1/2] : 934819159", + "2 | Weight limit [2/2] : 12907", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43", + "1 | Id : 2339", + "2 | Weight limit [1/2] : 934819159", + "2 | Weight limit [2/2] : 12907", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1250, + "index": 1255, "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e64000000000000000f0da5cef216be91acd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250e640000000000000013458045125ace6a89135518ce23543ce884d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Execute scheduled instruction", "1 | Id : 100", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43" + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Execute scheduled instruction", "1 | Id : 100", - "2 | Weight limit [1/2] : 41022877395232013", - "2 | Weight limit [2/2] : 43", + "2 | Weight limit [1/2] : 9901953616976379973", + "2 | Weight limit [2/2] : 9576970939678988373", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1251, + "index": 1256, "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f230900000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e0001c6980d3107b083ee000000000531f6df95dc37a000000000afec353fd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250f000000000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece000018fafd8ff1c0baa1b0000000029ba2d8f5570c08d00000000dd0fb1d1d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", + "1 | Id : 0", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", "3 | Portfolios : ", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "4 | Number of assets [1/7] : 4292390799", + "4 | Number of assets [2/7] : 464128796", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 2402138665", + "4 | Number of assets [5/7] : 2378199125", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "4 | Number of assets [7/7] : 3518042077", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", + "1 | Id : 0", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", "3 | Portfolios : ", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "4 | Number of assets [1/7] : 4292390799", + "4 | Number of assets [2/7] : 464128796", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 2402138665", + "4 | Number of assets [5/7] : 2378199125", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607", + "4 | Number of assets [7/7] : 3518042077", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", + "6 | Nonce : 100", + "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1252, + "index": 1257, "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f640000000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001c6980d3107b083ee000000000531f6df95dc37a000000000afec353fd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250f00000000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000001169ec5ec4de01d56000000001d99d23e7ef8a93f00000000b0e99cccd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", + "1 | Id : 0", "2 | Receipt details : ", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "4 | Number of assets [1/7] : 3972374038", + "4 | Number of assets [2/7] : 1444798541", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 1053989149", + "4 | Number of assets [5/7] : 1068103806", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607" + "4 | Number of assets [7/7] : 3432835504", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", + "1 | Id : 0", "2 | Receipt details : ", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "4 | Number of assets [1/7] : 3972374038", + "4 | Number of assets [2/7] : 1444798541", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 1053989149", + "4 | Number of assets [5/7] : 1068103806", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607", + "4 | Number of assets [7/7] : 3432835504", "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 0", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1253, + "index": 1258, "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f6bc400000000000008a97685d7781cbad8fae57d8480ad9b45ff37845a5943f71050609e1f0d8df093dbefd4d965f08dd0a9dff2f3a5afee9c36ac8abbc8c1bcac01b45a54390e5fce03f2f13c66602bce80fb1a206d8f23fdc2d8f1d77f454195dbb87f1e82251c27b1e45f878e7f42c97f9774cbdd91130005f280e407c52bc99701fc5c282f8ee822be77cdfd2ea58a36aaa3d17e4f644adc9a9088477c049dfe06870d0bc41c5f5dec81fc9a93c142097d0b4bdce46df1747775942b84cddac232c9c896a25c2b4b773b0751b8ce9cddf155c59f98269a504500769d8aee11c2c734a0f5e62d3cf8fb89278fd9dceda4fa47e43f99f9bdbd406cf4c5d515608b83a0abd2b37f79487256902936c9cb1ae7d17748197f14230d5301c82ea26cd06133dc8741d7665c254721b62e26bab7d4205f7a5238a65722f10e085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001e6f5ea1d7feca1a9000000005e38cb6c694a2280000000008522d5cdd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250f6bc400000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts with count", "1 | Id : 50283", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 501937638", - "4 | Number of assets [2/7] : 2845961343", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1825257566", - "4 | Number of assets [5/7] : 2149730921", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3453297285", + "4 | Number of assets : None", "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Affirm with receipts with count", "1 | Id : 50283", - "2 | Receipt details [1/22] : 15616825963198117545", - "2 | Receipt details [2/22] : 5015793377497441786", - "2 | Receipt details [3/22] : 1222519874904143871", - "2 | Receipt details [4/22] : 5Dt6PY7qF7ZQ1Tz7rFEkkLoQA4bqaDZEhtadqU", - "2 | Receipt details [5/22] : qqhNZSGhfW", - "2 | Receipt details [6/22] : b45a54390e5fce03f2f13c66602bce80fb1a20", - "2 | Receipt details [7/22] : 6d8f23fdc2d8f1d77f454195dbb87f1e82251c", - "2 | Receipt details [8/22] : 27b1e45f878e7f42c97f9774cbdd91130005f2", - "2 | Receipt details [9/22] : 80e407c52bc997", - "2 | Receipt details [10/22] : fc5c282f8ee822be77cdfd2ea58a36aaa3d17e", - "2 | Receipt details [11/22] : 4f644adc9a9088477c049dfe06", - "2 | Receipt details [12/22] : 17031873942937865607", - "2 | Receipt details [13/22] : 9009805928703917185", - "2 | Receipt details [14/22] : 8607770242105232139", - "2 | Receipt details [15/22] : 5EisUXLnbkYnCQuAuhe8Fa2GMhTJCsZAkmtNAF", - "2 | Receipt details [16/22] : UfVpuHQJSg", - "2 | Receipt details [17/22] : 769d8aee11c2c734a0f5e62d3cf8fb89278fd9", - "2 | Receipt details [18/22] : dceda4fa47e43f99f9bdbd406cf4c5d515608b", - "2 | Receipt details [19/22] : 83a0abd2b37f79487256902936c9cb1ae7d177", - "2 | Receipt details [20/22] : 48197f14230d53", - "2 | Receipt details [21/22] : c82ea26cd06133dc8741d7665c254721b62e26", - "2 | Receipt details [22/22] : bab7d4205f7a5238a65722f10e", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "3 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "3 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "3 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 501937638", - "4 | Number of assets [2/7] : 2845961343", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1825257566", - "4 | Number of assets [5/7] : 2149730921", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3453297285", + "4 | Number of assets : None", "5 | Chain : Polymesh", - "6 | Nonce : 50283", + "6 | Nonce : 100", "7 | Tip : POLYX 5552342.355555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1254, + "index": 1259, "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f640000000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001c6980d3107b083ee000000000531f6df95dc37a000000000afec353fd503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250f010000000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece00001d30613863abceeff0000000052b4e91a63ab767e0000000007e87f80d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "1 | Id : 1", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 2249393875", + "4 | Number of assets [2/7] : 4293835834", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 451523666", + "4 | Number of assets [5/7] : 2121706339", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607", - "5 | Tip : POLYX 0.000987" + "4 | Number of assets [7/7] : 2155866119", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "3 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "3 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 822974662", - "4 | Number of assets [2/7] : 4001607687", + "1 | Id : 1", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 2249393875", + "4 | Number of assets [2/7] : 4293835834", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 3757453573", - "4 | Number of assets [5/7] : 2688015509", + "4 | Number of assets [4/7] : 451523666", + "4 | Number of assets [5/7] : 2121706339", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1060498607", + "4 | Number of assets [7/7] : 2155866119", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", + "6 | Nonce : 50283", + "7 | Tip : POLYX 5552342.355555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1255, + "index": 1260, "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f2309000000000000000001e6f5ea1d7feca1a9000000005e38cb6c694a2280000000008522d5cdd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "250f6bc400000000000008c281441400a7e83cbae24cb2fa943cb85f7d1b18c7fb03a31ad6b4916d019c281e1b80b88798989729e1bfcb2426622a7223d877c12deb72012d92c58baaf7d391ae389c842d215ad1b64ffdd320e13fcd3f629a2c3e5062b3455ff968c847d0028b92f706817db4d815166b01783fa7737b722d7354141b690127edbd96da35048849470391ae34fc74615225f6a9913497fb912260fc385dca50196ccdb377f539e5f27be4883ead6dcb8054dc3a7a830037675cbdd1fb9828e6f8373564e5b5dbbc813cccc713dc6e76374e50e6829f4300caae5683a100280822f7b079f98334cc83a2aaf41332d98d2f20d2ed64b10d1e1c454653bd18f867d500ebedb7b2cce7e8be02a9045338c8696d92204d04d3e401c457479ad35a7be11b0ecff29a379c108b7579db4ff84e82028367320fd9ece0000127137e5fb4605ecd00000000fb3cd15e5406a94700000000758ec9fcd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 2339", - "2 | Receipt details : ", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", "3 | Portfolios : ", - "4 | Number of assets [1/7] : 501937638", - "4 | Number of assets [2/7] : 2845961343", + "4 | Number of assets [1/7] : 1602097959", + "4 | Number of assets [2/7] : 3445514420", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1825257566", - "4 | Number of assets [5/7] : 2149730921", + "4 | Number of assets [4/7] : 1590770939", + "4 | Number of assets [5/7] : 1202259540", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3453297285", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "4 | Number of assets [7/7] : 4241067637" ], "output_expert": [ "0 | Settlement : Affirm with receipts with count", - "1 | Id : 2339", - "2 | Receipt details : ", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 4388941455654420930", + "2 | Receipt details [2/22] : 13275649606035497658", + "2 | Receipt details [3/22] : 11746509085633903967", + "2 | Receipt details [4/22] : 5CfttAa9BWxz9u1HYW5rKMsa3DdJMuj1HQ228T", + "2 | Receipt details [5/22] : 5LdA3zDMGf", + "2 | Receipt details [6/22] : 2d92c58baaf7d391ae389c842d215ad1b64ffd", + "2 | Receipt details [7/22] : d320e13fcd3f629a2c3e5062b3455ff968c847", + "2 | Receipt details [8/22] : d0028b92f706817db4d815166b01783fa7737b", + "2 | Receipt details [9/22] : 722d7354141b69", + "2 | Receipt details [10/22] : 27edbd96da35048849470391ae34fc74615225", + "2 | Receipt details [11/22] : f6a9913497fb912260fc385dca", + "2 | Receipt details [12/22] : 4176375843585268048", + "2 | Receipt details [13/22] : 7903041678774891237", + "2 | Receipt details [14/22] : 37007615172313291", + "2 | Receipt details [15/22] : 5DKMCK1vQD19yGjU8Vr3uczGG83QxuG5J8jZRR", + "2 | Receipt details [16/22] : CEQactcMnQ", + "2 | Receipt details [17/22] : caae5683a100280822f7b079f98334cc83a2aa", + "2 | Receipt details [18/22] : f41332d98d2f20d2ed64b10d1e1c454653bd18", + "2 | Receipt details [19/22] : f867d500ebedb7b2cce7e8be02a9045338c869", + "2 | Receipt details [20/22] : 6d92204d04d3e4", + "2 | Receipt details [21/22] : c457479ad35a7be11b0ecff29a379c108b7579", + "2 | Receipt details [22/22] : db4ff84e82028367320fd9ece0", "3 | Portfolios : ", - "4 | Number of assets [1/7] : 501937638", - "4 | Number of assets [2/7] : 2845961343", + "4 | Number of assets [1/7] : 1602097959", + "4 | Number of assets [2/7] : 3445514420", "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1825257566", - "4 | Number of assets [5/7] : 2149730921", + "4 | Number of assets [4/7] : 1590770939", + "4 | Number of assets [5/7] : 1202259540", "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3453297285", + "4 | Number of assets [7/7] : 4241067637", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 1", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1256, + "index": 1261, "name": "Settlement_Affirm_instruction_with_count", - "blob": "25100100000000000000000122bb352dc2ab0079000000001865d307c59256e80000000070662dcad5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25106bc40000000000000001d30613863abceeff0000000052b4e91a63ab767e0000000007e87f80d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", + "1 | Id : 50283", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 758496034", - "3 | Number of assets [2/7] : 2030087106", + "3 | Number of assets [1/7] : 2249393875", + "3 | Number of assets [2/7] : 4293835834", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 131294488", - "3 | Number of assets [5/7] : 3897987781", + "3 | Number of assets [4/7] : 451523666", + "3 | Number of assets [5/7] : 2121706339", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3391972976", - "4 | Tip : POLYX 0.000987" + "3 | Number of assets [7/7] : 2155866119", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", + "1 | Id : 50283", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 758496034", - "3 | Number of assets [2/7] : 2030087106", + "3 | Number of assets [1/7] : 2249393875", + "3 | Number of assets [2/7] : 4293835834", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 131294488", - "3 | Number of assets [5/7] : 3897987781", + "3 | Number of assets [4/7] : 451523666", + "3 | Number of assets [5/7] : 2121706339", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3391972976", + "3 | Number of assets [7/7] : 2155866119", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1257, + "index": 1262, "name": "Settlement_Affirm_instruction_with_count", - "blob": "251023090000000000000001c6980d3107b083ee000000000531f6df95dc37a000000000afec353fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251001000000000000000001ddf7fec98c76769a00000000ebd64ec61373b02100000000cb2fad6dd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", + "1 | Id : 1", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 822974662", - "3 | Number of assets [2/7] : 4001607687", + "3 | Number of assets [1/7] : 3388930013", + "3 | Number of assets [2/7] : 2591454860", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3757453573", - "3 | Number of assets [5/7] : 2688015509", + "3 | Number of assets [4/7] : 3327055595", + "3 | Number of assets [5/7] : 565211923", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1060498607", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Number of assets [7/7] : 1840066507", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", + "1 | Id : 1", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 822974662", - "3 | Number of assets [2/7] : 4001607687", + "3 | Number of assets [1/7] : 3388930013", + "3 | Number of assets [2/7] : 2591454860", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3757453573", - "3 | Number of assets [5/7] : 2688015509", + "3 | Number of assets [4/7] : 3327055595", + "3 | Number of assets [5/7] : 565211923", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1060498607", + "3 | Number of assets [7/7] : 1840066507", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1258, + "index": 1263, "name": "Settlement_Affirm_instruction_with_count", - "blob": "251023090000000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25106bc400000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000001169ec5ec4de01d56000000001d99d23e7ef8a93f00000000b0e99cccd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets : None", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 3432835504", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets : None", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 3432835504", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1259, + "index": 1264, "name": "Settlement_Affirm_instruction_with_count", - "blob": "251001000000000000000001b1c6c97df46777bb00000000cf24b9d964ba75540000000092e36024d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2510640000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2110375601", - "3 | Number of assets [2/7] : 3145164788", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3652789455", - "3 | Number of assets [5/7] : 1417001572", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 610329490", - "4 | Tip : POLYX 55.555555" + "1 | Id : 100", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2110375601", - "3 | Number of assets [2/7] : 3145164788", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3652789455", - "3 | Number of assets [5/7] : 1417001572", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 610329490", + "1 | Id : 100", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1260, + "index": 1265, "name": "Settlement_Affirm_instruction_with_count", - "blob": "251001000000000000000001fa549ba396906aa5000000001a11d69a067592d000000000e9451aa8d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251001000000000000000001169ec5ec4de01d56000000001d99d23e7ef8a93f00000000b0e99cccd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction with count", "1 | Id : 1", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2744866042", - "3 | Number of assets [2/7] : 2775224470", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 2597720346", - "3 | Number of assets [5/7] : 3499259142", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2820294121" + "3 | Number of assets [7/7] : 3432835504", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Affirm instruction with count", "1 | Id : 1", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2744866042", - "3 | Number of assets [2/7] : 2775224470", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 2597720346", - "3 | Number of assets [5/7] : 3499259142", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2820294121", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1261, - "name": "Settlement_Reject_instruction_with_count", - "blob": "25116bc4000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000185fb59ee5a39ecb700000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3998874501", - "3 | Number of assets [2/3] : 3085711706", - "3 | Number of assets [3/3] : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3998874501", - "3 | Number of assets [2/3] : 3085711706", - "3 | Number of assets [3/3] : 0", + "3 | Number of assets [7/7] : 3432835504", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 1", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1262, + "index": 1266, "name": "Settlement_Reject_instruction_with_count", - "blob": "25110100000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25110100000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e201000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets : None", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Number of assets : None" ], "output_expert": [ "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", "3 | Number of assets : None", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1263, + "index": 1267, "name": "Settlement_Reject_instruction_with_count", - "blob": "25112309000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e20100000000000106b2f3f7600624d000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25110000000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000018672d0ea8aaeef9d00000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 4159943174", - "3 | Number of assets [2/3] : 3492021856", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 5552342.355555" + "3 | Number of assets [1/3] : 3939529350", + "3 | Number of assets [2/3] : 2649730698", + "3 | Number of assets [3/3] : 0" ], "output_expert": [ "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 0", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 4159943174", - "3 | Number of assets [2/3] : 3492021856", + "3 | Number of assets [1/3] : 3939529350", + "3 | Number of assets [2/3] : 2649730698", "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1264, + "index": 1268, "name": "Settlement_Reject_instruction_with_count", - "blob": "25116400000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25116400000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000019b913d080e03da4000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction with count", "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets : None" + "3 | Number of assets [1/3] : 138252699", + "3 | Number of assets [2/3] : 1088029454", + "3 | Number of assets [3/3] : 0" ], "output_expert": [ "0 | Settlement : Reject instruction with count", "1 | Id : 100", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets : None", + "3 | Number of assets [1/3] : 138252699", + "3 | Number of assets [2/3] : 1088029454", + "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", "5 | Nonce : 1", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1265, + "index": 1269, "name": "Settlement_Reject_instruction_with_count", - "blob": "25112309000000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000001cbe65321edf70cea00000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25116400000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000010198e37abbd4e62c00000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 100", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 559146699", - "3 | Number of assets [2/3] : 3926718445", + "3 | Number of assets [1/3] : 2061735937", + "3 | Number of assets [2/3] : 753325243", "3 | Number of assets [3/3] : 0", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Id : 100", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 559146699", - "3 | Number of assets [2/3] : 3926718445", + "3 | Number of assets [1/3] : 2061735937", + "3 | Number of assets [2/3] : 753325243", "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1266, + "index": 1270, + "name": "Settlement_Reject_instruction_with_count", + "blob": "25110100000000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000010198e37abbd4e62c00000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Settlement : Reject instruction with count", + "1 | Id : 1", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 2061735937", + "3 | Number of assets [2/3] : 753325243", + "3 | Number of assets [3/3] : 0", + "4 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Settlement : Reject instruction with count", + "1 | Id : 1", + "2 | Portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 2061735937", + "3 | Number of assets [2/3] : 753325243", + "3 | Number of assets [3/3] : 0", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1271, "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251264000000000000000001fa549ba396906aa5000000001a11d69a067592d000000000e9451aa8d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2512010000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000001169ec5ec4de01d56000000001d99d23e7ef8a93f00000000b0e99cccd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2744866042", - "3 | Number of assets [2/7] : 2775224470", + "1 | Id : 1", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 2597720346", - "3 | Number of assets [5/7] : 3499259142", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2820294121", + "3 | Number of assets [7/7] : 3432835504", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2744866042", - "3 | Number of assets [2/7] : 2775224470", + "1 | Id : 1", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3972374038", + "3 | Number of assets [2/7] : 1444798541", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 2597720346", - "3 | Number of assets [5/7] : 3499259142", + "3 | Number of assets [4/7] : 1053989149", + "3 | Number of assets [5/7] : 1068103806", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2820294121", + "3 | Number of assets [7/7] : 3432835504", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 50283", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1267, + "index": 1272, "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "25122309000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001e6f5ea1d7feca1a9000000005e38cb6c694a2280000000008522d5cdd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251223090000000000000001ddf7fec98c76769a00000000ebd64ec61373b02100000000cb2fad6dd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation with count", "1 | Id : 2339", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 3388930013", + "3 | Number of assets [2/7] : 2591454860", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 3327055595", + "3 | Number of assets [5/7] : 565211923", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285" + "3 | Number of assets [7/7] : 1840066507", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation with count", "1 | Id : 2339", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 3388930013", + "3 | Number of assets [2/7] : 2591454860", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 3327055595", + "3 | Number of assets [5/7] : 565211923", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285", + "3 | Number of assets [7/7] : 1840066507", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1268, + "index": 1273, "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "25126400000000000000085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001c6980d3107b083ee000000000531f6df95dc37a000000000afec353fd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2512640000000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e201000000000001d30613863abceeff0000000052b4e91a63ab767e0000000007e87f80d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation with count", "1 | Id : 100", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 822974662", - "3 | Number of assets [2/7] : 4001607687", + "3 | Number of assets [1/7] : 2249393875", + "3 | Number of assets [2/7] : 4293835834", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3757453573", - "3 | Number of assets [5/7] : 2688015509", + "3 | Number of assets [4/7] : 451523666", + "3 | Number of assets [5/7] : 2121706339", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1060498607", - "4 | Tip : POLYX 5552342.355555" + "3 | Number of assets [7/7] : 2155866119", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation with count", "1 | Id : 100", - "2 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "2 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "2 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 822974662", - "3 | Number of assets [2/7] : 4001607687", + "3 | Number of assets [1/7] : 2249393875", + "3 | Number of assets [2/7] : 4293835834", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3757453573", - "3 | Number of assets [5/7] : 2688015509", + "3 | Number of assets [4/7] : 451523666", + "3 | Number of assets [5/7] : 2121706339", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1060498607", + "3 | Number of assets [7/7] : 2155866119", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1269, + "index": 1274, "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "25126bc40000000000000001e6f5ea1d7feca1a9000000005e38cb6c694a2280000000008522d5cdd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25120000000000000000000127137e5fb4605ecd00000000fb3cd15e5406a94700000000758ec9fcd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 50283", + "1 | Id : 0", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "3 | Number of assets [1/7] : 1602097959", + "3 | Number of assets [2/7] : 3445514420", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 1590770939", + "3 | Number of assets [5/7] : 1202259540", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Number of assets [7/7] : 4241067637", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 50283", + "1 | Id : 0", "2 | Portfolios : ", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "3 | Number of assets [1/7] : 1602097959", + "3 | Number of assets [2/7] : 3445514420", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 1590770939", + "3 | Number of assets [5/7] : 1202259540", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285", + "3 | Number of assets [7/7] : 4241067637", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1270, + "index": 1275, "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251201000000000000000001e6f5ea1d7feca1a9000000005e38cb6c694a2280000000008522d5cdd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2512230900000000000008368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e2010000000000018fafd8ff1c0baa1b0000000029ba2d8f5570c08d00000000dd0fb1d1d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 4292390799", + "3 | Number of assets [2/7] : 464128796", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 2402138665", + "3 | Number of assets [5/7] : 2378199125", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Number of assets [7/7] : 3518042077", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 501937638", - "3 | Number of assets [2/7] : 2845961343", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "2 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "2 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 4292390799", + "3 | Number of assets [2/7] : 464128796", "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1825257566", - "3 | Number of assets [5/7] : 2149730921", + "3 | Number of assets [4/7] : 2402138665", + "3 | Number of assets [5/7] : 2378199125", "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3453297285", + "3 | Number of assets [7/7] : 3518042077", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1271, + "index": 1276, "name": "Settlement_Add_instruction_with_mediators", - "blob": "251301d00700000000000002540c5fcd0100080000000000000180000000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a0c44db100f61fd597f357ab3ee6a67922daaabde0f6fd7eae710150e08c896ba5866b8e771a566d40b176fdb52cbb34f3c6cf9c58d86731022c6ee2489611dfc9efe15209cde91ef2a8924f18f32bd7a6e5c0277d97b3e7946997b3174f2f2cdaed5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251301d007000000000000000100080000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c80c036ebfac1a302fdc262ab2679abd2cd82fae729eea5294bb52380aa505c543f26a2499f73106cc059cf59a0f60fe7ea534dd33676ce2e1eac999de3642ab9a5cb4e947cd336ec43b4ffa18816d617f6048648cf3f1b19caf09ee49d9383ceb82d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/6] : 44db100f61fd597f357ab3ee6a67922daaabde", - "7 | Mediators [2/6] : 0f6fd7eae710150e08c896ba58", - "7 | Mediators [3/6] : 66b8e771a566d40b176fdb52cbb34f3c6cf9c5", - "7 | Mediators [4/6] : 8d86731022c6ee2489611dfc9e", - "7 | Mediators [5/6] : fe15209cde91ef2a8924f18f32bd7a6e5c0277", - "7 | Mediators [6/6] : d97b3e7946997b3174f2f2cdae", - "8 | Tip : POLYX 1234.56789" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/6] : 44db100f61fd597f357ab3ee6a67922daaabde", - "7 | Mediators [2/6] : 0f6fd7eae710150e08c896ba58", - "7 | Mediators [3/6] : 66b8e771a566d40b176fdb52cbb34f3c6cf9c5", - "7 | Mediators [4/6] : 8d86731022c6ee2489611dfc9e", - "7 | Mediators [5/6] : fe15209cde91ef2a8924f18f32bd7a6e5c0277", - "7 | Mediators [6/6] : d97b3e7946997b3174f2f2cdae", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", + "9 | Nonce : 100", + "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1272, + "index": 1277, "name": "Settlement_Add_instruction_with_mediators", - "blob": "251301d00700000000000001991f15e40180000000000000000180000000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251301d007000000000000013b3ffa7e0180000000000000000100080000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c80c036ebfac1a302fdc262ab2679abd2cd82fae729eea5294bb52380aa505c543f26a2499f73106cc059cf59a0f60fe7ea534dd33676ce2e1eac999de3642ab9a5cb4e947cd336ec43b4ffa18816d617f6048648cf3f1b19caf09ee49d9383ceb82d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 2130329403", "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "7 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "7 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "7 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82" ], "output_expert": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : 2130329403", "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "7 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "7 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "7 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", "8 | Chain : Polymesh", - "9 | Nonce : 50283", + "9 | Nonce : 100", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1273, + "index": 1278, "name": "Settlement_Add_instruction_with_mediators", - "blob": "251301d00700000000000002540c5fcd0100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a04a0f1419a7bf140e21beea9facc4923546ee4ee94eaa82bf8aae8f1830c5a4d28d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251301d007000000000000000180000000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c80c036ebfac1a302fdc262ab2679abd2cd82fae729eea5294bb52380aa505c543f26a2499f73106cc059cf59a0f60fe7ea534dd33676ce2e1eac999de3642ab9a5cb4e947cd336ec43b4ffa18816d617f6048648cf3f1b19caf09ee49d9383ceb82d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 256", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/2] : a0f1419a7bf140e21beea9facc4923546ee4ee", - "7 | Mediators [2/2] : 94eaa82bf8aae8f1830c5a4d28", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 256", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/2] : a0f1419a7bf140e21beea9facc4923546ee4ee", - "7 | Mediators [2/2] : 94eaa82bf8aae8f1830c5a4d28", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "7 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "7 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "7 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "7 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "7 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", + "9 | Nonce : 2339", + "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1274, + "index": 1279, "name": "Settlement_Add_instruction_with_mediators", - "blob": "251301d00700000000000001991f15e40180000000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251301d007000000000000000180000000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c810805ea23e5f11c4bc6857d145f05e2ef4559cf207d36f6eea728b9410f9243084a92f229777b4a7dd626c396bac97b4822e79528a9abdec845b8f02e3fdb6fb66c9a68793beee1e5fbc2439bb1e700c970011b3d52d12db0f2e5df0982a242532ef5018512d43c2a44920869e3cc62d64353109cfb7edf6321a79793a4c013bf9d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "7 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "7 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "7 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", - "8 | Tip : POLYX 0.000987" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/8] : 805ea23e5f11c4bc6857d145f05e2ef4559cf2", + "7 | Mediators [2/8] : 07d36f6eea728b9410f9243084", + "7 | Mediators [3/8] : a92f229777b4a7dd626c396bac97b4822e7952", + "7 | Mediators [4/8] : 8a9abdec845b8f02e3fdb6fb66", + "7 | Mediators [5/8] : c9a68793beee1e5fbc2439bb1e700c970011b3", + "7 | Mediators [6/8] : d52d12db0f2e5df0982a242532", + "7 | Mediators [7/8] : ef5018512d43c2a44920869e3cc62d64353109", + "7 | Mediators [8/8] : cfb7edf6321a79793a4c013bf9", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "4 | Value date : 256", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "7 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "7 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "7 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/8] : 805ea23e5f11c4bc6857d145f05e2ef4559cf2", + "7 | Mediators [2/8] : 07d36f6eea728b9410f9243084", + "7 | Mediators [3/8] : a92f229777b4a7dd626c396bac97b4822e7952", + "7 | Mediators [4/8] : 8a9abdec845b8f02e3fdb6fb66", + "7 | Mediators [5/8] : c9a68793beee1e5fbc2439bb1e700c970011b3", + "7 | Mediators [6/8] : d52d12db0f2e5df0982a242532", + "7 | Mediators [7/8] : ef5018512d43c2a44920869e3cc62d64353109", + "7 | Mediators [8/8] : cfb7edf6321a79793a4c013bf9", "8 | Chain : Polymesh", "9 | Nonce : 1", - "10 | Tip : POLYX 0.000987", + "10 | Tip : POLYX 1234.56789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1275, + "index": 1280, "name": "Settlement_Add_instruction_with_mediators", - "blob": "251301d00700000000000002540c5fcd0180000000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f01ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a100d99ef4474fd487d84c6ad26ec0a368b3c2b7e47d72bf1d1e90daff4852b73308e3c4c8a480f75e7e71c12de25b8809249ba577e1f7586644b44ba802f72d7aca53620787f7e6f1eb4f3abb06ac0acfdd6d034a20605fc929cbb056de240aecdd931c4abec3fca6094111e0aaa47a2ccc7cc327a95e9fb94c1c2366ba86fbcd7d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251301d00700000000000002b240c73f0180000000000000000100010000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c5840191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c808c6313ad29a45e858c790657c317c3206094eed5f4ef3d99652e4a990adc38a40caafafe120c6e4c0f4982a172c0877f9a14b0550a5ec4505315ebf7108bdf009d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 1070022834", "3 | Trade date : 128", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/8] : 0d99ef4474fd487d84c6ad26ec0a368b3c2b7e", - "7 | Mediators [2/8] : 47d72bf1d1e90daff4852b7330", - "7 | Mediators [3/8] : 8e3c4c8a480f75e7e71c12de25b8809249ba57", - "7 | Mediators [4/8] : 7e1f7586644b44ba802f72d7ac", - "7 | Mediators [5/8] : a53620787f7e6f1eb4f3abb06ac0acfdd6d034", - "7 | Mediators [6/8] : a20605fc929cbb056de240aecd", - "7 | Mediators [7/8] : d931c4abec3fca6094111e0aaa47a2ccc7cc32", - "7 | Mediators [8/8] : 7a95e9fb94c1c2366ba86fbcd7", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/4] : c6313ad29a45e858c790657c317c3206094eed", + "7 | Mediators [2/4] : 5f4ef3d99652e4a990adc38a40", + "7 | Mediators [3/4] : caafafe120c6e4c0f4982a172c0877f9a14b05", + "7 | Mediators [4/4] : 50a5ec4505315ebf7108bdf009", "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Add instruction with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", + "2 | Settlement type : 1070022834", "3 | Trade date : 128", "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "6 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "7 | Mediators [1/8] : 0d99ef4474fd487d84c6ad26ec0a368b3c2b7e", - "7 | Mediators [2/8] : 47d72bf1d1e90daff4852b7330", - "7 | Mediators [3/8] : 8e3c4c8a480f75e7e71c12de25b8809249ba57", - "7 | Mediators [4/8] : 7e1f7586644b44ba802f72d7ac", - "7 | Mediators [5/8] : a53620787f7e6f1eb4f3abb06ac0acfdd6d034", - "7 | Mediators [6/8] : a20605fc929cbb056de240aecd", - "7 | Mediators [7/8] : d931c4abec3fca6094111e0aaa47a2ccc7cc32", - "7 | Mediators [8/8] : 7a95e9fb94c1c2366ba86fbcd7", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "6 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "7 | Mediators [1/4] : c6313ad29a45e858c790657c317c3206094eed", + "7 | Mediators [2/4] : 5f4ef3d99652e4a990adc38a40", + "7 | Mediators [3/4] : caafafe120c6e4c0f4982a172c0877f9a14b05", + "7 | Mediators [4/4] : 50a5ec4505315ebf7108bdf009", "8 | Chain : Polymesh", - "9 | Nonce : 100", + "9 | Nonce : 1", "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1276, + "index": 1281, "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251401d00700000000000002540c5fcd0100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f0001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251401d007000000000000000100080000000000000100080000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c584000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c808c6313ad29a45e858c790657c317c3206094eed5f4ef3d99652e4a990adc38a40caafafe120c6e4c0f4982a172c0877f9a14b0550a5ec4505315ebf7108bdf009d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", - "9 | Tip : POLYX 1234.56789" + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : c6313ad29a45e858c790657c317c3206094eed", + "8 | Mediators [2/4] : 5f4ef3d99652e4a990adc38a40", + "8 | Mediators [3/4] : caafafe120c6e4c0f4982a172c0877f9a14b05", + "8 | Mediators [4/4] : 50a5ec4505315ebf7108bdf009", + "9 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3445558356", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : c6313ad29a45e858c790657c317c3206094eed", + "8 | Mediators [2/4] : 5f4ef3d99652e4a990adc38a40", + "8 | Mediators [3/4] : caafafe120c6e4c0f4982a172c0877f9a14b05", + "8 | Mediators [4/4] : 50a5ec4505315ebf7108bdf009", "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Tip : POLYX 1234.56789", + "10 | Nonce : 100", + "11 | Tip : POLYX 0.000987", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1277, + "index": 1282, "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251401d00700000000000001991f15e40100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a0c44db100f61fd597f357ab3ee6a67922daaabde0f6fd7eae710150e08c896ba5866b8e771a566d40b176fdb52cbb34f3c6cf9c58d86731022c6ee2489611dfc9efe15209cde91ef2a8924f18f32bd7a6e5c0277d97b3e7946997b3174f2f2cdaed5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251401d00700000000000002b240c73f0100080000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c58408368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e20100000000000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8088f4cb1a759c629f13be72cfc1af1cd4b4d62a2b9b3a459c8f44fd4fcd2c901c0ad710dad8818e94ae11a4d03f5fda26940b7bb90b3dfb1b23b5c6b722dc59835d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : 1070022834", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/6] : 44db100f61fd597f357ab3ee6a67922daaabde", - "8 | Mediators [2/6] : 0f6fd7eae710150e08c896ba58", - "8 | Mediators [3/6] : 66b8e771a566d40b176fdb52cbb34f3c6cf9c5", - "8 | Mediators [4/6] : 8d86731022c6ee2489611dfc9e", - "8 | Mediators [5/6] : fe15209cde91ef2a8924f18f32bd7a6e5c0277", - "8 | Mediators [6/6] : d97b3e7946997b3174f2f2cdae", - "9 | Tip : POLYX 5552342.355555" + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : 8f4cb1a759c629f13be72cfc1af1cd4b4d62a2", + "8 | Mediators [2/4] : b9b3a459c8f44fd4fcd2c901c0", + "8 | Mediators [3/4] : ad710dad8818e94ae11a4d03f5fda26940b7bb", + "8 | Mediators [4/4] : 90b3dfb1b23b5c6b722dc59835", + "9 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : 1070022834", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/6] : 44db100f61fd597f357ab3ee6a67922daaabde", - "8 | Mediators [2/6] : 0f6fd7eae710150e08c896ba58", - "8 | Mediators [3/6] : 66b8e771a566d40b176fdb52cbb34f3c6cf9c5", - "8 | Mediators [4/6] : 8d86731022c6ee2489611dfc9e", - "8 | Mediators [5/6] : fe15209cde91ef2a8924f18f32bd7a6e5c0277", - "8 | Mediators [6/6] : d97b3e7946997b3174f2f2cdae", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : 8f4cb1a759c629f13be72cfc1af1cd4b4d62a2", + "8 | Mediators [2/4] : b9b3a459c8f44fd4fcd2c901c0", + "8 | Mediators [3/4] : ad710dad8818e94ae11a4d03f5fda26940b7bb", + "8 | Mediators [4/4] : 90b3dfb1b23b5c6b722dc59835", "9 | Chain : Polymesh", "10 | Nonce : 2339", - "11 | Tip : POLYX 5552342.355555", + "11 | Tip : POLYX 0.000987", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1278, + "index": 1283, "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251401d00700000000000001991f15e40100010000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251401d007000000000000000100080000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c584000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c80c036ebfac1a302fdc262ab2679abd2cd82fae729eea5294bb52380aa505c543f26a2499f73106cc059cf59a0f60fe7ea534dd33676ce2e1eac999de3642ab9a5cb4e947cd336ec43b4ffa18816d617f6048648cf3f1b19caf09ee49d9383ceb82d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "8 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "8 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "8 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "8 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "8 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82" ], "output_expert": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "8 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "8 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "8 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "8 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "8 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", "9 | Chain : Polymesh", - "10 | Nonce : 1", + "10 | Nonce : 2339", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1279, + "index": 1284, "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251401d007000000000000000100010000000000000100080000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f085a7a596f9336e0f18ab194a8ed18ea8de3c107c81aba58573cb05df812cc171d0140e20100000000007debe2ba037ccc3cf864fc2f1f98e58f4a131e9cf7a3c496c915c546370f26a20140e201000000000001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251401d007000000000000013b3ffa7e0180000000000000000100080000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c584000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c80c036ebfac1a302fdc262ab2679abd2cd82fae729eea5294bb52380aa505c543f26a2499f73106cc059cf59a0f60fe7ea534dd33676ce2e1eac999de3642ab9a5cb4e947cd336ec43b4ffa18816d617f6048648cf3f1b19caf09ee49d9383ceb82d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", + "2 | Settlement type : 2130329403", + "3 | Trade date : 128", "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "8 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "8 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "8 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "8 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "8 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", + "9 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", + "2 | Settlement type : 2130329403", + "3 | Trade date : 128", "4 | Value date : 2048", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios [1/6] : 5a7a596f9336e0f18ab194a8ed18ea8de3c107", - "6 | Portfolios [2/6] : c81aba58573cb05df812cc171d", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 7debe2ba037ccc3cf864fc2f1f98e58f4a131e", - "6 | Portfolios [5/6] : 9cf7a3c496c915c546370f26a2", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/6] : 036ebfac1a302fdc262ab2679abd2cd82fae72", + "8 | Mediators [2/6] : 9eea5294bb52380aa505c543f2", + "8 | Mediators [3/6] : 6a2499f73106cc059cf59a0f60fe7ea534dd33", + "8 | Mediators [4/6] : 676ce2e1eac999de3642ab9a5c", + "8 | Mediators [5/6] : b4e947cd336ec43b4ffa18816d617f6048648c", + "8 | Mediators [6/6] : f3f1b19caf09ee49d9383ceb82", "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Nonce : 2339", + "11 | Tip : POLYX 1234.56789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1280, + "index": 1285, "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251401d00700000000000001991f15e40100010000000000000100010000000000000800396669b71655b881e2c20bcd9e0b235eb132de7e7fd596535cd8e4f9ac2bd2dc01e2ebbf223e80f2cef6442cd60682ea4c5339b87c89126af47952733a35e3a4eef11a1c35d9e378ee015547bfdd03be8909417373657449442d3132333435363738ea61c5db06132c41a115a70fe29f3ad50220d8aba0001fa9e396aa31d506bd60ee716f0967b56abf371f8402c8cc3ec960b4b301783ab82adfa60b13adec8b208c614e1fc797ff200745ab782dc754cebc5449434b45522d333435363737ceed919e72fdbcdd4571429347a33f0001ff0ba1fe21f55428983a91e136f38de25df000c170e5d6041c507c4d13701f2a08fb321c25ea75a81494c9f7f36428eadd5f79363faa564fbb2ea56c23391bcaacfd2e264b3480764c0f40a15815fa812b0197928d8aef916bb9765d89a04dc426d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "251401d007000000000000000100080000000000000180000000000000000800c5d28cb3fad8ce6a2845cf74d3289a21ef22036ebd10709c3d0a911670cc79410193ff72839198427f64c7b5803ae577317543ad3939350f176d53da5e3a0e3ba0be4522f0cc5a2a13019d513bdb69c83eca417373657449442d3132333435363738bcfa5c6a71f8c843c1f607db9249f9e202c8950d8b09b9a54b9b7f927c8751a8860ad2f17c6d013574956211ebc54593101bcd57318bccd83bf4828ee75bbea5b652af5c676f2b2e783c66df540e8fb94b5449434b45522d33343536376631c0a78164c3a7b008769543e5c58408368439b5dfeee51018462e35d4af69be3bb73f316bdef6771eb3b4a762724e190140e2010000000000098c18d25db4575dd9b4333f8940d1955713767e5e0a58b4e0e4dea23f42162e0140e20100000000000191a3de98a7c68baab3eb3796fac2f93e9587d79339d9a7b860985bfd6f6a70c8088f4cb1a759c629f13be72cfc1af1cd4b4d62a2b9b3a459c8f44fd4fcd2c901c0ad710dad8818e94ae11a4d03f5fda26940b7bb90b3dfb1b23b5c6b722dc59835d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", - "9 | Tip : POLYX 1234.56789" + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : 8f4cb1a759c629f13be72cfc1af1cd4b4d62a2", + "8 | Mediators [2/4] : b9b3a459c8f44fd4fcd2c901c0", + "8 | Mediators [3/4] : ad710dad8818e94ae11a4d03f5fda26940b7bb", + "8 | Mediators [4/4] : 90b3dfb1b23b5c6b722dc59835", + "9 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Add and affirm with mediators", "1 | Venue id : 2000", - "2 | Settlement type : 3826589593", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/16] : 396669b71655b881e2c20bcd9e0b235eb132de", - "5 | Legs [2/16] : 7e7fd596535cd8e4f9ac2bd2dc", - "5 | Legs [3/16] : 14912122320536464354", - "5 | Legs [4/16] : f6442cd60682ea4c5339b87c89126af4795273", - "5 | Legs [5/16] : 3a35e3a4eef11a1c35d9e378ee", - "5 | Legs [6/16] : 687289341965190997", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 128", + "5 | Legs [1/16] : c5d28cb3fad8ce6a2845cf74d3289a21ef2203", + "5 | Legs [2/16] : 6ebd10709c3d0a911670cc7941", + "5 | Legs [3/16] : 9170059542022782867", + "5 | Legs [4/16] : 64c7b5803ae577317543ad3939350f176d53da", + "5 | Legs [5/16] : 5e3a0e3ba0be4522f0cc5a2a13", + "5 | Legs [6/16] : 14573305801192722845", "5 | Legs [7/16] : AssetID-12345678", - "5 | Legs [8/16] : 283429959133518077673817281045148.8199", - "5 | Legs [9/16] : 46", - "5 | Legs [10/16] : 20d8aba0001fa9e396aa31d506bd60ee716f09", - "5 | Legs [11/16] : 67b56abf371f8402c8cc3ec960", - "5 | Legs [12/16] : b4b301783ab82adfa60b13adec8b208c614e1f", - "5 | Legs [13/16] : c797ff200745ab782dc754cebc", + "5 | Legs [8/16] : 301699901216165797909171417591593.1061", + "5 | Legs [9/16] : 08", + "5 | Legs [10/16] : c8950d8b09b9a54b9b7f927c8751a8860ad2f1", + "5 | Legs [11/16] : 7c6d013574956211ebc5459310", + "5 | Legs [12/16] : 1bcd57318bccd83bf4828ee75bbea5b652af5c", + "5 | Legs [13/16] : 676f2b2e783c66df540e8fb94b", "5 | Legs [14/16] : TICKER-34567", - "5 | Legs [15/16] : 84589159840575574961309195006651.51851", - "5 | Legs [16/16] : 9", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xff0ba1fe21f55428983a91e136f38de25df0", - "7 | Instruction memo [2/2] : 00c170e5d6041c507c4d13701f2a", - "8 | Mediators [1/4] : fb321c25ea75a81494c9f7f36428eadd5f7936", - "8 | Mediators [2/4] : 3faa564fbb2ea56c23391bcaac", - "8 | Mediators [3/4] : fd2e264b3480764c0f40a15815fa812b019792", - "8 | Mediators [4/4] : 8d8aef916bb9765d89a04dc426", + "5 | Legs [15/16] : 176485627951082341702103120167322.0058", + "5 | Legs [16/16] : 62", + "6 | Portfolios [1/6] : 368439b5dfeee51018462e35d4af69be3bb73f", + "6 | Portfolios [2/6] : 316bdef6771eb3b4a762724e19", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 098c18d25db4575dd9b4333f8940d195571376", + "6 | Portfolios [5/6] : 7e5e0a58b4e0e4dea23f42162e", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x91a3de98a7c68baab3eb3796fac2f93e9587", + "7 | Instruction memo [2/2] : d79339d9a7b860985bfd6f6a70c8", + "8 | Mediators [1/4] : 8f4cb1a759c629f13be72cfc1af1cd4b4d62a2", + "8 | Mediators [2/4] : b9b3a459c8f44fd4fcd2c901c0", + "8 | Mediators [3/4] : ad710dad8818e94ae11a4d03f5fda26940b7bb", + "8 | Mediators [4/4] : 90b3dfb1b23b5c6b722dc59835", "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Tip : POLYX 1234.56789", + "10 | Nonce : 100", + "11 | Tip : POLYX 0.000987", "12 | Era Phase : 61", "13 | Era Period : 64", - "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "14 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "14 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1281, + "index": 1286, "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25156bc4000000000000010001000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25156bc4000000000000010001000000000000d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction as mediator", "1 | Instruction id : 50283", "2 | Expiry : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Affirm instruction as mediator", @@ -34831,131 +35059,128 @@ "2 | Expiry : 256", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1282, + "index": 1287, "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150100000000000000010008000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25156400000000000000018000000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048", - "3 | Tip : POLYX 1234.56789" + "1 | Instruction id : 100", + "2 | Expiry : 128" ], "output_expert": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048", + "1 | Instruction id : 100", + "2 | Expiry : 128", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1283, + "index": 1288, "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25152309000000000000010001000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25156400000000000000010008000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 256", + "1 | Instruction id : 100", + "2 | Expiry : 2048", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 256", + "1 | Instruction id : 100", + "2 | Expiry : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1284, + "index": 1289, "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150100000000000000010008000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25150000000000000000018000000000000000d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048", - "3 | Tip : POLYX 5552342.355555" + "1 | Instruction id : 0", + "2 | Expiry : 128" ], "output_expert": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048", + "1 | Instruction id : 0", + "2 | Expiry : 128", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1285, + "index": 1290, "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150000000000000000018000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25150100000000000000018000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 0", + "1 | Instruction id : 1", "2 | Expiry : 128", - "3 | Tip : POLYX 0.000987" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 0", + "1 | Instruction id : 1", "2 | Expiry : 128", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1286, + "index": 1291, "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160000000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25160100000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0", - "2 | Tip : POLYX 0.000987" + "1 | Instruction id : 1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0", + "1 | Instruction id : 1", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1287, + "index": 1292, "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166400000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25166400000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation as mediator", "1 | Instruction id : 100", @@ -34965,220 +35190,216 @@ "0 | Settlement : Withdraw affirmation as mediator", "1 | Instruction id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1288, + "index": 1293, "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160100000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25162309000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1" + "1 | Instruction id : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", + "1 | Instruction id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1289, + "index": 1294, "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166400000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25162309000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Instruction id : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100", + "1 | Instruction id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1290, + "index": 1295, "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25162309000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25162309000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Withdraw affirmation as mediator", "1 | Instruction id : 2339", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Withdraw affirmation as mediator", "1 | Instruction id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1291, + "index": 1296, "name": "Settlement_Reject_instruction_as_mediator", - "blob": "25176bc400000000000001a9015871eabeaca900000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2517010000000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets [1/3] : 1901593001", - "2 | Number of assets [2/3] : 2846670570", - "2 | Number of assets [3/3] : 0" + "1 | Instruction id : 1", + "2 | Number of assets : None", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets [1/3] : 1901593001", - "2 | Number of assets [2/3] : 2846670570", - "2 | Number of assets [3/3] : 0", + "1 | Instruction id : 1", + "2 | Number of assets : None", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1292, + "index": 1297, "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517010000000000000001cbe65321edf70cea00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25176bc4000000000000018672d0ea8aaeef9d00000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets [1/3] : 559146699", - "2 | Number of assets [2/3] : 3926718445", + "1 | Instruction id : 50283", + "2 | Number of assets [1/3] : 3939529350", + "2 | Number of assets [2/3] : 2649730698", "2 | Number of assets [3/3] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets [1/3] : 559146699", - "2 | Number of assets [2/3] : 3926718445", + "1 | Instruction id : 50283", + "2 | Number of assets [1/3] : 3939529350", + "2 | Number of assets [2/3] : 2649730698", "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1293, + "index": 1298, "name": "Settlement_Reject_instruction_as_mediator", - "blob": "25176bc400000000000001a9015871eabeaca900000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25170000000000000000010198e37abbd4e62c00000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets [1/3] : 1901593001", - "2 | Number of assets [2/3] : 2846670570", + "1 | Instruction id : 0", + "2 | Number of assets [1/3] : 2061735937", + "2 | Number of assets [2/3] : 753325243", "2 | Number of assets [3/3] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets [1/3] : 1901593001", - "2 | Number of assets [2/3] : 2846670570", + "1 | Instruction id : 0", + "2 | Number of assets [1/3] : 2061735937", + "2 | Number of assets [2/3] : 753325243", "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1294, + "index": 1299, "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517000000000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2517010000000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets : None", - "3 | Tip : POLYX 5552342.355555" + "1 | Instruction id : 1", + "2 | Number of assets : None" ], "output_expert": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", + "1 | Instruction id : 1", "2 | Number of assets : None", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1295, + "index": 1300, "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517000000000000000001cbe65321edf70cea00000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "25170100000000000000010198e37abbd4e62c00000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 559146699", - "2 | Number of assets [2/3] : 3926718445", - "2 | Number of assets [3/3] : 0" + "1 | Instruction id : 1", + "2 | Number of assets [1/3] : 2061735937", + "2 | Number of assets [2/3] : 753325243", + "2 | Number of assets [3/3] : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 559146699", - "2 | Number of assets [2/3] : 3926718445", + "1 | Instruction id : 1", + "2 | Number of assets [1/3] : 2061735937", + "2 | Number of assets [2/3] : 753325243", "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1296, + "index": 1301, "name": "Sto_Create_fundraiser", - "blob": "2700d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006400000000000000018000000000000000010008000000000000da503ae7bd3fde2410ad205fa90399cd3c46756e645261697365725f4e616d65d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2700c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006400000000000000018000000000000000018000000000000000267c295e8b9feb3b22d5bb9a37a30e393c46756e645261697365725f4e616d65d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", @@ -35187,20 +35408,19 @@ "5 | Tiers [4/4] : POLYX 0.001", "6 | Venue id : 100", "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 5552342.355555" + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", + "10 | Fundraiser name : FundRaiser_Name" ], "output_expert": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", @@ -35209,198 +35429,197 @@ "5 | Tiers [4/4] : POLYX 0.001", "6 | Venue id : 100", "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", "11 | Chain : Polymesh", - "12 | Nonce : 1", - "13 | Tip : POLYX 5552342.355555", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Nonce : 50283", + "13 | Era Phase : 61", + "14 | Era Period : 64", + "15 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "15 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1297, + "index": 1302, "name": "Sto_Create_fundraiser", - "blob": "2700d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc4000000000000010001000000000000010008000000000000da503ae7bd3fde2410ad205fa90399cd3c46756e645261697365725f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2700c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000100000000000000018000000000000000018000000000000000267c295e8b9feb3b22d5bb9a37a30e393c46756e645261697365725f4e616d65d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 256", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "6 | Venue id : 1", + "7 | Start : 128", + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789" + "11 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 256", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "6 | Venue id : 1", + "7 | Start : 128", + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", "11 | Chain : Polymesh", - "12 | Nonce : 100", - "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "13 | Tip [2/2] : 3.456789", + "12 | Nonce : 0", + "13 | Tip : POLYX 1234.56789", "14 | Era Phase : 61", "15 | Era Period : 64", - "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "16 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "16 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1298, + "index": 1303, "name": "Sto_Create_fundraiser", - "blob": "2700d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000000000000000000010008000000000000010008000000000000da503ae7bd3fde2410ad205fa90399cd3c46756e645261697365725f4e616d65d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2700c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000100000000000000010001000000000000010001000000000000267c295e8b9feb3b22d5bb9a37a30e393c46756e645261697365725f4e616d65d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 2048", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "6 | Venue id : 1", + "7 | Start : 256", + "8 | End : 256", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 0.000987" + "11 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 2048", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "6 | Venue id : 1", + "7 | Start : 256", + "8 | End : 256", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", "11 | Chain : Polymesh", - "12 | Nonce : 0", - "13 | Tip : POLYX 0.000987", + "12 | Nonce : 2339", + "13 | Tip : POLYX 1234.56789", "14 | Era Phase : 61", "15 | Era Period : 64", - "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "16 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "16 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1299, + "index": 1304, "name": "Sto_Create_fundraiser", - "blob": "2700d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc4000000000000010001000000000000010001000000000000da503ae7bd3fde2410ad205fa90399cd3c46756e645261697365725f4e616d65d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2700c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000000000000000000010001000000000000018000000000000000267c295e8b9feb3b22d5bb9a37a30e393c46756e645261697365725f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", + "6 | Venue id : 0", "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 0.000987" + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", "5 | Tiers [2/4] : POLYX 0.001", "5 | Tiers [3/4] : POLYX 123.544848", "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", + "6 | Venue id : 0", "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "8 | End : 128", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Tip : POLYX 0.000987", + "12 | Nonce : 100", + "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "13 | Tip [2/2] : 3.456789", "14 | Era Phase : 61", "15 | Era Period : 64", - "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "16 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "16 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1300, + "index": 1305, "name": "Sto_Create_fundraiser", - "blob": "2700d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d3132333435363738d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000000000000000000010001000000000000018000000000000000da503ae7bd3fde2410ad205fa90399cd3c46756e645261697365725f4e616d65d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2700c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d3132333435363738c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000000000000000000010001000000000000018000000000000000267c295e8b9feb3b22d5bb9a37a30e393c46756e645261697365725f4e616d65d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", @@ -35410,18 +35629,19 @@ "6 | Venue id : 0", "7 | Start : 256", "8 | End : 128", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", - "10 | Fundraiser name : FundRaiser_Name" + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Offering portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Offering portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Offering portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Offering portfolio [3/3] : 123456", "2 | Offering asset : AssetID-12345678", - "3 | Raising portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "3 | Raising portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "3 | Raising portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "3 | Raising portfolio [2/3] : 82e9460bc258f6e8121af313b8", "3 | Raising portfolio [3/3] : 123456", "4 | Raising asset : AssetID-12345678", "5 | Tiers [1/4] : POLYX 123.544848", @@ -35431,344 +35651,329 @@ "6 | Venue id : 0", "7 | Start : 256", "8 | End : 128", - "9 | Minimum investment [1/2] : 273286234821492437264591460651998.2696", - "9 | Minimum investment [2/2] : 58", + "9 | Minimum investment [1/2] : 75841998353961792985457046500001.02096", + "9 | Minimum investment [2/2] : 6", "10 | Fundraiser name : FundRaiser_Name", "11 | Chain : Polymesh", - "12 | Nonce : 0", - "13 | Era Phase : 61", - "14 | Era Period : 64", - "15 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "15 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Nonce : 100", + "13 | Tip : POLYX 0.000987", + "14 | Era Phase : 61", + "15 | Era Period : 64", + "16 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "16 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1301, + "index": 1306, "name": "Sto_Invest", - "blob": "2701d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637386400000000000000da503ae7bd3fde2410ad205fa90399cd01d20296490000000000000000000000000180d25fc3a55b33858c6540f94e0f08d3eda3d038e2e429dc340ba2aadff5f97c058c6a55aa6ed5c3863aca95f5d37c5fe5fa1e13d204ec6d002a7177b89f5fec3d44f038fa92d880c501c75c700d02c25e2f89db96746fb60a5338966217d9d8ac0ef81e2fd17b53064ce088239e8338fee7d79064d2e15f6e0169b81a8ac1b83fd8809b53ccb7e6686da6969796c694f8b122e776e0ef93aeb4d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2701c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637380100000000000000267c295e8b9feb3b22d5bb9a37a30e3901158139ae28a3dfaac5fe1560a5e9e05c00d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price : POLYX 1234.56789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", - "8 | Tip : POLYX 55.555555" + "4 | Id : 1", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", + "6 | Max price [2/2] : 3.456789", + "7 | Receipt : None", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price : POLYX 1234.56789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", + "4 | Id : 1", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", + "6 | Max price [2/2] : 3.456789", + "7 | Receipt : None", "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", + "9 | Nonce : 0", + "10 | Tip : POLYX 5552342.355555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1302, + "index": 1307, "name": "Sto_Invest", - "blob": "2701d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637382309000000000000da503ae7bd3fde2410ad205fa90399cd01158139ae28a3dfaac5fe1560a5e9e05c0180d25fc3a55b33858c6540f94e0f08d3eda3d038e2e429dc340ba2aadff5f97c058c6a55aa6ed5c3863aca95f5d37c5fe5fa1e13d204ec6d002a7177b89f5fec3d44f038fa92d880c501c75c700d02c25e2f89db96746fb60a5338966217d9d8ac0ef81e2fd17b53064ce088239e8338fee7d79064d2e15f6e0169b81a8ac1b83fd8809b53ccb7e6686da6969796c694f8b122e776e0ef93aeb4d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2701c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637386400000000000000267c295e8b9feb3b22d5bb9a37a30e3901d202964900000000000000000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4" + "4 | Id : 100", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt : None", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", + "4 | Id : 100", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt : None", "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 1", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1303, + "index": 1308, "name": "Sto_Invest", - "blob": "2701d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637386bc4000000000000da503ae7bd3fde2410ad205fa90399cd01158139ae28a3dfaac5fe1560a5e9e05c0180d25fc3a55b33858c6540f94e0f08d3eda3d038e2e429dc340ba2aadff5f97c058c6a55aa6ed5c3863aca95f5d37c5fe5fa1e13d204ec6d002a7177b89f5fec3d44f038fa92d880c501c75c700d02c25e2f89db96746fb60a5338966217d9d8ac0ef81e2fd17b53064ce088239e8338fee7d79064d2e15f6e0169b81a8ac1b83fd8809b53ccb7e6686da6969796c694f8b122e776e0ef93aeb4d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2701c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637382309000000000000267c295e8b9feb3b22d5bb9a37a30e390163ce64c10c0500000000000000000000012279a15f9eeb12df60bf8a216389191e436d33b1d9b3298db92d72794ffd94a5550ee2c5171d759b2a4a925d003f23f657830f802dc83d3501d92dd055e457b68d8fa37b063f2a966e65e9829d10356c9dfe3a9b297de0799f9e5a09af41dda0795623caf1b5710c4b077b28f7929ff347d362710912fbccb6017c2ebe2b8e05541dd0ab2d7303da1bf78ee43001faf78c79259b40b89d0586f3d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 50283", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price : POLYX 5552342.355555", + "7 | Receipt [1/11] : 16074169085480499490", + "7 | Receipt [2/11] : 2168915754413113184", + "7 | Receipt [3/11] : 10171858980955188547", + "7 | Receipt [4/11] : 5GFWDWRGXDwF5MXc4vNotM5t8vBTRUHkNkPumt", + "7 | Receipt [5/11] : iFCRMEEtr3", + "7 | Receipt [6/11] : d92dd055e457b68d8fa37b063f2a966e65e982", + "7 | Receipt [7/11] : 9d10356c9dfe3a9b297de0799f9e5a09af41dd", + "7 | Receipt [8/11] : a0795623caf1b5710c4b077b28f7929ff347d3", + "7 | Receipt [9/11] : 62710912fbccb6", + "7 | Receipt [10/11] : 7c2ebe2b8e05541dd0ab2d7303da1bf78ee430", + "7 | Receipt [11/11] : 01faf78c79259b40b89d0586f3", "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 50283", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price : POLYX 5552342.355555", + "7 | Receipt [1/11] : 16074169085480499490", + "7 | Receipt [2/11] : 2168915754413113184", + "7 | Receipt [3/11] : 10171858980955188547", + "7 | Receipt [4/11] : 5GFWDWRGXDwF5MXc4vNotM5t8vBTRUHkNkPumt", + "7 | Receipt [5/11] : iFCRMEEtr3", + "7 | Receipt [6/11] : d92dd055e457b68d8fa37b063f2a966e65e982", + "7 | Receipt [7/11] : 9d10356c9dfe3a9b297de0799f9e5a09af41dd", + "7 | Receipt [8/11] : a0795623caf1b5710c4b077b28f7929ff347d3", + "7 | Receipt [9/11] : 62710912fbccb6", + "7 | Receipt [10/11] : 7c2ebe2b8e05541dd0ab2d7303da1bf78ee430", + "7 | Receipt [11/11] : 01faf78c79259b40b89d0586f3", "8 | Chain : Polymesh", - "9 | Nonce : 2339", + "9 | Nonce : 0", "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1304, + "index": 1309, "name": "Sto_Invest", - "blob": "2701d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637386400000000000000da503ae7bd3fde2410ad205fa90399cd0163ce64c10c05000000000000000000000180d25fc3a55b33858c6540f94e0f08d3eda3d038e2e429dc340ba2aadff5f97c058c6a55aa6ed5c3863aca95f5d37c5fe5fa1e13d204ec6d002a7177b89f5fec3d44f038fa92d880c501c75c700d02c25e2f89db96746fb60a5338966217d9d8ac0ef81e2fd17b53064ce088239e8338fee7d79064d2e15f6e0169b81a8ac1b83fd8809b53ccb7e6686da6969796c694f8b122e776e0ef93aeb4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2701c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637382309000000000000267c295e8b9feb3b22d5bb9a37a30e3901158139ae28a3dfaac5fe1560a5e9e05c01a03b1ff6b61e3fb9c5295516041159ef633e587803d482e5e471df49e215257af252abb55baebd87c3a5594ca735b7708f9dce44319a31fd00027b8d8d5769199f827d3a88d0b5a5504d6de37b00cd5b8bf1a1fe074d4cc136fe8857ccd4199a5d505b6241937fdfc7355f705a6ba99e39e48dcd3364d8f889013197e17ac0aca43778090b372e69d86b319a0037a83f303dd2d2193d0373e6aad50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4" + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", + "6 | Max price [2/2] : 3.456789", + "7 | Receipt [1/11] : 13348421591711562656", + "7 | Receipt [2/11] : 17246834957244246469", + "7 | Receipt [3/11] : 16538013893026922083", + "7 | Receipt [4/11] : 5HEEbsLpkP9aLBhGYeX1XVZsCe5cBaptVXZUm8", + "7 | Receipt [5/11] : ZNWoJuDUes", + "7 | Receipt [6/11] : 027b8d8d5769199f827d3a88d0b5a5504d6de3", + "7 | Receipt [7/11] : 7b00cd5b8bf1a1fe074d4cc136fe8857ccd419", + "7 | Receipt [8/11] : 9a5d505b6241937fdfc7355f705a6ba99e39e4", + "7 | Receipt [9/11] : 8dcd3364d8f889", + "7 | Receipt [10/11] : 3197e17ac0aca43778090b372e69d86b319a00", + "7 | Receipt [11/11] : 37a83f303dd2d2193d0373e6aa", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt [1/11] : 9598115998362227328", - "7 | Receipt [2/11] : 15206420973680092556", - "7 | Receipt [3/11] : 15864462822656222189", - "7 | Receipt [4/11] : 5DEwoZaxyJVHYDx623jN5BiuJ18KHjgRpvPsux", - "7 | Receipt [5/11] : 4Y2ncXRV1e", - "7 | Receipt [6/11] : 2a7177b89f5fec3d44f038fa92d880c501c75c", - "7 | Receipt [7/11] : 700d02c25e2f89db96746fb60a5338966217d9", - "7 | Receipt [8/11] : d8ac0ef81e2fd17b53064ce088239e8338fee7", - "7 | Receipt [9/11] : d79064d2e15f6e", - "7 | Receipt [10/11] : 69b81a8ac1b83fd8809b53ccb7e6686da69697", - "7 | Receipt [11/11] : 96c694f8b122e776e0ef93aeb4", + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", + "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", + "6 | Max price [2/2] : 3.456789", + "7 | Receipt [1/11] : 13348421591711562656", + "7 | Receipt [2/11] : 17246834957244246469", + "7 | Receipt [3/11] : 16538013893026922083", + "7 | Receipt [4/11] : 5HEEbsLpkP9aLBhGYeX1XVZsCe5cBaptVXZUm8", + "7 | Receipt [5/11] : ZNWoJuDUes", + "7 | Receipt [6/11] : 027b8d8d5769199f827d3a88d0b5a5504d6de3", + "7 | Receipt [7/11] : 7b00cd5b8bf1a1fe074d4cc136fe8857ccd419", + "7 | Receipt [8/11] : 9a5d505b6241937fdfc7355f705a6ba99e39e4", + "7 | Receipt [9/11] : 8dcd3364d8f889", + "7 | Receipt [10/11] : 3197e17ac0aca43778090b372e69d86b319a00", + "7 | Receipt [11/11] : 37a83f303dd2d2193d0373e6aa", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 100", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1305, + "index": 1310, "name": "Sto_Invest", - "blob": "2701d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000417373657449442d31323334353637380000000000000000da503ae7bd3fde2410ad205fa90399cd01d202964900000000000000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2701c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000417373657449442d31323334353637386bc4000000000000267c295e8b9feb3b22d5bb9a37a30e3901d202964900000000000000000000000001a03b1ff6b61e3fb9c5295516041159ef633e587803d482e5e471df49e215257af252abb55baebd87c3a5594ca735b7708f9dce44319a31fd00027b8d8d5769199f827d3a88d0b5a5504d6de37b00cd5b8bf1a1fe074d4cc136fe8857ccd4199a5d505b6241937fdfc7355f705a6ba99e39e48dcd3364d8f889013197e17ac0aca43778090b372e69d86b319a0037a83f303dd2d2193d0373e6aad5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", + "4 | Id : 50283", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", "6 | Max price : POLYX 1234.56789", - "7 | Receipt : None", + "7 | Receipt [1/11] : 13348421591711562656", + "7 | Receipt [2/11] : 17246834957244246469", + "7 | Receipt [3/11] : 16538013893026922083", + "7 | Receipt [4/11] : 5HEEbsLpkP9aLBhGYeX1XVZsCe5cBaptVXZUm8", + "7 | Receipt [5/11] : ZNWoJuDUes", + "7 | Receipt [6/11] : 027b8d8d5769199f827d3a88d0b5a5504d6de3", + "7 | Receipt [7/11] : 7b00cd5b8bf1a1fe074d4cc136fe8857ccd419", + "7 | Receipt [8/11] : 9a5d505b6241937fdfc7355f705a6ba99e39e4", + "7 | Receipt [9/11] : 8dcd3364d8f889", + "7 | Receipt [10/11] : 3197e17ac0aca43778090b372e69d86b319a00", + "7 | Receipt [11/11] : 37a83f303dd2d2193d0373e6aa", "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "1 | Investment portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Investment portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "1 | Investment portfolio [2/3] : 82e9460bc258f6e8121af313b8", "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Funding portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "2 | Funding portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Funding portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Funding portfolio [3/3] : 123456", "3 | Offering asset : AssetID-12345678", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 273286234821492437264591460651998.2696", - "5 | Purchase amount [2/2] : 58", + "4 | Id : 50283", + "5 | Purchase amount [1/2] : 75841998353961792985457046500001.02096", + "5 | Purchase amount [2/2] : 6", "6 | Max price : POLYX 1234.56789", - "7 | Receipt : None", + "7 | Receipt [1/11] : 13348421591711562656", + "7 | Receipt [2/11] : 17246834957244246469", + "7 | Receipt [3/11] : 16538013893026922083", + "7 | Receipt [4/11] : 5HEEbsLpkP9aLBhGYeX1XVZsCe5cBaptVXZUm8", + "7 | Receipt [5/11] : ZNWoJuDUes", + "7 | Receipt [6/11] : 027b8d8d5769199f827d3a88d0b5a5504d6de3", + "7 | Receipt [7/11] : 7b00cd5b8bf1a1fe074d4cc136fe8857ccd419", + "7 | Receipt [8/11] : 9a5d505b6241937fdfc7355f705a6ba99e39e4", + "7 | Receipt [9/11] : 8dcd3364d8f889", + "7 | Receipt [10/11] : 3197e17ac0aca43778090b372e69d86b319a00", + "7 | Receipt [11/11] : 37a83f303dd2d2193d0373e6aa", "8 | Chain : Polymesh", - "9 | Nonce : 1", + "9 | Nonce : 2339", "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1306, + "index": 1311, "name": "Sto_Freeze_fundraiser", - "blob": "2702417373657449442d31323334353637380000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2702417373657449442d31323334353637386bc4000000000000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", - "3 | Tip : POLYX 5552342.355555" + "2 | Id : 50283", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1307, + "index": 1312, "name": "Sto_Freeze_fundraiser", - "blob": "2702417373657449442d31323334353637380100000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2702417373657449442d31323334353637380100000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", "2 | Id : 1", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Freeze fundraiser", @@ -35776,688 +35981,683 @@ "2 | Id : 1", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1308, + "index": 1313, "name": "Sto_Freeze_fundraiser", - "blob": "2702417373657449442d31323334353637380000000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2702417373657449442d31323334353637380100000000000000d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0" + "2 | Id : 1", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 1", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1309, + "index": 1314, "name": "Sto_Freeze_fundraiser", - "blob": "2702417373657449442d31323334353637380000000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2702417373657449442d31323334353637386bc4000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0" + "2 | Id : 50283", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1310, + "index": 1315, "name": "Sto_Freeze_fundraiser", - "blob": "2702417373657449442d31323334353637386bc4000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2702417373657449442d31323334353637386bc4000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", "2 | Id : 50283", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Freeze fundraiser", "1 | Offering asset : AssetID-12345678", "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1311, + "index": 1316, "name": "Sto_Unfreeze_fundraiser", - "blob": "2703417373657449442d31323334353637386400000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2703417373657449442d31323334353637382309000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", - "3 | Tip : POLYX 0.000987" + "2 | Id : 2339", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", + "2 | Id : 2339", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1312, + "index": 1317, "name": "Sto_Unfreeze_fundraiser", - "blob": "2703417373657449442d31323334353637386400000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2703417373657449442d31323334353637386bc4000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", - "3 | Tip : POLYX 1234.56789" + "2 | Id : 50283", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", + "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1313, + "index": 1318, "name": "Sto_Unfreeze_fundraiser", - "blob": "2703417373657449442d31323334353637382309000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2703417373657449442d31323334353637386bc4000000000000d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 2339", + "2 | Id : 50283", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 2339", + "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1314, + "index": 1319, "name": "Sto_Unfreeze_fundraiser", - "blob": "2703417373657449442d31323334353637380100000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2703417373657449442d31323334353637386bc4000000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", + "2 | Id : 50283", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", + "2 | Id : 50283", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1315, + "index": 1320, "name": "Sto_Unfreeze_fundraiser", - "blob": "2703417373657449442d31323334353637386400000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2703417373657449442d31323334353637380100000000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", - "3 | Tip : POLYX 0.000987" + "2 | Id : 1" ], "output_expert": [ "0 | Sto : Unfreeze fundraiser", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", + "2 | Id : 1", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1316, + "index": 1321, "name": "Sto_Modify_fundraiser_window", - "blob": "2704417373657449442d313233343536373800000000000000000001000000000000018000000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2704417373657449442d313233343536373864000000000000000001000000000000010001000000000000d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 100", "3 | Start : 256", - "4 | End : 128", - "5 | Tip : POLYX 5552342.355555" + "4 | End : 256" ], "output_expert": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 100", "3 | Start : 256", - "4 | End : 128", + "4 | End : 256", "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 0", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1317, + "index": 1322, "name": "Sto_Modify_fundraiser_window", - "blob": "2704417373657449442d313233343536373801000000000000008000000000000000010001000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2704417373657449442d31323334353637386bc40000000000000008000000000000010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", - "3 | Start : 128", - "4 | End : 256" + "2 | Id : 50283", + "3 | Start : 2048", + "4 | End : 2048", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", - "3 | Start : 128", - "4 | End : 256", + "2 | Id : 50283", + "3 | Start : 2048", + "4 | End : 2048", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 0", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1318, + "index": 1323, "name": "Sto_Modify_fundraiser_window", - "blob": "2704417373657449442d31323334353637386bc40000000000000001000000000000018000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2704417373657449442d313233343536373823090000000000000001000000000000010008000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 50283", + "2 | Id : 2339", "3 | Start : 256", - "4 | End : 128", - "5 | Tip : POLYX 0.000987" + "4 | End : 2048", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 50283", + "2 | Id : 2339", "3 | Start : 256", - "4 | End : 128", + "4 | End : 2048", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 0.000987", + "6 | Nonce : 2339", + "7 | Tip : POLYX 1234.56789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1319, + "index": 1324, "name": "Sto_Modify_fundraiser_window", - "blob": "2704417373657449442d313233343536373800000000000000000008000000000000010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2704417373657449442d313233343536373823090000000000000001000000000000018000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", - "3 | Start : 2048", - "4 | End : 2048" + "2 | Id : 2339", + "3 | Start : 256", + "4 | End : 128", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", - "3 | Start : 2048", - "4 | End : 2048", + "2 | Id : 2339", + "3 | Start : 256", + "4 | End : 128", "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 1", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1320, + "index": 1325, "name": "Sto_Modify_fundraiser_window", - "blob": "2704417373657449442d313233343536373801000000000000008000000000000000010001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2704417373657449442d313233343536373801000000000000008000000000000000018000000000000000d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", "2 | Id : 1", "3 | Start : 128", - "4 | End : 256", - "5 | Tip : POLYX 55.555555" + "4 | End : 128", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Sto : Modify fundraiser window", "1 | Offering asset : AssetID-12345678", "2 | Id : 1", "3 | Start : 128", - "4 | End : 256", + "4 | End : 128", "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", + "6 | Nonce : 2339", + "7 | Tip : POLYX 1234.56789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1321, + "index": 1326, "name": "Sto_Stop", - "blob": "2705417373657449442d31323334353637386bc4000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2705417373657449442d31323334353637380000000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 50283" + "2 | Id : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 50283", + "2 | Id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1322, + "index": 1327, "name": "Sto_Stop", - "blob": "2705417373657449442d31323334353637380000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2705417373657449442d31323334353637380000000000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", "2 | Id : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", "2 | Id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1323, + "index": 1328, "name": "Sto_Stop", - "blob": "2705417373657449442d31323334353637380100000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2705417373657449442d31323334353637382309000000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", - "3 | Tip : POLYX 55.555555" + "2 | Id : 2339", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 1", + "2 | Id : 2339", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1324, + "index": 1329, "name": "Sto_Stop", - "blob": "2705417373657449442d31323334353637380000000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2705417373657449442d31323334353637382309000000000000d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0" + "2 | Id : 2339", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 0", + "2 | Id : 2339", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1325, + "index": 1330, "name": "Sto_Stop", - "blob": "2705417373657449442d31323334353637386400000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2705417373657449442d31323334353637380100000000000000d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", - "3 | Tip : POLYX 0.000987" + "2 | Id : 1" ], "output_expert": [ "0 | Sto : Stop", "1 | Offering asset : AssetID-12345678", - "2 | Id : 100", + "2 | Id : 1", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1326, + "index": 1331, "name": "Treasury_Disbursement", - "blob": "2800040c08ed1276684085535b7c8008a59c27c611e56c1abe9272774d6f46db705478fcd91200000000000000000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "28000418a362791a1e0ea79d31d0969ae5435366e37ef560517304b8da1a13febc137cfcd91200000000000000000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 0c08ed1276684085535b7c8008a59c27c611e5", - "1 | Beneficiaries [2/3] : 6c1abe9272774d6f46db705478", + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 0c08ed1276684085535b7c8008a59c27c611e5", - "1 | Beneficiaries [2/3] : 6c1abe9272774d6f46db705478", + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", "1 | Beneficiaries [3/3] : POLYX 1.235452", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1327, + "index": 1332, "name": "Treasury_Disbursement", - "blob": "280000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "28000418a362791a1e0ea79d31d0969ae5435366e37ef560517304b8da1a13febc137cfcd91200000000000000000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries : " + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", + "1 | Beneficiaries [3/3] : POLYX 1.235452", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", + "1 | Beneficiaries [3/3] : POLYX 1.235452", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1328, + "index": 1333, "name": "Treasury_Disbursement", - "blob": "280000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "280000d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Disbursement", "1 | Beneficiaries : ", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Treasury : Disbursement", "1 | Beneficiaries : ", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1329, + "index": 1334, "name": "Treasury_Disbursement", - "blob": "2800040c08ed1276684085535b7c8008a59c27c611e56c1abe9272774d6f46db705478fcd91200000000000000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "28000418a362791a1e0ea79d31d0969ae5435366e37ef560517304b8da1a13febc137cfcd91200000000000000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 0c08ed1276684085535b7c8008a59c27c611e5", - "1 | Beneficiaries [2/3] : 6c1abe9272774d6f46db705478", + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 0c08ed1276684085535b7c8008a59c27c611e5", - "1 | Beneficiaries [2/3] : 6c1abe9272774d6f46db705478", + "1 | Beneficiaries [1/3] : 18a362791a1e0ea79d31d0969ae5435366e37e", + "1 | Beneficiaries [2/3] : f560517304b8da1a13febc137c", "1 | Beneficiaries [3/3] : POLYX 1.235452", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1330, + "index": 1335, "name": "Treasury_Disbursement", - "blob": "280000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "280000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Disbursement", "1 | Beneficiaries : ", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Treasury : Disbursement", "1 | Beneficiaries : ", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1331, + "index": 1336, "name": "Treasury_Reimbursement", - "blob": "2801e9f2fb1c9c0e574344ad0ce218e5c53dd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2801a9698bb58f31528289cbe66c452b62fed503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 55.555555" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1332, + "index": 1337, "name": "Treasury_Reimbursement", - "blob": "2801e9f2fb1c9c0e574344ad0ce218e5c53dd503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2801a9698bb58f31528289cbe66c452b62fed503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 0.000987" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1333, + "index": 1338, "name": "Treasury_Reimbursement", - "blob": "2801e9f2fb1c9c0e574344ad0ce218e5c53dd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2801a9698bb58f31528289cbe66c452b62fed503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1334, + "index": 1339, "name": "Treasury_Reimbursement", - "blob": "2801e9f2fb1c9c0e574344ad0ce218e5c53dd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2801a9698bb58f31528289cbe66c452b62fed5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 0.000987" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1335, + "index": 1340, "name": "Treasury_Reimbursement", - "blob": "2801e9f2fb1c9c0e574344ad0ce218e5c53dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2801a9698bb58f31528289cbe66c452b62fed503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", - "2 | Tip : POLYX 5552342.355555" + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "1 | Amount [2/2] : .115433", + "1 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "1 | Amount [2/2] : 1.492265", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1336, - "name": "Utility_Batch", - "blob": "2900040000083434d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1337, + "index": 1341, "name": "Utility_Batch", - "blob": "29000800000834340000083838d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29000800000834340000083838d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch", "1 | Calls [1/4] : Remark", @@ -36477,71 +36677,63 @@ "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1338, + "index": 1342, "name": "Utility_Batch", - "blob": "29000800000834340000083838d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2900040000083434d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 1234.56789" + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434" ], "output_expert": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, { - "index": 1339, + "index": 1343, "name": "Utility_Batch", - "blob": "29000800000834340000083838d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2900040000083434d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1340, + "index": 1344, "name": "Utility_Batch", - "blob": "2900040000083434d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2900040000083434d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch", "1 | Calls [1/2] : Remark", "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Utility : Batch", @@ -36549,99 +36741,83 @@ "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1341, - "name": "Utility_Relay_tx", - "blob": "29019a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda5601074900dc998558b274b391ea93b638e8c3775ad7f9dac9d7b65ac602bb539149a6416da2d584744053e20e7bcd743ad148d7df4f4973638b7a9b2091d255a466c9af55b2150000000000000000083434d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1345, + "name": "Utility_Batch", + "blob": "2900040000083434d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target [2/2] : WSoxS5U55S", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 1234.56789" + "0 | Utility : Batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target [2/2] : WSoxS5U55S", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Utility : Batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1342, + "index": 1346, "name": "Utility_Relay_tx", - "blob": "290188bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b36700dc998558b274b391ea93b638e8c3775ad7f9dac9d7b65ac602bb539149a6416da2d584744053e20e7bcd743ad148d7df4f4973638b7a9b2091d255a466c9af55b2150000000000000000083434d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29016e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830006f86386027b1ca6bd821226040cefb018cb2e3deb3fd98e303e467f751d0bc6ce07cdaf1abc9de35252acd0f9c4d2736e725d0c1818455ab77b413646c32ead3b2150000000000000000083434d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target [2/2] : giQysSa189", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 6f86386027b1ca6bd821226040cefb018cb2e3", + "2 | Signature [2/4] : deb3fd98e303e467f751d0bc6ce07cdaf1abc9", + "2 | Signature [3/4] : de35252acd0f9c4d2736e725d0c1818455ab77", + "2 | Signature [4/4] : b413646c32ead3", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 5552342.355555" + "3 | Call [3/3] : 3434" ], "output_expert": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target [2/2] : giQysSa189", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 6f86386027b1ca6bd821226040cefb018cb2e3", + "2 | Signature [2/4] : deb3fd98e303e467f751d0bc6ce07cdaf1abc9", + "2 | Signature [3/4] : de35252acd0f9c4d2736e725d0c1818455ab77", + "2 | Signature [4/4] : b413646c32ead3", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1343, + "index": 1347, "name": "Utility_Relay_tx", - "blob": "29019a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749023ee1b04eef183dfd9b91bfa8b673c6075594a9cc0dda1d5c900ee0fc0c3cba64f0221210492f84cb8577895228a982e01b094665fc2985f8645025de0b93797ee2b2150000000000000000083434d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "290194c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3202cd30b5c4cb9a264634922e195d0c8b3f6f94ae0b874d307a08378166f69a1d6f2d7e1011093b68268dc4d213a00f220181075812dba05782ed5540e5fa376cffceb2150000000000000000083434d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target [2/2] : WSoxS5U55S", - "2 | Signature [1/4] : 3ee1b04eef183dfd9b91bfa8b673c6075594a9", - "2 | Signature [2/4] : cc0dda1d5c900ee0fc0c3cba64f0221210492f", - "2 | Signature [3/4] : 84cb8577895228a982e01b094665fc2985f864", - "2 | Signature [4/4] : 5025de0b93797ee2", + "1 | Target [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target [2/2] : MUoEsZrND5", + "2 | Signature [1/4] : cd30b5c4cb9a264634922e195d0c8b3f6f94ae", + "2 | Signature [2/4] : 0b874d307a08378166f69a1d6f2d7e1011093b", + "2 | Signature [3/4] : 68268dc4d213a00f220181075812dba05782ed", + "2 | Signature [4/4] : 5540e5fa376cffce", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", @@ -36650,37 +36826,37 @@ ], "output_expert": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | Target [2/2] : WSoxS5U55S", - "2 | Signature [1/4] : 3ee1b04eef183dfd9b91bfa8b673c6075594a9", - "2 | Signature [2/4] : cc0dda1d5c900ee0fc0c3cba64f0221210492f", - "2 | Signature [3/4] : 84cb8577895228a982e01b094665fc2985f864", - "2 | Signature [4/4] : 5025de0b93797ee2", + "1 | Target [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | Target [2/2] : MUoEsZrND5", + "2 | Signature [1/4] : cd30b5c4cb9a264634922e195d0c8b3f6f94ae", + "2 | Signature [2/4] : 0b874d307a08378166f69a1d6f2d7e1011093b", + "2 | Signature [3/4] : 68268dc4d213a00f220181075812dba05782ed", + "2 | Signature [4/4] : 5540e5fa376cffce", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 0", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1344, + "index": 1348, "name": "Utility_Relay_tx", - "blob": "2901ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f3975900dc998558b274b391ea93b638e8c3775ad7f9dac9d7b65ac602bb539149a6416da2d584744053e20e7bcd743ad148d7df4f4973638b7a9b2091d255a466c9af55b2150000000000000000083434d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29016e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830006f86386027b1ca6bd821226040cefb018cb2e3deb3fd98e303e467f751d0bc6ce07cdaf1abc9de35252acd0f9c4d2736e725d0c1818455ab77b413646c32ead3b2150000000000000000083434d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Target [2/2] : eVpueLTi3R", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 6f86386027b1ca6bd821226040cefb018cb2e3", + "2 | Signature [2/4] : deb3fd98e303e467f751d0bc6ce07cdaf1abc9", + "2 | Signature [3/4] : de35252acd0f9c4d2736e725d0c1818455ab77", + "2 | Signature [4/4] : b413646c32ead3", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", @@ -36688,100 +36864,100 @@ ], "output_expert": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | Target [2/2] : eVpueLTi3R", - "2 | Signature [1/4] : dc998558b274b391ea93b638e8c3775ad7f9da", - "2 | Signature [2/4] : c9d7b65ac602bb539149a6416da2d584744053", - "2 | Signature [3/4] : e20e7bcd743ad148d7df4f4973638b7a9b2091", - "2 | Signature [4/4] : d255a466c9af55", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 6f86386027b1ca6bd821226040cefb018cb2e3", + "2 | Signature [2/4] : deb3fd98e303e467f751d0bc6ce07cdaf1abc9", + "2 | Signature [3/4] : de35252acd0f9c4d2736e725d0c1818455ab77", + "2 | Signature [4/4] : b413646c32ead3", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 1", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1345, + "index": 1349, "name": "Utility_Relay_tx", - "blob": "290188bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367023ee1b04eef183dfd9b91bfa8b673c6075594a9cc0dda1d5c900ee0fc0c3cba64f0221210492f84cb8577895228a982e01b094665fc2985f8645025de0b93797ee2b2150000000000000000083434d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2901b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7f011adcf0f1b9575b1430df9d6a48bfa34af815a89e82c5ca1921a6628bbcbfb9e21f2bad52172fe1f9b71cdccf710849818435576e526f4a154e0f30bdec0fa8e6b2150000000000000000083434d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target [2/2] : giQysSa189", - "2 | Signature [1/4] : 3ee1b04eef183dfd9b91bfa8b673c6075594a9", - "2 | Signature [2/4] : cc0dda1d5c900ee0fc0c3cba64f0221210492f", - "2 | Signature [3/4] : 84cb8577895228a982e01b094665fc2985f864", - "2 | Signature [4/4] : 5025de0b93797ee2", + "1 | Target [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target [2/2] : S2eWQeEoGM", + "2 | Signature [1/4] : 1adcf0f1b9575b1430df9d6a48bfa34af815a8", + "2 | Signature [2/4] : 9e82c5ca1921a6628bbcbfb9e21f2bad52172f", + "2 | Signature [3/4] : e1f9b71cdccf710849818435576e526f4a154e", + "2 | Signature [4/4] : 0f30bdec0fa8e6", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 1234.56789" + "3 | Call [3/3] : 3434" ], "output_expert": [ "0 | Utility : Relay tx", - "1 | Target [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | Target [2/2] : giQysSa189", - "2 | Signature [1/4] : 3ee1b04eef183dfd9b91bfa8b673c6075594a9", - "2 | Signature [2/4] : cc0dda1d5c900ee0fc0c3cba64f0221210492f", - "2 | Signature [3/4] : 84cb8577895228a982e01b094665fc2985f864", - "2 | Signature [4/4] : 5025de0b93797ee2", + "1 | Target [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | Target [2/2] : S2eWQeEoGM", + "2 | Signature [1/4] : 1adcf0f1b9575b1430df9d6a48bfa34af815a8", + "2 | Signature [2/4] : 9e82c5ca1921a6628bbcbfb9e21f2bad52172f", + "2 | Signature [3/4] : e1f9b71cdccf710849818435576e526f4a154e", + "2 | Signature [4/4] : 0f30bdec0fa8e6", "3 | Call [1/3] : 5554", "3 | Call [2/3] : Remark", "3 | Call [3/3] : 3434", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1346, - "name": "Utility_Batch_all", - "blob": "2902100000083434000008383800000c31333200000c313736d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1350, + "name": "Utility_Relay_tx", + "blob": "29016e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830011adcf0f1b9575b1430df9d6a48bfa34af815a89e82c5ca1921a6628bbcbfb9e21f2bad52172fe1f9b71cdccf710849818435576e526f4a154e0f30bdec0fa8e6b2150000000000000000083434d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 55.555555" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 1adcf0f1b9575b1430df9d6a48bfa34af815a8", + "2 | Signature [2/4] : 9e82c5ca1921a6628bbcbfb9e21f2bad52172f", + "2 | Signature [3/4] : e1f9b71cdccf710849818435576e526f4a154e", + "2 | Signature [4/4] : 0f30bdec0fa8e6", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | Target [2/2] : Ue5Ex9ptDp", + "2 | Signature [1/4] : 1adcf0f1b9575b1430df9d6a48bfa34af815a8", + "2 | Signature [2/4] : 9e82c5ca1921a6628bbcbfb9e21f2bad52172f", + "2 | Signature [3/4] : e1f9b71cdccf710849818435576e526f4a154e", + "2 | Signature [4/4] : 0f30bdec0fa8e6", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1347, + "index": 1351, "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29020800000834340000083838d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch all", "1 | Calls [1/4] : Remark", @@ -36797,68 +36973,76 @@ "1 | Calls [3/4] : Remark", "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1348, + "index": 1352, "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2902040000083434d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1349, + "index": 1353, "name": "Utility_Batch_all", - "blob": "2902040000083434d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2902100000083434000008383800000c31333200000c313736d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch all", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 5552342.355555" + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Utility : Batch all", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1350, + "index": 1354, "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29020800000834340000083838d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Batch all", "1 | Calls [1/4] : Remark", @@ -36873,104 +37057,122 @@ "1 | Calls [3/4] : Remark", "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1351, + "index": 1355, + "name": "Utility_Batch_all", + "blob": "2902040000083434d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434" + ], + "output_expert": [ + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1356, "name": "Utility_Dispatch_as", - "blob": "29030b000000083434d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "290300020000083434d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : TechnicalCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin : None", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : TechnicalCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin : None", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1352, + "index": 1357, "name": "Utility_Dispatch_as", - "blob": "290309000000083434d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29030001614e127f6b4c040ce64e5a0e1cb33fc604fe34dac36c15f2c64d79d01870d6c60000083434d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin [1/2] : 5EGHhDpH7HYFVUG39F5ZvMUgKadG7LRbT3jfwq", + "1 | As origin [2/2] : mDG1tbR5Nu", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin [1/2] : 5EGHhDpH7HYFVUG39F5ZvMUgKadG7LRbT3jfwq", + "1 | As origin [2/2] : mDG1tbR5Nu", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1353, + "index": 1358, "name": "Utility_Dispatch_as", - "blob": "290309000000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "290300000000083434d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin : Root", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", + "1 | As origin : Root", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1354, + "index": 1359, "name": "Utility_Dispatch_as", - "blob": "29030d000000083434d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29030d000000083434d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Dispatch as", "1 | As origin [1/2] : UpgradeCommittee", "1 | As origin [2/2] : Endorsed", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Utility : Dispatch as", @@ -36979,24 +37181,25 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1355, + "index": 1360, "name": "Utility_Dispatch_as", - "blob": "29030b000000083434d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29030b000000083434d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Dispatch as", "1 | As origin [1/2] : TechnicalCommittee", "1 | As origin [2/2] : Endorsed", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Utility : Dispatch as", @@ -37005,52 +37208,59 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1356, + "index": 1361, "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2904100000083434000008383800000c31333200000c313736d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1357, + "index": 1362, "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29040800000834340000083838d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Force batch", "1 | Calls [1/4] : Remark", "1 | Calls [2/4] : 3434", "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 0.000987" + "1 | Calls [4/4] : 3838" ], "output_expert": [ "0 | Utility : Force batch", @@ -37059,76 +37269,65 @@ "1 | Calls [3/4] : Remark", "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1358, + "index": 1363, "name": "Utility_Force_batch", - "blob": "2904100000083434000008383800000c31333200000c313736d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29040800000834340000083838d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736" + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838" ], "output_expert": [ "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1359, + "index": 1364, "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2904040000083434d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1360, + "index": 1365, "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29040800000834340000083838d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : Force batch", "1 | Calls [1/4] : Remark", @@ -37148,20 +37347,20 @@ "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1361, + "index": 1366, "name": "Utility_With_weight", - "blob": "29050000083434a1f8fa7b05d0d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "290500000834345ed5e0deadc9d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], @@ -37169,592 +37368,255 @@ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1362, + "index": 1367, "name": "Utility_With_weight", - "blob": "29050000083434a1f8fa7b05d0d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29050000083434edddcac7c373d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1363, + "index": 1368, "name": "Utility_With_weight", - "blob": "290500000834340f0da5cef216be91acd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2905000008343413458045125ace6a89135518ce23543ce884d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43", - "3 | Tip : POLYX 55.555555" + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 41022877395232013", - "2 | Weight [2/2] : 43", + "2 | Weight [1/2] : 9901953616976379973", + "2 | Weight [2/2] : 9576970939678988373", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1364, + "index": 1369, "name": "Utility_With_weight", - "blob": "29050000083434a1f8fa7b05d0d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "290500000834345ed5e0deadc9d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086" + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 15912", - "2 | Weight [2/2] : 872505086", + "2 | Weight [1/2] : 934819159", + "2 | Weight [2/2] : 12907", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1365, + "index": 1370, "name": "Utility_With_weight", - "blob": "29050000083434135538e412b597bce91349338e8af145f627d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "29050000083434edddcac7c373d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 16842503510420633685", - "2 | Weight [2/2] : 2879565915464020809", - "3 | Tip : POLYX 0.000987" + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Utility : With weight", "1 | Call [1/2] : Remark", "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 16842503510420633685", - "2 | Weight [2/2] : 2879565915464020809", + "2 | Weight [1/2] : 14203", + "2 | Weight [2/2] : 485552626", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1366, - "name": "Utility_Batch_old", - "blob": "2906040000083434d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1371, + "name": "Utility_As_derivative", + "blob": "29094e030000083434d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 0.000987" + "0 | Utility : As derivative", + "1 | Index : 846", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Utility : As derivative", + "1 | Index : 846", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1367, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1372, + "name": "Utility_As_derivative", + "blob": "29092c010000083434d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Utility : As derivative", + "1 | Index : 300", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "0 | Utility : As derivative", + "1 | Index : 300", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1368, - "name": "Utility_Batch_old", - "blob": "2906100000083434000008383800000c31333200000c313736d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1373, + "name": "Utility_As_derivative", + "blob": "290901000000083434d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Utility : As derivative", + "1 | Index : 1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Utility : As derivative", + "1 | Index : 1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1369, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1374, + "name": "Utility_As_derivative", + "blob": "290900040000083434d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" + "0 | Utility : As derivative", + "1 | Index : 1024", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Utility : As derivative", + "1 | Index : 1024", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1370, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1375, + "name": "Utility_As_derivative", + "blob": "290901000000083434d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 0.000987" + "0 | Utility : As derivative", + "1 | Index : 1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1371, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1372, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1373, - "name": "Utility_Batch_atomic", - "blob": "29070800000834340000083838d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1374, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1375, - "name": "Utility_Batch_atomic", - "blob": "29070800000834340000083838d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1376, - "name": "Utility_Batch_optimistic", - "blob": "2908040000083434d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1377, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1378, - "name": "Utility_Batch_optimistic", - "blob": "2908100000083434000008383800000c31333200000c313736d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1379, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1380, - "name": "Utility_Batch_optimistic", - "blob": "2908040000083434d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1381, - "name": "Externalagents_Create_group", - "blob": "2b00417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595ad50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Externalagents : Create group", - "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", + "0 | Utility : As derivative", + "1 | Index : 1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1382, + "index": 1376, "name": "Externalagents_Create_group", - "blob": "2b00417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b00417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595ad5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", @@ -37763,7 +37625,7 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Externalagents : Create group", @@ -37774,18 +37636,18 @@ "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1383, + "index": 1377, "name": "Externalagents_Create_group", - "blob": "2b00417373657449442d313233343536373800d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b00417373657449442d313233343536373800d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", @@ -37801,20 +37663,20 @@ "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1384, + "index": 1378, "name": "Externalagents_Create_group", - "blob": "2b00417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595ad5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b00417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595ad503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", "3 | Tip : POLYX 0.000987" @@ -37822,663 +37684,639 @@ "output_expert": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1385, + "index": 1379, "name": "Externalagents_Create_group", - "blob": "2b00417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595ad503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b00417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595ad5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 55.555555" + "2 | Perms [5/5] : DispatchXYZ" ], "output_expert": [ "0 | Externalagents : Create group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", "3 | Chain : Polymesh", "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1380, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d313233343536373800d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1386, + "index": 1381, "name": "Externalagents_Set_group_permissions", - "blob": "2b01417373657449442d313233343536373830b1e3600204043001082c44697370617463684142432c446973706174636858595ad50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b01417373657449442d3132333435363738c7da98b10104043001042c446973706174636858595ad5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 1625534768", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", + "2 | Id : 2979584711", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 1625534768", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", + "2 | Id : 2979584711", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 2339", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1387, + "index": 1382, "name": "Externalagents_Set_group_permissions", - "blob": "2b01417373657449442d3132333435363738f0dfbdf900d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b01417373657449442d31323334353637383d4b563200d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 4189970416", + "2 | Id : 844516157", "3 | Perms : Whole", - "4 | Tip : POLYX 55.555555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 4189970416", + "2 | Id : 844516157", "3 | Perms : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1388, + "index": 1383, "name": "Externalagents_Set_group_permissions", - "blob": "2b01417373657449442d31323334353637382aa080290204043001082c44697370617463684142432c446973706174636858595ad503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b01417373657449442d3132333435363738c5b958d60204043001082c44697370617463684142432c446973706174636858595ad503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 696295466", + "2 | Id : 3596138949", "3 | Perms [1/5] : Except", "3 | Perms [2/5] : 0", "3 | Perms [3/5] : These", "3 | Perms [4/5] : DispatchABC", "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip : POLYX 5552342.355555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 696295466", + "2 | Id : 3596138949", "3 | Perms [1/5] : Except", "3 | Perms [2/5] : 0", "3 | Perms [3/5] : These", "3 | Perms [4/5] : DispatchABC", "3 | Perms [5/5] : DispatchXYZ", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1389, + "index": 1384, "name": "Externalagents_Set_group_permissions", - "blob": "2b01417373657449442d31323334353637382aa080290104043002082c44697370617463684142432c446973706174636858595ad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b01417373657449442d31323334353637383d4b563200d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 696295466", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Id : 844516157", + "3 | Perms : Whole", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 696295466", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", + "2 | Id : 844516157", + "3 | Perms : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1390, + "index": 1385, "name": "Externalagents_Set_group_permissions", - "blob": "2b01417373657449442d313233343536373830b1e3600104043002082c44697370617463684142432c446973706174636858595ad5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b01417373657449442d3132333435363738c5b958d600d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 1625534768", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", + "2 | Id : 3596138949", + "3 | Perms : Whole", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Externalagents : Set group permissions", "1 | Asset id : AssetID-12345678", - "2 | Id : 1625534768", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : 0", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", + "2 | Id : 3596138949", + "3 | Perms : Whole", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 50283", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1391, + "index": 1386, "name": "Externalagents_Remove_agent", - "blob": "2b02417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b02417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1392, + "index": 1387, "name": "Externalagents_Remove_agent", - "blob": "2b02417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b02417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1393, + "index": 1388, "name": "Externalagents_Remove_agent", - "blob": "2b02417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b02417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 5552342.355555" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1394, + "index": 1389, "name": "Externalagents_Remove_agent", - "blob": "2b02417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b02417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip : POLYX 55.555555" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1395, + "index": 1390, "name": "Externalagents_Remove_agent", - "blob": "2b02417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b02417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Externalagents : Remove agent", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1396, + "index": 1391, "name": "Externalagents_Abdicate", - "blob": "2b03417373657449442d3132333435363738d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b03417373657449442d3132333435363738d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1397, + "index": 1392, "name": "Externalagents_Abdicate", - "blob": "2b03417373657449442d3132333435363738d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b03417373657449442d3132333435363738d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Abdicate", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 0.000987" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1398, + "index": 1393, "name": "Externalagents_Abdicate", - "blob": "2b03417373657449442d3132333435363738d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b03417373657449442d3132333435363738d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1399, + "index": 1394, "name": "Externalagents_Abdicate", - "blob": "2b03417373657449442d3132333435363738d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b03417373657449442d3132333435363738d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Abdicate", - "1 | Asset id : AssetID-12345678", - "2 | Tip : POLYX 1234.56789" + "1 | Asset id : AssetID-12345678" ], "output_expert": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1400, + "index": 1395, "name": "Externalagents_Abdicate", - "blob": "2b03417373657449442d3132333435363738d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b03417373657449442d3132333435363738d503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Abdicate", - "1 | Asset id : AssetID-12345678" + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Externalagents : Abdicate", "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1401, + "index": 1396, "name": "Externalagents_Change_group", - "blob": "2b04417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4013604c72cd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b04417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b03d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 751240246", - "4 | Tip : POLYX 0.000987" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1CAA", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 751240246", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1CAA", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1402, + "index": 1397, "name": "Externalagents_Change_group", - "blob": "2b04417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d403d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b04417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b02d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : PolymeshV1CAA", - "4 | Tip : POLYX 1234.56789" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : ExceptMeta", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : PolymeshV1CAA", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : ExceptMeta", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1403, + "index": 1398, "name": "Externalagents_Change_group", - "blob": "2b04417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d403d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b04417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : PolymeshV1CAA", - "4 | Tip : POLYX 55.555555" + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1PIA" ], "output_expert": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : PolymeshV1CAA", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1PIA", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1404, + "index": 1399, "name": "Externalagents_Change_group", - "blob": "2b04417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d400d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b04417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b04d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : Full", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1PIA", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : Full", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1PIA", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1405, + "index": 1400, "name": "Externalagents_Change_group", - "blob": "2b04417373657449442d3132333435363738117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d400d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b04417373657449442d31323334353637382910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b03d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : Full", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1CAA", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Externalagents : Change group", "1 | Asset id : AssetID-12345678", - "2 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "2 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "3 | Group : Full", + "2 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "2 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "3 | Group : PolymeshV1CAA", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 1", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1406, - "name": "Externalagents_Accept_become_agent", - "blob": "2b050000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1407, + "index": 1401, "name": "Externalagents_Accept_become_agent", - "blob": "2b050100000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b056400000000000000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 1" + "1 | Auth id : 100" ], "output_expert": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 1", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1408, + "index": 1402, "name": "Externalagents_Accept_become_agent", - "blob": "2b050000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b052309000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", + "1 | Auth id : 2339", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1409, + "index": 1403, "name": "Externalagents_Accept_become_agent", - "blob": "2b052309000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b056400000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", + "1 | Auth id : 100", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1410, + "index": 1404, "name": "Externalagents_Accept_become_agent", - "blob": "2b050000000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b050000000000000000d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Accept become agent", "1 | Auth id : 0", @@ -38488,119 +38326,105 @@ "0 | Externalagents : Accept become agent", "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1411, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b06417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1405, + "name": "Externalagents_Accept_become_agent", + "blob": "2b052309000000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Expiry : 128" + "0 | Externalagents : Accept become agent", + "1 | Auth id : 2339", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "0 | Externalagents : Accept become agent", + "1 | Auth id : 2339", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1412, + "index": 1406, "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b06417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b06417373657449442d3132333435363738002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms : Whole", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 2048", - "5 | Tip : POLYX 55.555555" + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms : Whole", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 2048", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", + "6 | Nonce : 0", + "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1413, + "index": 1407, "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b06417373657449442d313233343536373800117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b06417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms : Whole", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms [1/5] : Except", + "2 | Perms [2/5] : 0", + "2 | Perms [3/5] : These", + "2 | Perms [4/5] : DispatchABC", + "2 | Perms [5/5] : DispatchXYZ", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 2048", - "5 | Tip : POLYX 55.555555" + "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms : Whole", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms [1/5] : Except", + "2 | Perms [2/5] : 0", + "2 | Perms [3/5] : These", + "2 | Perms [4/5] : DispatchABC", + "2 | Perms [5/5] : DispatchXYZ", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 2048", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 55.555555", + "6 | Nonce : 2339", + "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1414, + "index": 1408, "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b06417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010001000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b06417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010001000000000000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", @@ -38609,8 +38433,8 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 256", "5 | Tip : POLYX 5552342.355555" ], @@ -38622,84 +38446,121 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Expiry : 256", "5 | Chain : Polymesh", - "6 | Nonce : 2339", + "6 | Nonce : 50283", "7 | Tip : POLYX 5552342.355555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1415, + "index": 1409, "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b06417373657449442d313233343536373800117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4010008000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b06417373657449442d31323334353637380104043001042c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms : Whole", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Expiry : 2048", - "5 | Tip : POLYX 0.000987" + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Expiry : 128", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms : Whole", - "3 | Target [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Target [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Expiry : 2048", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Expiry : 128", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", + "6 | Nonce : 0", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1416, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b07417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1410, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3b010008000000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Externalagents : Create and change custom group", + "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4" + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Expiry : 2048", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", + "0 | Externalagents : Create group and add auth", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", + "2 | Perms [1/5] : Except", "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", + "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "3 | Target [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Target [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Expiry : 2048", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1411, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d3132333435363738002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b" + ], + "output_expert": [ + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Chain : Polymesh", "5 | Nonce : 1", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1417, + "index": 1412, "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b07417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b07417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", @@ -38708,9 +38569,9 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Tip : POLYX 5552342.355555" + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Externalagents : Create and change custom group", @@ -38720,21 +38581,21 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1418, + "index": 1413, "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b07417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b07417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a2910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", @@ -38743,9 +38604,9 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Tip : POLYX 55.555555" + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Externalagents : Create and change custom group", @@ -38755,2738 +38616,2786 @@ "2 | Perms [3/5] : These", "2 | Perms [4/5] : DispatchABC", "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1419, + "index": 1414, "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b07417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b07417373657449442d3132333435363738002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Tip : POLYX 0.000987" + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1420, + "index": 1415, "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b07417373657449442d31323334353637380204043001082c44697370617463684142432c446973706174636858595a117cd820df1cee10d01a3072693aafc40b8e51bc938b8219f2e4cea7f54ab5d4d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2b07417373657449442d3132333435363738002910ff61b6dbdf56f63a02cf68f55f69743c489e2631054113aec3667f5a1d3bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", - "4 | Tip : POLYX 5552342.355555" + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b" ], "output_expert": [ "0 | Externalagents : Create and change custom group", "1 | Asset id : AssetID-12345678", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : 0", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 117cd820df1cee10d01a3072693aafc40b8e51", - "3 | Agent [2/2] : bc938b8219f2e4cea7f54ab5d4", + "2 | Perms : Whole", + "3 | Agent [1/2] : 2910ff61b6dbdf56f63a02cf68f55f69743c48", + "3 | Agent [2/2] : 9e2631054113aec3667f5a1d3b", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1421, + "index": 1416, "name": "Relayer_Set_paying_key", - "blob": "2c00ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759e9f2fb1c9c0e574344ad0ce218e5c53dd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c00b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip : POLYX 5552342.355555" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1422, + "index": 1417, "name": "Relayer_Set_paying_key", - "blob": "2c009a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749e9f2fb1c9c0e574344ad0ce218e5c53dd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c006e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830a9698bb58f31528289cbe66c452b62fed5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1423, + "index": 1418, "name": "Relayer_Set_paying_key", - "blob": "2c0088bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367e9f2fb1c9c0e574344ad0ce218e5c53dd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0094c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32a9698bb58f31528289cbe66c452b62fed5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433" + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265" ], "output_expert": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1424, + "index": 1419, "name": "Relayer_Set_paying_key", - "blob": "2c009a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749e9f2fb1c9c0e574344ad0ce218e5c53dd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c006e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830a9698bb58f31528289cbe66c452b62fed5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip : POLYX 55.555555" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1425, + "index": 1420, "name": "Relayer_Set_paying_key", - "blob": "2c009a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749e9f2fb1c9c0e574344ad0ce218e5c53dd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c00b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fa9698bb58f31528289cbe66c452b62fed503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433" + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Set paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1426, + "index": 1421, "name": "Relayer_Accept_paying_key", - "blob": "2c010000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c012309000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 0", - "2 | Tip : POLYX 0.000987" + "1 | Auth id : 2339", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 0", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1427, + "index": 1422, "name": "Relayer_Accept_paying_key", - "blob": "2c012309000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c016bc4000000000000d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 2339", + "1 | Auth id : 50283", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 2339", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1428, + "index": 1423, "name": "Relayer_Accept_paying_key", - "blob": "2c016bc4000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c010000000000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", + "1 | Auth id : 0", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1429, + "index": 1424, "name": "Relayer_Accept_paying_key", - "blob": "2c010000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c010000000000000000d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 0" + "1 | Auth id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Accept paying key", "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1430, + "index": 1425, "name": "Relayer_Accept_paying_key", - "blob": "2c016400000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c010100000000000000d503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 100", - "2 | Tip : POLYX 0.000987" + "1 | Auth id : 1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Accept paying key", - "1 | Auth id : 100", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1431, + "index": 1426, "name": "Relayer_Remove_paying_key", - "blob": "2c02b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57f88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c026e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac8306e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Paying key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "2 | Paying key [2/2] : giQysSa189" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "2 | Paying key [2/2] : Ue5Ex9ptDp", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Paying key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "2 | Paying key [2/2] : giQysSa189", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "2 | Paying key [2/2] : Ue5Ex9ptDp", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1432, + "index": 1427, "name": "Relayer_Remove_paying_key", - "blob": "2c02eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f88bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb3294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Paying key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "2 | Paying key [2/2] : giQysSa189", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Paying key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "2 | Paying key [2/2] : MUoEsZrND5", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Paying key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "2 | Paying key [2/2] : giQysSa189", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Paying key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "2 | Paying key [2/2] : MUoEsZrND5", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1433, + "index": 1428, "name": "Relayer_Remove_paying_key", - "blob": "2c0288bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c026e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761d5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Paying key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "2 | Paying key [2/2] : oDSmtZ2wNU", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "2 | Paying key [2/2] : 1hw5BtHfxM" ], "output_expert": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Paying key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "2 | Paying key [2/2] : oDSmtZ2wNU", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "2 | Paying key [2/2] : 1hw5BtHfxM", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1434, + "index": 1429, "name": "Relayer_Remove_paying_key", - "blob": "2c029a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c026e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac83094c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Paying key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "2 | Paying key [2/2] : eVpueLTi3R", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "2 | Paying key [2/2] : MUoEsZrND5", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Paying key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "2 | Paying key [2/2] : eVpueLTi3R", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Paying key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "2 | Paying key [2/2] : MUoEsZrND5", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1435, + "index": 1430, "name": "Relayer_Remove_paying_key", - "blob": "2c02eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924f9a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0294c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb326e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Paying key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "2 | Paying key [2/2] : WSoxS5U55S", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Paying key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "2 | Paying key [2/2] : Ue5Ex9ptDp" ], "output_expert": [ "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Paying key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "2 | Paying key [2/2] : WSoxS5U55S", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Paying key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "2 | Paying key [2/2] : Ue5Ex9ptDp", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1436, + "index": 1431, "name": "Relayer_Update_polyx_limit", - "blob": "2c03ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759e9f2fb1c9c0e574344ad0ce218e5c53dd503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0394c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32a9698bb58f31528289cbe66c452b62fed503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1437, + "index": 1432, "name": "Relayer_Update_polyx_limit", - "blob": "2c0388bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367e9f2fb1c9c0e574344ad0ce218e5c53dd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c03b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip : POLYX 1234.56789" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1438, + "index": 1433, "name": "Relayer_Update_polyx_limit", - "blob": "2c03eeddcdf125dbe93dacde0d8cc4e13f68473eb152b8c66539e29747095d13924fe9f2fb1c9c0e574344ad0ce218e5c53dd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c03b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip : POLYX 0.000987" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HTu9GgFKshzzwN7VQnoQZ5v3ZSjtLHJ6JKBVP", - "1 | User key [2/2] : Zf9wr3U3rh", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1439, + "index": 1434, "name": "Relayer_Update_polyx_limit", - "blob": "2c0388bbb2bc0c7b18b273fdd269bb7d2524da5f82a20da4ef90b7f5ad084a91b367e9f2fb1c9c0e574344ad0ce218e5c53dd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c03b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fa9698bb58f31528289cbe66c452b62fed5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433" + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5F9z8M7sKf5SXLYEpbt3JVSQoNiv1xpeeG74C3", - "1 | User key [2/2] : giQysSa189", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1440, + "index": 1435, "name": "Relayer_Update_polyx_limit", - "blob": "2c03ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759e9f2fb1c9c0e574344ad0ce218e5c53dd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0394c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32a9698bb58f31528289cbe66c452b62fed503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", - "3 | Tip : POLYX 1234.56789" + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265" ], "output_expert": [ "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Polyx limit [1/2] : POLYX 82110436867245303422915782349504", - "2 | Polyx limit [2/2] : .115433", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Polyx limit [1/2] : POLYX 33813363366556461050743772107277", + "2 | Polyx limit [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1441, + "index": 1436, "name": "Relayer_Increase_polyx_limit", - "blob": "2c04b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fe9f2fb1c9c0e574344ad0ce218e5c53dd503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c04b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 5552342.355555" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1442, + "index": 1437, "name": "Relayer_Increase_polyx_limit", - "blob": "2c0430a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ee9f2fb1c9c0e574344ad0ce218e5c53dd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c0494c9b9906e09447cee1143161bee4567980c855bdd6c2ab3fc5951492a57fb32a9698bb58f31528289cbe66c452b62fed503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5FRnsMDuA5niDNvDGksQCpHNrVPFSj7GLfZCH7", + "1 | User key [2/2] : MUoEsZrND5", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1443, + "index": 1438, "name": "Relayer_Increase_polyx_limit", - "blob": "2c049a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749e9f2fb1c9c0e574344ad0ce218e5c53dd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c04b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fa9698bb58f31528289cbe66c452b62fed503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 5552342.355555" + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1444, + "index": 1439, "name": "Relayer_Increase_polyx_limit", - "blob": "2c0430a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ee9f2fb1c9c0e574344ad0ce218e5c53dd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c046e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830a9698bb58f31528289cbe66c452b62fed503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 0.000987" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1445, + "index": 1440, "name": "Relayer_Increase_polyx_limit", - "blob": "2c04ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759e9f2fb1c9c0e574344ad0ce218e5c53dd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c04b4dd04c36d29763274c654c64901e69bf200f758d1a7310db2af38947318eb7fa9698bb58f31528289cbe66c452b62fed503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 55.555555" + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G9r8eUo9AT5YohZyParGLt41fHDbmYtGr57w6", + "1 | User key [2/2] : S2eWQeEoGM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1446, + "index": 1441, "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05b2a7744401580cfe315462f49dc33bb62de6f073b18685e1a303208d5cfbd57fe9f2fb1c9c0e574344ad0ce218e5c53dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c056e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830a9698bb58f31528289cbe66c452b62fed503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 5552342.355555" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5G6x8CTzUXffGfcFFQw3kDqkjgtxmu2MrhPXGU", - "1 | User key [2/2] : oDSmtZ2wNU", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1447, + "index": 1442, "name": "Relayer_Decrease_polyx_limit", - "blob": "2c059a0d8e2bd899f8614e9bb50bd874c5321aa33212079c8760a4082eda56010749e9f2fb1c9c0e574344ad0ce218e5c53dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c056e896b014170a51acf695dcd3da09156be926dd87b1f9d0e1dc4549f8bbac830a9698bb58f31528289cbe66c452b62fed503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 1234.56789" + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5FYhFvo1xaVtUnwA5ECFdxHqxPq82KJa6tMx3P", - "1 | User key [2/2] : WSoxS5U55S", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5EZdwq6JCC4e9U1EaDjBziom5bD3Lya1F5jrje", + "1 | User key [2/2] : Ue5Ex9ptDp", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1448, + "index": 1443, "name": "Relayer_Decrease_polyx_limit", - "blob": "2c0530a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ee9f2fb1c9c0e574344ad0ce218e5c53dd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c05b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 0.000987" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1449, + "index": 1444, "name": "Relayer_Decrease_polyx_limit", - "blob": "2c0530a8b362e5034633af0fb12ab78e3cc9096897c1d67592f15808812444d47c2ee9f2fb1c9c0e574344ad0ce218e5c53dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c05b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", - "3 | Tip : POLYX 1234.56789" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5DAWGdEuMYMdAuL37N1Md7KbMvZmpu76vAxPSZ", - "1 | User key [2/2] : 21jTx7FmVL", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1450, + "index": 1445, "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05ec67646e30339b2095d7608f4af39548345e1bf3befd9bc37607db1951f39759e9f2fb1c9c0e574344ad0ce218e5c53dd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2c05b0e76e5d736485d37d37636efc1b3d442d95834ad056e29d224fb8e73b75d761a9698bb58f31528289cbe66c452b62fed5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433" + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 5HQfsXG86wu4Pc3k27dfrKVtiPAaTP9GX8JEXZ", - "1 | User key [2/2] : eVpueLTi3R", - "2 | Amount [1/2] : POLYX 82110436867245303422915782349504", - "2 | Amount [2/2] : .115433", + "1 | User key [1/2] : 5G4f2wY1U4gVmLHLDJYpqqanuSD38T8K9tKFNq", + "1 | User key [2/2] : 1hw5BtHfxM", + "2 | Amount [1/2] : POLYX 33813363366556461050743772107277", + "2 | Amount [2/2] : 1.492265", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1451, + "index": 1446, "name": "Contracts_Call_old_weight", - "blob": "2e0004efc69eb57bee12ce817edd57c3a641cdd2d9db9f0b63ce64c10c05621dba9f014221401001013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa6d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e000280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2e005d3d01b55b0102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 669943640", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "5 | Data [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "5 | Data [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "5 | Data [4/4] : 4cbdae8e046aa6", - "6 | Tip : POLYX 1234.56789" + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 0.0", + "3 | Gas limit : 3927", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 669943640", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "5 | Data [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "5 | Data [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "5 | Data [4/4] : 4cbdae8e046aa6", + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 0.0", + "3 | Gas limit : 3927", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", "6 | Chain : Polymesh", "7 | Nonce : 1", - "8 | Tip : POLYX 1234.56789", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1452, + "index": 1447, "name": "Contracts_Call_old_weight", - "blob": "2e000280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba933158139ae28a3dfaac5fe1560a5e9e05c621dba9f01422140100101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6add503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e00001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca033158139ae28a3dfaac5fe1560a5e9e05c5661556a019eee19080102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 669943640", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad" + "3 | Gas limit : 445995093", + "4 | Storage deposit limit : POLYX 33.979303", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 669943640", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", + "3 | Gas limit : 445995093", + "4 | Storage deposit limit : POLYX 33.979303", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 0", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1453, + "index": 1448, "name": "Contracts_Call_old_weight", - "blob": "2e000329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f6d0fc9c701fc01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0003e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3d8ed73e0d5661556a01b55b0101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 12786", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 445995093", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67" ], "output_expert": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 12786", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 445995093", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip : POLYX 5552342.355555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 2339", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1454, + "index": 1449, "name": "Contracts_Call_old_weight", - "blob": "2e0004efc69eb57bee12ce817edd57c3a641cdd2d9db9f03d2029649c9c7016101801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e00047ea45cbefe994907d34f3ae05bbe3ea8bf1edbf203d2029649eadd12d301b55b0101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", + "1 | Dest [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Dest [2/2] : f2", "2 | Amount : POLYX 1234.56789", - "3 | Gas limit : 12786", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03" + "3 | Gas limit : 885307258", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", + "1 | Dest [1/2] : 7ea45cbefe994907d34f3ae05bbe3ea8bf1edb", + "1 | Dest [2/2] : f2", "2 | Amount : POLYX 1234.56789", - "3 | Gas limit : 12786", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", + "3 | Gas limit : 885307258", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", "6 | Chain : Polymesh", "7 | Nonce : 0", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1455, + "index": 1450, "name": "Contracts_Call_old_weight", - "blob": "2e000280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba933158139ae28a3dfaac5fe1560a5e9e05c9801fc0101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6add5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0003e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3d00eadd12d301b55b0102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 38", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad" + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Amount : POLYX 0.0", + "3 | Gas limit : 885307258", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Call old weight", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 38", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Amount : POLYX 0.0", + "3 | Gas limit : 885307258", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 2339", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1456, + "index": 1451, "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e01009801422140100101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead25628076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e016d0f5d3d019eee190880b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5b7fda14dd9a5d7e06efd2e3d5880185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f00102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 38", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "5 | Data [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "5 | Data [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "5 | Data [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "5 | Data [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "5 | Data [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "5 | Data [7/7] : 965dcb1349f7d283b3a94ead2562", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 3927", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "4 | Code [2/2] : b7fda14dd9a5d7e06efd2e3d58", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 38", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "5 | Data [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "5 | Data [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "5 | Data [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "5 | Data [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "5 | Data [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "5 | Data [7/7] : 965dcb1349f7d283b3a94ead2562", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 3927", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "4 | Code [2/2] : b7fda14dd9a5d7e06efd2e3d58", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 100", + "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1457, + "index": 1452, "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0100621dba9f014221401001013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa60102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0100eadd12d3019eee19080101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a670102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acb80185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code old weight", "1 | Amount : POLYX 0.0", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "4 | Code [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "4 | Code [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "4 | Code [4/4] : 4cbdae8e046aa6", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", - "7 | Tip : POLYX 5552342.355555" + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "4 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "4 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "4 | Code [4/4] : 48bce232994a67", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Instantiate with code old weight", "1 | Amount : POLYX 0.0", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "4 | Code [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "4 | Code [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "4 | Code [4/4] : 4cbdae8e046aa6", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "4 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "4 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "4 | Code [4/4] : 48bce232994a67", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", "7 | Chain : Polymesh", "8 | Nonce : 1", - "9 | Tip : POLYX 5552342.355555", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1458, + "index": 1453, "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e016d0f621dba9f01610101012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de101026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a8140100101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6add503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e01005661556a019eee19080101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a670102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd180185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "4 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "4 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "4 | Code [4/4] : 230bed8fba7de1", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "6 | Salt [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "6 | Salt [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "6 | Salt [4/4] : 39f178dd5ac6ad", - "7 | Tip : POLYX 1234.56789" + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 445995093", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "4 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "4 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "4 | Code [4/4] : 48bce232994a67", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "4 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "4 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "4 | Code [4/4] : 230bed8fba7de1", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "6 | Salt [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "6 | Salt [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "6 | Salt [4/4] : 39f178dd5ac6ad", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 445995093", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "4 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "4 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "4 | Code [4/4] : 48bce232994a67", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", + "8 | Nonce : 0", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1459, + "index": 1454, "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0100c9c701422140100102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd8076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d578076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e016d0feadd12d3019eee190880185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f00102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acb80185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 12786", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "4 | Code [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "4 | Code [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "4 | Code [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "4 | Code [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "4 | Code [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "4 | Code [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "5 | Data [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "5 | Data [2/2] : b075fa8b1ff353f7f4446e9d57", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", - "7 | Tip : POLYX 1234.56789" + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "4 | Code [2/2] : ff01683ca1cca30187103897f0", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 12786", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "4 | Code [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "4 | Code [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "4 | Code [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "4 | Code [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "4 | Code [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "4 | Code [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "5 | Data [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "5 | Data [2/2] : b075fa8b1ff353f7f4446e9d57", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "4 | Code [2/2] : ff01683ca1cca30187103897f0", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", "7 | Chain : Polymesh", "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", + "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1460, + "index": 1455, "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0100c9c70142214010010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead2562801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e038076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e010b63ce64c10c055661556a01d80101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef3701180185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f00101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef37011d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 12786", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "4 | Code [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "4 | Code [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "4 | Code [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "4 | Code [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "4 | Code [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "4 | Code [7/7] : 965dcb1349f7d283b3a94ead2562", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", - "7 | Tip : POLYX 55.555555" + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 445995093", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "4 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "4 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "4 | Code [4/4] : 29de0e3ef37011", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 12786", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "4 | Code [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "4 | Code [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "4 | Code [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "4 | Code [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "4 | Code [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "4 | Code [7/7] : 965dcb1349f7d283b3a94ead2562", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 445995093", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "4 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "4 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "4 | Code [4/4] : 29de0e3ef37011", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 55.555555", + "8 | Nonce : 0", + "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1461, + "index": 1456, "name": "Contracts_Instantiate_old_weight", - "blob": "2e028ed73e0da9f501fc885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e026d0f9401b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f3140102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 15722", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "6 | Salt [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "6 | Salt [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "6 | Salt [4/4] : 230bed8fba7de1", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 37", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "6 | Salt [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "6 | Salt [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "6 | Salt [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "6 | Salt [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "6 | Salt [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "6 | Salt [7/7] : 46119a2df878e53f4a185c8a0acb", "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 15722", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "6 | Salt [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "6 | Salt [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "6 | Salt [4/4] : 230bed8fba7de1", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 37", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "6 | Salt [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "6 | Salt [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "6 | Salt [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "6 | Salt [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "6 | Salt [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "6 | Salt [7/7] : 46119a2df878e53f4a185c8a0acb", "7 | Chain : Polymesh", - "8 | Nonce : 2339", + "8 | Nonce : 1", "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1462, + "index": 1457, "name": "Contracts_Instantiate_old_weight", - "blob": "2e0233158139ae28a3dfaac5fe1560a5e9e05c621dba9f016101885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd8076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0200eadd12d301d8c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a670102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", - "7 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "6 | Salt [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "6 | Salt [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "6 | Salt [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "6 | Salt [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "6 | Salt [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "6 | Salt [7/7] : f857171a298bfe11b3e31658dbd1" ], "output_expert": [ "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "6 | Salt [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "6 | Salt [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "6 | Salt [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "6 | Salt [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "6 | Salt [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "6 | Salt [7/7] : f857171a298bfe11b3e31658dbd1", "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 50283", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1463, + "index": 1458, "name": "Contracts_Instantiate_old_weight", - "blob": "2e026d0fa9f50142214010885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a01026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead2562d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e020b63ce64c10c055d3d01d8c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e180b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5b7fda14dd9a5d7e06efd2e3d58d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 15722", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", - "7 | Tip : POLYX 5552342.355555" + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 3927", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "6 | Salt [2/2] : b7fda14dd9a5d7e06efd2e3d58", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 15722", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 3927", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "6 | Salt [2/2] : b7fda14dd9a5d7e06efd2e3d58", "7 | Chain : Polymesh", "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", + "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1464, + "index": 1459, "name": "Contracts_Instantiate_old_weight", - "blob": "2e020b63ce64c10c05980142214010885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a01013a1e2cb1372f71fc02a39a24021da06f49d5a1955b811da5ceb3a931dd07438af6771e92768ea5fd3a920652a0934267570a56c4b7db9ccaa14cbdae8e046aa60102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0200eadd12d301b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d80185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f080185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 38", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "5 | Data [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "5 | Data [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "5 | Data [4/4] : 4cbdae8e046aa6", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "7 | Tip : POLYX 5552342.355555" + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 38", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 3a1e2cb1372f71fc02a39a24021da06f49d5a1", - "5 | Data [2/4] : 955b811da5ceb3a931dd07438af6771e92768e", - "5 | Data [3/4] : a5fd3a920652a0934267570a56c4b7db9ccaa1", - "5 | Data [4/4] : 4cbdae8e046aa6", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 885307258", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "5 | Data [2/2] : ff01683ca1cca30187103897f0", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", + "8 | Nonce : 100", + "9 | Tip : POLYX 55.555555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1465, + "index": 1460, "name": "Contracts_Instantiate_old_weight", - "blob": "2e028ed73e0d621dba9f016101885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a01026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0203d202964994019eee1908c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f3140102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit : 37", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 669943640", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit : 37", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 0", + "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1466, + "index": 1461, "name": "Contracts_Upload_code", - "blob": "2e0301012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de101fc00d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e030102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acb01d801d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Upload code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", - "2 | Storage deposit limit : POLYX 0.000063", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 5552342.355555" + "1 | Code [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Code [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Code [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Code [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Code [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Code [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Code [7/7] : 46119a2df878e53f4a185c8a0acb", + "2 | Storage deposit limit : POLYX 0.000054", + "3 | Determinism : AllowIndeterminism", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Contracts : Upload code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", - "2 | Storage deposit limit : POLYX 0.000063", - "3 | Determinism : Deterministic", + "1 | Code [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "1 | Code [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "1 | Code [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "1 | Code [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "1 | Code [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "1 | Code [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "1 | Code [7/7] : 46119a2df878e53f4a185c8a0acb", + "2 | Storage deposit limit : POLYX 0.000054", + "3 | Determinism : AllowIndeterminism", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1467, + "index": 1462, "name": "Contracts_Upload_code", - "blob": "2e038076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57014221401001d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e030102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f31401d800d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Upload code", - "1 | Code [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "1 | Code [2/2] : b075fa8b1ff353f7f4446e9d57", - "2 | Storage deposit limit : POLYX 68.159568", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 5552342.355555" + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", + "2 | Storage deposit limit : POLYX 0.000054", + "3 | Determinism : Deterministic", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Upload code", - "1 | Code [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "1 | Code [2/2] : b075fa8b1ff353f7f4446e9d57", - "2 | Storage deposit limit : POLYX 68.159568", - "3 | Determinism : AllowIndeterminism", + "1 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "1 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "1 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "1 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "1 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "1 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "1 | Code [7/7] : 40b9bdecd583ad09e6740658f314", + "2 | Storage deposit limit : POLYX 0.000054", + "3 | Determinism : Deterministic", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1468, + "index": 1463, "name": "Contracts_Upload_code", - "blob": "2e0301026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a81401001610100d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0380185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f001b55b00d5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Upload code", - "1 | Code [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Code [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Code [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Code [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Code [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Code [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Code [7/7] : 295486a09d426dbe1db90a814010", - "2 | Storage deposit limit : POLYX 0.000088", + "1 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Code [2/2] : ff01683ca1cca30187103897f0", + "2 | Storage deposit limit : POLYX 0.005869", "3 | Determinism : Deterministic", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Upload code", - "1 | Code [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "1 | Code [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "1 | Code [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "1 | Code [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "1 | Code [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "1 | Code [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "1 | Code [7/7] : 295486a09d426dbe1db90a814010", - "2 | Storage deposit limit : POLYX 0.000088", + "1 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "1 | Code [2/2] : ff01683ca1cca30187103897f0", + "2 | Storage deposit limit : POLYX 0.005869", "3 | Determinism : Deterministic", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1469, + "index": 1464, "name": "Contracts_Upload_code", - "blob": "2e0301012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de101fc01d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e030101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef37011019eee190800d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Upload code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", - "2 | Storage deposit limit : POLYX 0.000063", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 1234.56789" + "1 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "1 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "1 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "1 | Code [4/4] : 29de0e3ef37011", + "2 | Storage deposit limit : POLYX 33.979303", + "3 | Determinism : Deterministic", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Upload code", - "1 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "1 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "1 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "1 | Code [4/4] : 230bed8fba7de1", - "2 | Storage deposit limit : POLYX 0.000063", - "3 | Determinism : AllowIndeterminism", + "1 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "1 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "1 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "1 | Code [4/4] : 29de0e3ef37011", + "2 | Storage deposit limit : POLYX 33.979303", + "3 | Determinism : Deterministic", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1470, + "index": 1465, "name": "Contracts_Upload_code", - "blob": "2e03801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03014221401001d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e030101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67019eee190800d503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Upload code", - "1 | Code [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Code [2/2] : 4c9287525258b51b22fc481e03", - "2 | Storage deposit limit : POLYX 68.159568", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 1234.56789" + "1 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Code [4/4] : 48bce232994a67", + "2 | Storage deposit limit : POLYX 33.979303", + "3 | Determinism : Deterministic", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Upload code", - "1 | Code [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "1 | Code [2/2] : 4c9287525258b51b22fc481e03", - "2 | Storage deposit limit : POLYX 68.159568", - "3 | Determinism : AllowIndeterminism", + "1 | Code [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "1 | Code [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "1 | Code [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "1 | Code [4/4] : 48bce232994a67", + "2 | Storage deposit limit : POLYX 33.979303", + "3 | Determinism : Deterministic", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1471, + "index": 1466, "name": "Contracts_Remove_code", - "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 55.555555" + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d" ], "output_expert": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1472, + "index": 1467, "name": "Contracts_Remove_code", - "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 1234.56789" + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1473, + "index": 1468, "name": "Contracts_Remove_code", - "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1474, + "index": 1469, "name": "Contracts_Remove_code", - "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1475, + "index": 1470, "name": "Contracts_Remove_code", - "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e04c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 55.555555" + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1476, + "index": 1471, "name": "Contracts_Set_code", - "blob": "2e050329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e05001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca0c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "3 | Tip : POLYX 0.000987" + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1477, + "index": 1472, "name": "Contracts_Set_code", - "blob": "2e0504efc69eb57bee12ce817edd57c3a641cdd2d9db9f885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e05001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca0c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "3 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1478, + "index": 1473, "name": "Contracts_Set_code", - "blob": "2e0500f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a7978885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0503e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Dest [2/2] : fWpNQcigCk", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "3 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Dest [2/2] : fWpNQcigCk", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1479, + "index": 1474, "name": "Contracts_Set_code", - "blob": "2e0504efc69eb57bee12ce817edd57c3a641cdd2d9db9f885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0503e7fa8d8af054b8f227638878ba6f66353e1cb44adba7b4672cd039b7d0954a3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Dest [1/2] : e7fa8d8af054b8f227638878ba6f66353e1cb4", + "1 | Dest [2/2] : 4adba7b4672cd039b7d0954a3d", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1480, + "index": 1475, "name": "Contracts_Set_code", - "blob": "2e0500f9ec730911d869d3efa5313fce13ff81079309a8c87a88a7fdfcd87ff74a7978885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e05001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca0c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Dest [2/2] : fWpNQcigCk", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Set code", - "1 | Dest [1/2] : 5HiQ29VYmhWAVuxxv9BxphNgo41LvZgxX2ba4x", - "1 | Dest [2/2] : fWpNQcigCk", - "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "2 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1481, + "index": 1476, "name": "Contracts_Call", - "blob": "2e0604efc69eb57bee12ce817edd57c3a641cdd2d9db9f00135538e412b597bce91349338e8af145f6270142214010801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e06001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca0005ed5e0deadc901b55b0101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Tip : POLYX 55.555555" + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Call", - "1 | Dest [1/2] : efc69eb57bee12ce817edd57c3a641cdd2d9db", - "1 | Dest [2/2] : 9f", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 68.159568", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", "6 | Chain : Polymesh", "7 | Nonce : 100", - "8 | Tip : POLYX 55.555555", + "8 | Tip : POLYX 5552342.355555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1482, + "index": 1477, "name": "Contracts_Call", - "blob": "2e060280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba903d2029649135538e412b597bce91349338e8af145f62701fc8076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e060280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2e33158139ae28a3dfaac5fe1560a5e9e05cedddcac7c37301b55b0101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "5 | Data [2/2] : b075fa8b1ff353f7f4446e9d57", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 14203", + "3 | Gas limit [2/2] : 485552626", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "5 | Data [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 14203", + "3 | Gas limit [2/2] : 485552626", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "7 | Nonce : 50283", + "8 | Tip : POLYX 0.000987", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1483, + "index": 1478, "name": "Contracts_Call", - "blob": "2e060329d38c9af69dd1e583390e6374c3720768a254dbabaa53bd6c4e9adf10d51d2f8ed73e0da1f8fa7b05d0016101801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e06001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca033158139ae28a3dfaac5fe1560a5e9e05cedddcac7c37301b55b0102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit [1/2] : 15912", - "3 | Gas limit [2/2] : 872505086", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 14203", + "3 | Gas limit [2/2] : 485552626", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Contracts : Call", - "1 | Dest [1/2] : 29d38c9af69dd1e583390e6374c3720768a254", - "1 | Dest [2/2] : dbabaa53bd6c4e9adf10d51d2f", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit [1/2] : 15912", - "3 | Gas limit [2/2] : 872505086", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 14203", + "3 | Gas limit [2/2] : 485552626", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "7 | Nonce : 50283", + "8 | Tip : POLYX 1234.56789", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1484, + "index": 1479, "name": "Contracts_Call", - "blob": "2e060280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba900135538e412b597bce91349338e8af145f62701610101012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e060280faf6a39c3500c06055240d5f9cd132dd133cbb2b0a1a9a9ca8fef7981d783f2e6d0f5ed5e0deadc901d80101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a67d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1" + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 0.000987", + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.000054", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 16842503510420633685", - "3 | Gas limit [2/2] : 2879565915464020809", - "4 | Storage deposit limit : POLYX 0.000088", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", + "1 | Dest [1/2] : faf6a39c3500c06055240d5f9cd132dd133cbb", + "1 | Dest [2/2] : 2b0a1a9a9ca8fef7981d783f2e", + "2 | Amount : POLYX 0.000987", + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.000054", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Nonce : 100", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1485, + "index": 1480, "name": "Contracts_Call", - "blob": "2e060280d4a8e3fb77c6d4434c081b0f01d0b644ec117f9fc5400e7ba73b697846a80ba96d0fa1f8fa7b05d001fc01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e06001d857c3e0cf2a9d3c09117961dcf23f0142a4c02434d9ce3099540b228f0fca003d20296495ed5e0deadc901b55b0102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit [1/2] : 15912", - "3 | Gas limit [2/2] : 872505086", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Tip : POLYX 55.555555" + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Call", - "1 | Dest [1/2] : d4a8e3fb77c6d4434c081b0f01d0b644ec117f", - "1 | Dest [2/2] : 9fc5400e7ba73b697846a80ba9", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit [1/2] : 15912", - "3 | Gas limit [2/2] : 872505086", - "4 | Storage deposit limit : POLYX 0.000063", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", + "1 | Dest [1/2] : 5CjQu7JCCqfi2tPgMyv66MBQjfAFNQmCDLM1Rb", + "1 | Dest [2/2] : LwPLKPGNUm", + "2 | Amount : POLYX 1234.56789", + "3 | Gas limit [1/2] : 934819159", + "3 | Gas limit [2/2] : 12907", + "4 | Storage deposit limit : POLYX 0.005869", + "5 | Data [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "5 | Data [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "5 | Data [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "5 | Data [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "5 | Data [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "5 | Data [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "5 | Data [7/7] : 46119a2df878e53f4a185c8a0acb", "6 | Chain : Polymesh", "7 | Nonce : 50283", - "8 | Tip : POLYX 55.555555", + "8 | Tip : POLYX 5552342.355555", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1486, + "index": 1481, "name": "Contracts_Instantiate_with_code", - "blob": "2e07000f0da5cef216be91ac01fc0101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad01026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a8140100102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e070b63ce64c10c055ed5e0deadc901d80102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acb0102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd10102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd" + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "4 | Code [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "4 | Code [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "4 | Code [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "4 | Code [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "4 | Code [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "4 | Code [7/7] : 46119a2df878e53f4a185c8a0acb", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "5 | Data [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "5 | Data [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "5 | Data [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "5 | Data [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "5 | Data [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "5 | Data [7/7] : 295486a09d426dbe1db90a814010", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "4 | Code [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "4 | Code [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "4 | Code [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "4 | Code [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "4 | Code [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "4 | Code [7/7] : 46119a2df878e53f4a185c8a0acb", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 50283", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1487, + "index": 1482, "name": "Contracts_Instantiate_with_code", - "blob": "2e0703d20296490f0da5cef216be91ac016101010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead25620101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad0102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0703d202964913458045125ace6a89135518ce23543ce88401b55b0101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e10102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd10102132e801d8e46c365392a9546a224ffcfd57f3a8e95159c5ac279728940d716f58b881e12c5029f339550f18bd95b16d524a4f69c13e9cd9947d3fc9e9bef030caee280f0dffe99f3f5eeccd447069540b32fb4fa5c2eb4119571f23dac9a3116b67e9d31fc9904c20d66d1a29815d492ca5e46119a2df878e53f4a185c8a0acbd50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code", "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "4 | Code [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "4 | Code [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "4 | Code [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "4 | Code [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "4 | Code [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "4 | Code [7/7] : 965dcb1349f7d283b3a94ead2562", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "4 | Code [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "4 | Code [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "4 | Code [4/4] : 5a2fde9cfbe9e1", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "6 | Salt [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "6 | Salt [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "6 | Salt [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "6 | Salt [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "6 | Salt [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "6 | Salt [7/7] : 46119a2df878e53f4a185c8a0acb", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Instantiate with code", "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "4 | Code [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "4 | Code [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "4 | Code [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "4 | Code [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "4 | Code [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "4 | Code [7/7] : 965dcb1349f7d283b3a94ead2562", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "4 | Code [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "4 | Code [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "4 | Code [4/4] : 5a2fde9cfbe9e1", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : 132e801d8e46c365392a9546a224ffcfd57f3a", + "6 | Salt [2/7] : 8e95159c5ac279728940d716f58b881e12c502", + "6 | Salt [3/7] : 9f339550f18bd95b16d524a4f69c13e9cd9947", + "6 | Salt [4/7] : d3fc9e9bef030caee280f0dffe99f3f5eeccd4", + "6 | Salt [5/7] : 47069540b32fb4fa5c2eb4119571f23dac9a31", + "6 | Salt [6/7] : 16b67e9d31fc9904c20d66d1a29815d492ca5e", + "6 | Salt [7/7] : 46119a2df878e53f4a185c8a0acb", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 100", + "9 | Tip : POLYX 55.555555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1488, + "index": 1483, "name": "Contracts_Instantiate_with_code", - "blob": "2e078ed73e0d0f0da5cef216be91ac014221401001012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de1801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e038076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e070b63ce64c10c055ed5e0deadc901b55b0101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef370110101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef370110101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "4 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "4 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "4 | Code [4/4] : 230bed8fba7de1", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57" + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "4 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "4 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "4 | Code [4/4] : 29de0e3ef37011", + "5 | Data [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "5 | Data [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "5 | Data [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "5 | Data [4/4] : 29de0e3ef37011", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "4 | Code [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "4 | Code [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "4 | Code [4/4] : 230bed8fba7de1", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "4 | Code [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "4 | Code [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "4 | Code [4/4] : 29de0e3ef37011", + "5 | Data [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "5 | Data [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "5 | Data [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "5 | Data [4/4] : 29de0e3ef37011", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1", "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 100", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1489, + "index": 1484, "name": "Contracts_Instantiate_with_code", - "blob": "2e070b63ce64c10c05135538e412b597bce91349338e8af145f62701422140100101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad0101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0703d2029649edddcac7c37301d80102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f3140101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a670101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef37011d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "4 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "4 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "4 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "4 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "4 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "4 | Code [7/7] : 40b9bdecd583ad09e6740658f314", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011" ], "output_expert": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "5 | Data [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "5 | Data [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "5 | Data [4/4] : 39f178dd5ac6ad", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "4 | Code [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "4 | Code [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "4 | Code [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "4 | Code [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "4 | Code [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "4 | Code [7/7] : 40b9bdecd583ad09e6740658f314", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 0", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1490, + "index": 1485, "name": "Contracts_Instantiate_with_code", - "blob": "2e078ed73e0d0f0da5cef216be91ac01fc0101c374d7aef568d718e3f21683208ee7827fc2f2f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed4dd775b5875a01be280a39a2f8ada3061d3aea39f178dd5ac6ad01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de10102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcddd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e070b63ce64c10c055ed5e0deadc9019eee190880185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f00101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e10102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd1d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "4 | Code [2/2] : ff01683ca1cca30187103897f0", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "6 | Salt [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "6 | Salt [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "6 | Salt [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "6 | Salt [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "6 | Salt [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "6 | Salt [7/7] : f857171a298bfe11b3e31658dbd1", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code [1/4] : c374d7aef568d718e3f21683208ee7827fc2f2", - "4 | Code [2/4] : f448a2d2e67e8fa4eeca61e1aec9db2ffff8ed", - "4 | Code [3/4] : 4dd775b5875a01be280a39a2f8ada3061d3aea", - "4 | Code [4/4] : 39f178dd5ac6ad", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Salt [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "6 | Salt [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "6 | Salt [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "6 | Salt [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "6 | Salt [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "6 | Salt [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "6 | Salt [7/7] : 13ad2e4f64c7f920ff464f47bcdd", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 33.979303", + "4 | Code [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "4 | Code [2/2] : ff01683ca1cca30187103897f0", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "6 | Salt [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "6 | Salt [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "6 | Salt [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "6 | Salt [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "6 | Salt [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "6 | Salt [7/7] : f857171a298bfe11b3e31658dbd1", "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1491, + "index": 1486, "name": "Contracts_Instantiate", - "blob": "2e086d0f0f0da5cef216be91ac016101885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead2562d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e080013458045125ace6a89135518ce23543ce88401b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d80b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5b7fda14dd9a5d7e06efd2e3d580101c21ec56846224c10fb9a026f1082cd28bf68930d73c77219f2fb24aa71c4d2e34b066d8ad5e5da45a498208268ed968601ad70d3f10f5f20a629de0e3ef37011d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", + "1 | Amount : POLYX 0.0", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "5 | Data [2/2] : b7fda14dd9a5d7e06efd2e3d58", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011", "7 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000088", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", + "1 | Amount : POLYX 0.0", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/2] : b0e6b8f3dd8e79abc46bf3909e56ea5021ebf5", + "5 | Data [2/2] : b7fda14dd9a5d7e06efd2e3d58", + "6 | Salt [1/4] : c21ec56846224c10fb9a026f1082cd28bf6893", + "6 | Salt [2/4] : 0d73c77219f2fb24aa71c4d2e34b066d8ad5e5", + "6 | Salt [3/4] : da45a498208268ed968601ad70d3f10f5f20a6", + "6 | Salt [4/4] : 29de0e3ef37011", "7 | Chain : Polymesh", - "8 | Nonce : 1", + "8 | Nonce : 100", "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1492, + "index": 1487, "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c050f0da5cef216be91ac0142214010885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a01012afc8b626de810487c5193a3b0a4149dfb7308a02b3ecca913ac21dc75deee2f6efdacc871be88f553e1f4507cc387463f34eacc40bed73bf0230bed8fba7de18076f6a0df2d83e006242961f627e7266bbc1c19b075fa8b1ff353f7f4446e9d57d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05c13458045125ace6a89135518ce23543ce88401d8c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e10101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 2afc8b626de810487c5193a3b0a4149dfb7308", - "5 | Data [2/4] : a02b3ecca913ac21dc75deee2f6efdacc871be", - "5 | Data [3/4] : 88f553e1f4507cc387463f34eacc40bed73bf0", - "5 | Data [4/4] : 230bed8fba7de1", - "6 | Salt [1/2] : 76f6a0df2d83e006242961f627e7266bbc1c19", - "6 | Salt [2/2] : b075fa8b1ff353f7f4446e9d57", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.000054", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "5 | Data [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "5 | Data [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "5 | Data [4/4] : 5a2fde9cfbe9e1", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 1", + "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1493, + "index": 1488, "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c050f0da5cef216be91ac0142214010885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e088ed73e0dedddcac7c37301b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f31480185dab145acb1a6879e85b97834a1033edddd1ff01683ca1cca30187103897f0d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "6 | Salt [2/2] : 4c9287525258b51b22fc481e03", + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "5 | Data [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "5 | Data [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "5 | Data [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "5 | Data [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "5 | Data [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "5 | Data [7/7] : 40b9bdecd583ad09e6740658f314", + "6 | Salt [1/2] : 185dab145acb1a6879e85b97834a1033edddd1", + "6 | Salt [2/2] : ff01683ca1cca30187103897f0", "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", + "8 | Nonce : 2339", + "9 | Tip : POLYX 55.555555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1494, + "index": 1489, "name": "Contracts_Instantiate", - "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05c0f0da5cef216be91ac01fc885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a801393199a04416f1acc5e97197044f3e87fabca4c9287525258b51b22fc481e03010220b0c65218726df007b48457dc8170708b7ece058f6da0593407eb6f9b989fa6491983a9bf984d4eee72e6e1781f9f2599905fb88af023a5914e89d26b0f211e31e2e794694e9edfae275de0f431822a2bfb8878510b2e2a45f2342dd0f60b87d643c60435279a841e749e0aa611f0cca55a965dcb1349f7d283b3a94ead2562d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e086d0fedddcac7c37301b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0102967b555dbff19f1107d7bc5c4c77d63e2ecf841912719339c8880cebd3c1a0f777b122a7960395fba0c5427358dfda2a07300fb6ab20656c9e221fab4107c11298b31622760ae400e9a2c27a57bbafc1a7a743d65c25fe68363bcf1e941eaa5a9c1a69b0716336a70fbaf913feb6ab96c880f857171a298bfe11b3e31658dbd10102e01ba8bff156abd704857ed2cbd7bd7285cdc2ad1f0f4c3eb908e8bf0075ba7ee7429a491f1050bb5497f0eb4788eceb5960c5cde417a6a4136ea86360e8d816d1c944fbd519a4f74b5726b1ac23ad3f14d3d10b1316f3acd7da94115739d752d31dba1cab92a909b57aad4c281a05eff61b40b9bdecd583ad09e6740658f314d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", - "7 | Tip : POLYX 1234.56789" + "1 | Amount : POLYX 0.000987", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314" ], "output_expert": [ "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000063", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/2] : 1393199a04416f1acc5e97197044f3e87fabca", - "5 | Data [2/2] : 4c9287525258b51b22fc481e03", - "6 | Salt [1/7] : 20b0c65218726df007b48457dc8170708b7ece", - "6 | Salt [2/7] : 058f6da0593407eb6f9b989fa6491983a9bf98", - "6 | Salt [3/7] : 4d4eee72e6e1781f9f2599905fb88af023a591", - "6 | Salt [4/7] : 4e89d26b0f211e31e2e794694e9edfae275de0", - "6 | Salt [5/7] : f431822a2bfb8878510b2e2a45f2342dd0f60b", - "6 | Salt [6/7] : 87d643c60435279a841e749e0aa611f0cca55a", - "6 | Salt [7/7] : 965dcb1349f7d283b3a94ead2562", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/7] : 967b555dbff19f1107d7bc5c4c77d63e2ecf84", + "5 | Data [2/7] : 1912719339c8880cebd3c1a0f777b122a79603", + "5 | Data [3/7] : 95fba0c5427358dfda2a07300fb6ab20656c9e", + "5 | Data [4/7] : 221fab4107c11298b31622760ae400e9a2c27a", + "5 | Data [5/7] : 57bbafc1a7a743d65c25fe68363bcf1e941eaa", + "5 | Data [6/7] : 5a9c1a69b0716336a70fbaf913feb6ab96c880", + "5 | Data [7/7] : f857171a298bfe11b3e31658dbd1", + "6 | Salt [1/7] : e01ba8bff156abd704857ed2cbd7bd7285cdc2", + "6 | Salt [2/7] : ad1f0f4c3eb908e8bf0075ba7ee7429a491f10", + "6 | Salt [3/7] : 50bb5497f0eb4788eceb5960c5cde417a6a413", + "6 | Salt [4/7] : 6ea86360e8d816d1c944fbd519a4f74b5726b1", + "6 | Salt [5/7] : ac23ad3f14d3d10b1316f3acd7da94115739d7", + "6 | Salt [6/7] : 52d31dba1cab92a909b57aad4c281a05eff61b", + "6 | Salt [7/7] : 40b9bdecd583ad09e6740658f314", "7 | Chain : Polymesh", "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1495, + "index": 1490, "name": "Contracts_Instantiate", - "blob": "2e0803d20296490f0da5cef216be91ac0142214010885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102c6048e330b100c13533bb3444218f2a659dcbd14e92b5260de5e0d9eb3e69022a2245d8e8253296a3878ca0c2dc885c619c93e35b87dc5f9dfbf7b2c8169a1b5d598379d16eadbdbc5e9c585e08ef8f72ae2e13780c6791a07226c50ce0245ddb5ba5cf2992be972d0c57e68757113bfef0513ad2e4f64c7f920ff464f47bcdd01026178195604d8c649c5f68c8f14a6297d7e9c71b2c67ff6296ffbc73a3845ef31a5849cf30e76402d43fc2ca1b5e67192f9a2b3af4767453c14443107e4c7534821be4c5510a835ddb4a7347e0bd54ade3d9ccb98792370950f6d929949c12b17c304c9eb916a7cf348a278bc12a664678d2c295486a09d426dbe1db90a814010d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2e088ed73e0d13458045125ace6a89135518ce23543ce88401b55bc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d0101520b356cbd3c86da3293c757c2d7d12f7bb618631c46d9aab27140fad576abc1b9ef97732db57ad5b7060af9990f499cae8b4709c298e32f5c48bce232994a670101cd33af9e6bfc66add616f36f36310443c293fd57e99336a609a3e94bfec6f29823a644341170fde912c5d4388a23acc1eaf50506100fdd08ff5a2fde9cfbe9e1d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "6 | Salt [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "6 | Salt [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "6 | Salt [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "6 | Salt [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "6 | Salt [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "6 | Salt [7/7] : 295486a09d426dbe1db90a814010", - "7 | Tip : POLYX 5552342.355555" + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1" ], "output_expert": [ "0 | Contracts : Instantiate", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 68.159568", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/7] : c6048e330b100c13533bb3444218f2a659dcbd", - "5 | Data [2/7] : 14e92b5260de5e0d9eb3e69022a2245d8e8253", - "5 | Data [3/7] : 296a3878ca0c2dc885c619c93e35b87dc5f9df", - "5 | Data [4/7] : bf7b2c8169a1b5d598379d16eadbdbc5e9c585", - "5 | Data [5/7] : e08ef8f72ae2e13780c6791a07226c50ce0245", - "5 | Data [6/7] : ddb5ba5cf2992be972d0c57e68757113bfef05", - "5 | Data [7/7] : 13ad2e4f64c7f920ff464f47bcdd", - "6 | Salt [1/7] : 6178195604d8c649c5f68c8f14a6297d7e9c71", - "6 | Salt [2/7] : b2c67ff6296ffbc73a3845ef31a5849cf30e76", - "6 | Salt [3/7] : 402d43fc2ca1b5e67192f9a2b3af4767453c14", - "6 | Salt [4/7] : 443107e4c7534821be4c5510a835ddb4a7347e", - "6 | Salt [5/7] : 0bd54ade3d9ccb98792370950f6d929949c12b", - "6 | Salt [6/7] : 17c304c9eb916a7cf348a278bc12a664678d2c", - "6 | Salt [7/7] : 295486a09d426dbe1db90a814010", + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.005869", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 520b356cbd3c86da3293c757c2d7d12f7bb618", + "5 | Data [2/4] : 631c46d9aab27140fad576abc1b9ef97732db5", + "5 | Data [3/4] : 7ad5b7060af9990f499cae8b4709c298e32f5c", + "5 | Data [4/4] : 48bce232994a67", + "6 | Salt [1/4] : cd33af9e6bfc66add616f36f36310443c293fd", + "6 | Salt [2/4] : 57e99336a609a3e94bfec6f29823a644341170", + "6 | Salt [3/4] : fde912c5d4388a23acc1eaf50506100fdd08ff", + "6 | Salt [4/4] : 5a2fde9cfbe9e1", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 2339", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1496, + "index": 1491, "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f62701e3b54f03000000000000000000000000100d0c1323100d0c1323100e2a0c49000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f00a9698bb58f31528289cbe66c452b62feedddcac7c3730100000000000000000000000000000000100e2a0c49100d0c132310200b200b0104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code [1/4] : 14", + "4 | Code [2/4] : 42", + "4 | Code [3/4] : 12", + "4 | Code [4/4] : 73", "5 | Data [1/4] : 13", "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/11] : These", + "7 | Perms [2/11] : AssetID-12345678", + "7 | Perms [3/11] : These", + "7 | Perms [4/11] : 0", + "7 | Perms [5/11] : These", + "7 | Perms [6/11] : DispatchABC", + "7 | Perms [7/11] : DispatchXYZ", + "7 | Perms [8/11] : These", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", + "7 | Perms [11/11] : 123456", "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code [1/4] : 14", + "4 | Code [2/4] : 42", + "4 | Code [3/4] : 12", + "4 | Code [4/4] : 73", "5 | Data [1/4] : 13", "5 | Data [2/4] : 12", "5 | Data [3/4] : 19", "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/11] : These", + "7 | Perms [2/11] : AssetID-12345678", + "7 | Perms [3/11] : These", + "7 | Perms [4/11] : 0", + "7 | Perms [5/11] : These", + "7 | Perms [6/11] : DispatchABC", + "7 | Perms [7/11] : DispatchXYZ", + "7 | Perms [8/11] : These", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", + "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", "9 | Nonce : 100", "10 | Tip : POLYX 5552342.355555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1497, + "index": 1492, "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001e3b54f03000000000000000000000000100c293435100c293435100c293435000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f00a9698bb58f31528289cbe66c452b62fe5ed5e0deadc901db030000000000000000000000000000100c293435100c293435100d0c1323000000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 12", "4 | Code [2/4] : 41", "4 | Code [3/4] : 52", @@ -41495,10 +41404,10 @@ "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", "7 | Perms [1/3] : Whole", "7 | Perms [2/3] : Whole", "7 | Perms [3/3] : Whole", @@ -41506,11 +41415,11 @@ ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 12", "4 | Code [2/4] : 41", "4 | Code [3/4] : 52", @@ -41519,10 +41428,10 @@ "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", "7 | Perms [1/3] : Whole", "7 | Perms [2/3] : Whole", "7 | Perms [3/3] : Whole", @@ -41531,104 +41440,88 @@ "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1498, + "index": 1493, "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f6270100000000000000000000000000000000100d0c132310200b200b100c2934350104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f00a9698bb58f31528289cbe66c452b62fe13458045125ace6a89135518ce23543ce88401db030000000000000000000000000000100d0c1323100d0c1323100e2a0c49000000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 13", "4 | Code [2/4] : 12", "4 | Code [3/4] : 19", "4 | Code [4/4] : 35", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/11] : These", - "7 | Perms [2/11] : AssetID-12345678", - "7 | Perms [3/11] : These", - "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", - "7 | Perms [6/11] : DispatchABC", - "7 | Perms [7/11] : DispatchXYZ", - "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456", - "8 | Tip : POLYX 0.000987" + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 13", "4 | Code [2/4] : 12", "4 | Code [3/4] : 19", "4 | Code [4/4] : 35", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/11] : These", - "7 | Perms [2/11] : AssetID-12345678", - "7 | Perms [3/11] : These", - "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", - "7 | Perms [6/11] : DispatchABC", - "7 | Perms [7/11] : DispatchXYZ", - "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", "8 | Chain : Polymesh", "9 | Nonce : 2339", - "10 | Tip : POLYX 0.000987", + "10 | Tip : POLYX 55.555555", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1499, + "index": 1494, "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00e9f2fb1c9c0e574344ad0ce218e5c53d0f0da5cef216be91ac0100000000000000000000000000000000100e2a0c49100e2a0c4910200b200b0104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f00a9698bb58f31528289cbe66c452b62fe13458045125ace6a89135518ce23543ce8840100000000000000000000000000000000100e2a0c4910200b200b10200b200b0104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 14", "4 | Code [2/4] : 42", "4 | Code [3/4] : 12", "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", @@ -41637,29 +41530,30 @@ "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456" + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", + "7 | Perms [11/11] : 123456", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 14", "4 | Code [2/4] : 42", "4 | Code [3/4] : 12", "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", @@ -41668,192 +41562,119 @@ "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", - "7 | Perms [6/11] : DispatchABC", - "7 | Perms [7/11] : DispatchXYZ", - "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1500, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001158139ae28a3dfaac5fe1560a5e9e05c100c293435100c293435100e2a0c490104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/11] : These", - "7 | Perms [2/11] : AssetID-12345678", - "7 | Perms [3/11] : These", - "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", - "7 | Perms [6/11] : DispatchABC", - "7 | Perms [7/11] : DispatchXYZ", - "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456", - "8 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/11] : These", - "7 | Perms [2/11] : AssetID-12345678", - "7 | Perms [3/11] : These", - "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", - "9 | Nonce : 100", + "9 | Nonce : 1", "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1501, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001e3b54f03000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100d0c13230104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "index": 1495, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00a9698bb58f31528289cbe66c452b62feedddcac7c37301db030000000000000000000000000000100d0c1323100e2a0c49100c2934350104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", + "9 | Nonce : 100", + "10 | Tip : POLYX 1234.56789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1502, + "index": 1496, "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d00163ce64c10c0500000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100d0c1323000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f01a9698bb58f31528289cbe66c452b62fe13458045125ace6a89135518ce23543ce88401158139ae28a3dfaac5fe1560a5e9e05cc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c49100e2a0c49000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", "7 | Perms [1/3] : Whole", "7 | Perms [2/3] : Whole", "7 | Perms [3/3] : Whole", @@ -41861,50 +41682,51 @@ ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", "7 | Perms [1/3] : Whole", "7 | Perms [2/3] : Whole", "7 | Perms [3/3] : Whole", "8 | Chain : Polymesh", - "9 | Nonce : 1", + "9 | Nonce : 2339", "10 | Tip : POLYX 0.000987", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1503, + "index": 1497, "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001db030000000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c4910200b200b0104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f01a9698bb58f31528289cbe66c452b62feedddcac7c37301d2029649000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d10200b200b10200b200b0104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", @@ -41913,28 +41735,27 @@ "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456", - "8 | Tip : POLYX 55.555555" + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", + "7 | Perms [11/11] : 123456" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", @@ -41943,385 +41764,423 @@ "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 100", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1504, + "index": 1498, "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f62701d2029649000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100c2934350104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f01a9698bb58f31528289cbe66c452b62feedddcac7c37301d2029649000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c49100c293435000000d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", "6 | Salt [1/4] : 12", "6 | Salt [2/4] : 41", "6 | Salt [3/4] : 52", "6 | Salt [4/4] : 53", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1499, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01a9698bb58f31528289cbe66c452b62fe13458045125ace6a89135518ce23543ce8840100000000000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c49100e2a0c490104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", - "7 | Perms [11/11] : 123456" + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", + "7 | Perms [11/11] : 123456", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Nonce : 0", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1505, + "index": 1500, "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f62701d2029649000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a10200b200b100c2934350104417373657449442d31323334353637380104043002082c44697370617463684142432c446973706174636858595a010468cdd543060a9625476646005dc56843ebb77346efcdd1d0900b7c2adab0291e0140e2010000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f01a9698bb58f31528289cbe66c452b62fe5ed5e0deadc90163ce64c10c0500000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100d0c1323100d0c13230104417373657449442d31323334353637380104043001082c44697370617463684142432c446973706174636858595a0104551dabfad1e32d08344310b6b5c999e3256bf8981eaacf330b25f053be7870930140e2010000000000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", - "8 | Tip : POLYX 0.000987" + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", "7 | Perms [1/11] : These", "7 | Perms [2/11] : AssetID-12345678", "7 | Perms [3/11] : These", "7 | Perms [4/11] : 0", - "7 | Perms [5/11] : Except", + "7 | Perms [5/11] : These", "7 | Perms [6/11] : DispatchABC", "7 | Perms [7/11] : DispatchXYZ", "7 | Perms [8/11] : These", - "7 | Perms [9/11] : 68cdd543060a9625476646005dc56843ebb773", - "7 | Perms [10/11] : 46efcdd1d0900b7c2adab0291e", + "7 | Perms [9/11] : 551dabfad1e32d08344310b6b5c999e3256bf8", + "7 | Perms [10/11] : 981eaacf330b25f053be787093", "7 | Perms [11/11] : 123456", "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 0.000987", + "9 | Nonce : 50283", + "10 | Tip : POLYX 1234.56789", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "13 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "13 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1506, + "index": 1501, "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208d00701b66300d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f0200d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 208", - "1 | Updates [2/6] : 7", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 182", - "1 | Updates [5/6] : 99", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 55.555555" + "1 | Updates : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 208", - "1 | Updates [2/6] : 7", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 182", - "1 | Updates [5/6] : 99", - "1 | Updates [6/6] : False", + "1 | Updates : ", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1507, + "index": 1502, "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208d00701b66300d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f0200d503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 208", - "1 | Updates [2/6] : 7", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 182", - "1 | Updates [5/6] : 99", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 5552342.355555" + "1 | Updates : ", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 208", - "1 | Updates [2/6] : 7", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 182", - "1 | Updates [5/6] : 99", - "1 | Updates [6/6] : False", + "1 | Updates : ", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1508, + "index": 1503, "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f020cd02d0074ae01266f00d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f020c9eee00b69f01d29b00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 208", - "1 | Updates [2/9] : 45", + "1 | Updates [1/9] : 158", + "1 | Updates [2/9] : 238", "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 116", - "1 | Updates [5/9] : 174", + "1 | Updates [4/9] : 182", + "1 | Updates [5/9] : 159", "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 38", - "1 | Updates [8/9] : 111", + "1 | Updates [7/9] : 210", + "1 | Updates [8/9] : 155", "1 | Updates [9/9] : False", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 208", - "1 | Updates [2/9] : 45", + "1 | Updates [1/9] : 158", + "1 | Updates [2/9] : 238", "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 116", - "1 | Updates [5/9] : 174", + "1 | Updates [4/9] : 182", + "1 | Updates [5/9] : 159", "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 38", - "1 | Updates [8/9] : 111", + "1 | Updates [7/9] : 210", + "1 | Updates [8/9] : 155", "1 | Updates [9/9] : False", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1509, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0200d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates : ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1510, + "index": 1504, "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f020cd02d0074ae01266f00d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f020c9eee00b69f01d29b00d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 208", - "1 | Updates [2/9] : 45", + "1 | Updates [1/9] : 158", + "1 | Updates [2/9] : 238", "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 116", - "1 | Updates [5/9] : 174", + "1 | Updates [4/9] : 182", + "1 | Updates [5/9] : 159", "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 38", - "1 | Updates [8/9] : 111", - "1 | Updates [9/9] : False", - "2 | Tip : POLYX 55.555555" + "1 | Updates [7/9] : 210", + "1 | Updates [8/9] : 155", + "1 | Updates [9/9] : False" ], "output_expert": [ "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 208", - "1 | Updates [2/9] : 45", + "1 | Updates [1/9] : 158", + "1 | Updates [2/9] : 238", "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 116", - "1 | Updates [5/9] : 174", + "1 | Updates [4/9] : 182", + "1 | Updates [5/9] : 159", "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 38", - "1 | Updates [8/9] : 111", + "1 | Updates [7/9] : 210", + "1 | Updates [8/9] : 155", "1 | Updates [9/9] : False", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1505, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f0200d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1511, + "index": 1506, "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001db030000000000000000000000000000100d0c1323100c293435100d0c1323d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f03a9698bb58f31528289cbe66c452b62fe5ed5e0deadc901158139ae28a3dfaac5fe1560a5e9e05c100c293435100d0c1323100e2a0c49d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Tip : POLYX 5552342.355555" + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", "7 | Chain : Polymesh", "8 | Nonce : 2339", - "9 | Tip : POLYX 5552342.355555", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1512, + "index": 1507, "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03e9f2fb1c9c0e574344ad0ce218e5c53d0f0da5cef216be91ac01db030000000000000000000000000000100d0c132310200b200b100e2a0c49d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f03a9698bb58f31528289cbe66c452b62feedddcac7c3730100000000000000000000000000000000100d0c132310200b200b10200b200bd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000987", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 13", "4 | Code [2/4] : 12", "4 | Code [3/4] : 19", @@ -42330,19 +42189,19 @@ "5 | Data [2/4] : 11", "5 | Data [3/4] : 32", "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 0.000987", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 13", "4 | Code [2/4] : 12", "4 | Code [3/4] : 19", @@ -42351,240 +42210,291 @@ "5 | Data [2/4] : 11", "5 | Data [3/4] : 32", "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", "7 | Chain : Polymesh", - "8 | Nonce : 1", + "8 | Nonce : 2339", "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1513, + "index": 1508, "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f6270100000000000000000000000000000000100c293435100e2a0c49100e2a0c49d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f03a9698bb58f31528289cbe66c452b62feedddcac7c37301e3b54f0300000000000000000000000010200b200b100c293435100e2a0c49d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", "6 | Salt [1/4] : 14", "6 | Salt [2/4] : 42", "6 | Salt [3/4] : 12", "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 55.555555" + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", "6 | Salt [1/4] : 14", "6 | Salt [2/4] : 42", "6 | Salt [3/4] : 12", "6 | Salt [4/4] : 73", "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", + "8 | Nonce : 50283", + "9 | Tip : POLYX 1234.56789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1514, + "index": 1509, "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f6270100000000000000000000000000000000100e2a0c49100c293435100e2a0c49d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f03a9698bb58f31528289cbe66c452b62feedddcac7c3730163ce64c10c0500000000000000000000100d0c132310200b200b100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Chain : Polymesh", "8 | Nonce : 100", "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1515, + "index": 1510, "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001e3b54f03000000000000000000000000100c293435100c293435100e2a0c49d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f03a9698bb58f31528289cbe66c452b62fe13458045125ace6a89135518ce23543ce88401d202964900000000000000000000000010200b200b100c29343510200b200bd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 0.000987" + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 9901953616976379973", + "2 | Gas limit [2/2] : 9576970939678988373", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1511, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04a9698bb58f31528289cbe66c452b62feedddcac7c37301db030000000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100d0c1323100c293435d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 0.000987", + "8 | Nonce : 100", + "9 | Tip : POLYX 55.555555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1516, + "index": 1512, "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04e9f2fb1c9c0e574344ad0ce218e5c53d0f0da5cef216be91ac01e3b54f03000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c29343510200b200bd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f04a9698bb58f31528289cbe66c452b62fe5ed5e0deadc901db030000000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c4910200b200bd5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11" + "6 | Salt [4/4] : 11", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1517, + "index": 1513, "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04e9f2fb1c9c0e574344ad0ce218e5c53da1f8fa7b05d001e3b54f03000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c49100c293435d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f04a9698bb58f31528289cbe66c452b62feedddcac7c37301e3b54f03000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c49100c293435d5030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -42592,17 +42502,18 @@ "6 | Salt [1/4] : 12", "6 | Salt [2/4] : 41", "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53" + "6 | Salt [4/4] : 53", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 15912", - "2 | Gas limit [2/2] : 872505086", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -42613,74 +42524,73 @@ "6 | Salt [4/4] : 53", "7 | Chain : Polymesh", "8 | Nonce : 0", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1518, + "index": 1514, "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04e9f2fb1c9c0e574344ad0ce218e5c53d135538e412b597bce91349338e8af145f6270100000000000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100e2a0c49d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f04a9698bb58f31528289cbe66c452b62fe5ed5e0deadc90100000000000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100c293435100c293435d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 0.000987" + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 16842503510420633685", - "2 | Gas limit [2/2] : 2879565915464020809", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 934819159", + "2 | Gas limit [2/2] : 12907", "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Nonce : 100", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "11 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1519, + "index": 1515, "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04e9f2fb1c9c0e574344ad0ce218e5c53d0f0da5cef216be91ac0163ce64c10c0500000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c49100d0c1323d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f04a9698bb58f31528289cbe66c452b62feedddcac7c37301e3b54f03000000000000000000000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d100e2a0c49100d0c1323d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -42689,17 +42599,18 @@ "6 | Salt [2/4] : 12", "6 | Salt [3/4] : 19", "6 | Salt [4/4] : 35", - "7 | Tip : POLYX 55.555555" + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Endowment [1/2] : POLYX 33813363366556461050743772107277", + "1 | Endowment [2/2] : 1.492265", + "2 | Gas limit [1/2] : 14203", + "2 | Gas limit [2/2] : 485552626", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "4 | Code hash [2/2] : 7893b408f4aaf403258e352e3d", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -42710,219 +42621,173 @@ "6 | Salt [4/4] : 35", "7 | Chain : Polymesh", "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1520, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04e9f2fb1c9c0e574344ad0ce218e5c53d0f0da5cef216be91ac01158139ae28a3dfaac5fe1560a5e9e05c885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100e2a0c49d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 82110436867245303422915782349504", - "1 | Endowment [2/2] : .115433", - "2 | Gas limit [1/2] : 41022877395232013", - "2 | Gas limit [2/2] : 43", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "12 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "12 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1521, + "index": 1516, "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f0517273a2a81706b20a130aa9df917d3197646cb890d6b4350957c67defc9d87f21932702002646e9ac97d25f03c59bc50d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f05dd6df87f30314e83f0c194e78c12b9bb474e914db456de5cb46b9a977a2097d4fafa06aa63b3c472c13edb1e316a4510d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 543912065", - "1 | Api [2/2] : 17273a2a", - "2 | Next upgrade [1/4] : 2645176481", - "2 | Next upgrade [2/4] : 433264633", - "2 | Next upgrade [3/4] : 7646cb890d6b4350957c67defc9d87f2193270", - "2 | Next upgrade [4/4] : 2002646e9ac97d25f03c59bc50", - "3 | Tip : POLYX 1234.56789" + "1 | Api [1/2] : 2202939696", + "1 | Api [2/2] : dd6df87f", + "2 | Next upgrade [1/4] : 3885285872", + "2 | Next upgrade [2/4] : 3149468300", + "2 | Next upgrade [3/4] : 474e914db456de5cb46b9a977a2097d4fafa06", + "2 | Next upgrade [4/4] : aa63b3c472c13edb1e316a4510", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 543912065", - "1 | Api [2/2] : 17273a2a", - "2 | Next upgrade [1/4] : 2645176481", - "2 | Next upgrade [2/4] : 433264633", - "2 | Next upgrade [3/4] : 7646cb890d6b4350957c67defc9d87f2193270", - "2 | Next upgrade [4/4] : 2002646e9ac97d25f03c59bc50", + "1 | Api [1/2] : 2202939696", + "1 | Api [2/2] : dd6df87f", + "2 | Next upgrade [1/4] : 3885285872", + "2 | Next upgrade [2/4] : 3149468300", + "2 | Next upgrade [3/4] : 474e914db456de5cb46b9a977a2097d4fafa06", + "2 | Next upgrade [4/4] : aa63b3c472c13edb1e316a4510", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1522, + "index": 1517, "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f056ab7ff76a7486050ad14a51092c5f85da72ac773e1a33d71eb868c8b3a82166144eabe7f55963807a35c70a5a9e5cc11d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f05dd6df87f30314e83a73d53e4a63ba81dddac8596c5f7daef959439a2eb280e374bb7540036cc325dbff4e0c6a529c37cd503ae1103008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1348487335", - "1 | Api [2/2] : 6ab7ff76", - "2 | Next upgrade [1/4] : 279254189", - "2 | Next upgrade [2/4] : 1576584594", - "2 | Next upgrade [3/4] : a72ac773e1a33d71eb868c8b3a82166144eabe", - "2 | Next upgrade [4/4] : 7f55963807a35c70a5a9e5cc11", + "1 | Api [1/2] : 2202939696", + "1 | Api [2/2] : dd6df87f", + "2 | Next upgrade [1/4] : 3830660519", + "2 | Next upgrade [2/4] : 497564582", + "2 | Next upgrade [3/4] : ddac8596c5f7daef959439a2eb280e374bb754", + "2 | Next upgrade [4/4] : 0036cc325dbff4e0c6a529c37c", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1348487335", - "1 | Api [2/2] : 6ab7ff76", - "2 | Next upgrade [1/4] : 279254189", - "2 | Next upgrade [2/4] : 1576584594", - "2 | Next upgrade [3/4] : a72ac773e1a33d71eb868c8b3a82166144eabe", - "2 | Next upgrade [4/4] : 7f55963807a35c70a5a9e5cc11", + "1 | Api [1/2] : 2202939696", + "1 | Api [2/2] : dd6df87f", + "2 | Next upgrade [1/4] : 3830660519", + "2 | Next upgrade [2/4] : 497564582", + "2 | Next upgrade [3/4] : ddac8596c5f7daef959439a2eb280e374bb754", + "2 | Next upgrade [4/4] : 0036cc325dbff4e0c6a529c37c", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1523, + "index": 1518, "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05736abe3f63ef17087a268e696a97b383d925b825aeb7914117b4124b8b3aee6ea6863df4b1caf6d72ab5742f605b95a6d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f059bf938b1e3dbddf2eeca3629fddf088f05046ca786060add3e7ec205542d230ff85eaefae891c41f677217905df71f8fd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 135786339", - "1 | Api [2/2] : 736abe3f", - "2 | Next upgrade [1/4] : 1770923642", - "2 | Next upgrade [2/4] : 2209585002", - "2 | Next upgrade [3/4] : d925b825aeb7914117b4124b8b3aee6ea6863d", - "2 | Next upgrade [4/4] : f4b1caf6d72ab5742f605b95a6", - "3 | Tip : POLYX 1234.56789" + "1 | Api [1/2] : 4074626019", + "1 | Api [2/2] : 9bf938b1", + "2 | Next upgrade [1/4] : 691456750", + "2 | Next upgrade [2/4] : 2399723517", + "2 | Next upgrade [3/4] : 05046ca786060add3e7ec205542d230ff85eae", + "2 | Next upgrade [4/4] : fae891c41f677217905df71f8f" ], "output_expert": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 135786339", - "1 | Api [2/2] : 736abe3f", - "2 | Next upgrade [1/4] : 1770923642", - "2 | Next upgrade [2/4] : 2209585002", - "2 | Next upgrade [3/4] : d925b825aeb7914117b4124b8b3aee6ea6863d", - "2 | Next upgrade [4/4] : f4b1caf6d72ab5742f605b95a6", + "1 | Api [1/2] : 4074626019", + "1 | Api [2/2] : 9bf938b1", + "2 | Next upgrade [1/4] : 691456750", + "2 | Next upgrade [2/4] : 2399723517", + "2 | Next upgrade [3/4] : 05046ca786060add3e7ec205542d230ff85eae", + "2 | Next upgrade [4/4] : fae891c41f677217905df71f8f", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1524, + "index": 1519, "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f0517273a2a81706b200b833c7b7c5f6011968b398000cc13eb129e888a9e7df2f8f241cffae6105b47d5f2fe5174539d4ad5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f059bf938b1e3dbddf21f604fbc6e9f11780e3d4ff6ab649b275889c8ba5abc671d24870f29af781ceb6956d5512a930630d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 543912065", - "1 | Api [2/2] : 17273a2a", - "2 | Next upgrade [1/4] : 2067563275", - "2 | Next upgrade [2/4] : 291528572", - "2 | Next upgrade [3/4] : 968b398000cc13eb129e888a9e7df2f8f241cf", - "2 | Next upgrade [4/4] : fae6105b47d5f2fe5174539d4a" + "1 | Api [1/2] : 4074626019", + "1 | Api [2/2] : 9bf938b1", + "2 | Next upgrade [1/4] : 3159318559", + "2 | Next upgrade [2/4] : 2014420846", + "2 | Next upgrade [3/4] : 0e3d4ff6ab649b275889c8ba5abc671d24870f", + "2 | Next upgrade [4/4] : 29af781ceb6956d5512a930630", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 543912065", - "1 | Api [2/2] : 17273a2a", - "2 | Next upgrade [1/4] : 2067563275", - "2 | Next upgrade [2/4] : 291528572", - "2 | Next upgrade [3/4] : 968b398000cc13eb129e888a9e7df2f8f241cf", - "2 | Next upgrade [4/4] : fae6105b47d5f2fe5174539d4a", + "1 | Api [1/2] : 4074626019", + "1 | Api [2/2] : 9bf938b1", + "2 | Next upgrade [1/4] : 3159318559", + "2 | Next upgrade [2/4] : 2014420846", + "2 | Next upgrade [3/4] : 0e3d4ff6ab649b275889c8ba5abc671d24870f", + "2 | Next upgrade [4/4] : 29af781ceb6956d5512a930630", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1525, + "index": 1520, "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f056ab7ff76a7486050d5aeb46dc98d2e7be77fdd037e33c93354812d1c1199d0ae8500ae2746b2835d4b058c47ac236737d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "2f05ae2a8636fa7420fee95623b84db31b6cd7a90797ac38163aba405b7c919b09cc804ae8da5f0bfd300829c55493ede5c1d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1348487335", - "1 | Api [2/2] : 6ab7ff76", - "2 | Next upgrade [1/4] : 1840557781", - "2 | Next upgrade [2/4] : 2066648521", - "2 | Next upgrade [3/4] : e77fdd037e33c93354812d1c1199d0ae8500ae", - "2 | Next upgrade [4/4] : 2746b2835d4b058c47ac236737", - "3 | Tip : POLYX 0.000987" + "1 | Api [1/2] : 4263539962", + "1 | Api [2/2] : ae2a8636", + "2 | Next upgrade [1/4] : 3089323753", + "2 | Next upgrade [2/4] : 1813754701", + "2 | Next upgrade [3/4] : d7a90797ac38163aba405b7c919b09cc804ae8", + "2 | Next upgrade [4/4] : da5f0bfd300829c55493ede5c1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1348487335", - "1 | Api [2/2] : 6ab7ff76", - "2 | Next upgrade [1/4] : 1840557781", - "2 | Next upgrade [2/4] : 2066648521", - "2 | Next upgrade [3/4] : e77fdd037e33c93354812d1c1199d0ae8500ae", - "2 | Next upgrade [4/4] : 2746b2835d4b058c47ac236737", + "1 | Api [1/2] : 4263539962", + "1 | Api [2/2] : ae2a8636", + "2 | Next upgrade [1/4] : 3089323753", + "2 | Next upgrade [2/4] : 1813754701", + "2 | Next upgrade [3/4] : d7a90797ac38163aba405b7c919b09cc804ae8", + "2 | Next upgrade [4/4] : da5f0bfd300829c55493ede5c1", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1526, + "index": 1521, "name": "Preimage_Note_preimage", - "blob": "3000100e2a0c49d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3000100e2a0c49d50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Note preimage", "1 | Bytes [1/4] : 14", @@ -42938,52 +42803,52 @@ "1 | Bytes [3/4] : 12", "1 | Bytes [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1527, + "index": 1522, "name": "Preimage_Note_preimage", - "blob": "3000100c293435d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3000100e2a0c49d50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "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 : POLYX 1234.56789" + "1 | Bytes [1/4] : 14", + "1 | Bytes [2/4] : 42", + "1 | Bytes [3/4] : 12", + "1 | Bytes [4/4] : 73", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 12", - "1 | Bytes [2/4] : 41", - "1 | Bytes [3/4] : 52", - "1 | Bytes [4/4] : 53", + "1 | Bytes [1/4] : 14", + "1 | Bytes [2/4] : 42", + "1 | Bytes [3/4] : 12", + "1 | Bytes [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1528, + "index": 1523, "name": "Preimage_Note_preimage", - "blob": "3000100e2a0c49d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3000100e2a0c49d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Note preimage", "1 | Bytes [1/4] : 14", "1 | Bytes [2/4] : 42", "1 | Bytes [3/4] : 12", "1 | Bytes [4/4] : 73", - "2 | Tip : POLYX 1234.56789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Preimage : Note preimage", @@ -42992,6212 +42857,6212 @@ "1 | Bytes [3/4] : 12", "1 | Bytes [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1529, + "index": 1524, "name": "Preimage_Note_preimage", - "blob": "3000100e2a0c49d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "300010200b200bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 14", - "1 | Bytes [2/4] : 42", - "1 | Bytes [3/4] : 12", - "1 | Bytes [4/4] : 73", - "2 | Tip : POLYX 5552342.355555" + "1 | Bytes [1/4] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", + "2 | Tip : POLYX 55.555555" ], "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] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1530, + "index": 1525, "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3000100c293435d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip : POLYX 55.555555" + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1531, + "index": 1526, "name": "Preimage_Unnote_preimage", - "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3001c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 5552342.355555" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d" ], "output_expert": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1532, + "index": 1527, "name": "Preimage_Unnote_preimage", - "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3001c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 5552342.355555" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1533, + "index": 1528, "name": "Preimage_Unnote_preimage", - "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3001c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1534, + "index": 1529, "name": "Preimage_Unnote_preimage", - "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3001c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d240b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 55.555555" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1535, + "index": 1530, "name": "Preimage_Unnote_preimage", - "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3001c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 0.000987" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1536, + "index": 1531, "name": "Preimage_Request_preimage", - "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3002c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1537, + "index": 1532, "name": "Preimage_Request_preimage", - "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3002c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d" ], "output_expert": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1538, + "index": 1533, "name": "Preimage_Request_preimage", - "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3002c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1539, + "index": 1534, "name": "Preimage_Request_preimage", - "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3002c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 0.000987" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1540, + "index": 1535, "name": "Preimage_Request_preimage", - "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3002c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1541, + "index": 1536, "name": "Preimage_Unrequest_preimage", - "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3003c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1542, + "index": 1537, "name": "Preimage_Unrequest_preimage", - "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3003c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503048ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1543, + "index": 1538, "name": "Preimage_Unrequest_preimage", - "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3003c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1544, + "index": 1539, "name": "Preimage_Unrequest_preimage", - "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3003c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503008ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", - "2 | Tip : POLYX 0.000987" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1545, + "index": 1540, "name": "Preimage_Unrequest_preimage", - "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3003c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dd503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "1 | Hash [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "1 | Hash [2/2] : 7893b408f4aaf403258e352e3d", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1546, + "index": 1541, "name": "Nft_Create_nft_collection", - "blob": "310001417373657449442d313233343536373801000400a8a39a613f57fab8d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "310001417373657449442d31323334353637380004012e17cef1adaf565fd5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : 13329061976888484776" + "2 | Nft type : None", + "3 | Collection keys : 6869871443221288750" ], "output_expert": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : 13329061976888484776", + "2 | Nft type : None", + "3 | Collection keys : 6869871443221288750", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1547, + "index": 1542, "name": "Nft_Create_nft_collection", - "blob": "310001417373657449442d313233343536373801000400a8a39a613f57fab8d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "310001417373657449442d31323334353637380103fd26b96504012e17cef1adaf565fd503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : 13329061976888484776", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Nft type [1/2] : Custom", + "2 | Nft type [2/2] : 1706632957", + "3 | Collection keys : 6869871443221288750", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : 13329061976888484776", + "2 | Nft type [1/2] : Custom", + "2 | Nft type [2/2] : 1706632957", + "3 | Collection keys : 6869871443221288750", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1548, + "index": 1543, "name": "Nft_Create_nft_collection", - "blob": "310001417373657449442d3132333435363738010000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "310001417373657449442d3132333435363738010204012e17cef1adaf565fd5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : ", - "4 | Tip : POLYX 0.000987" + "2 | Nft type : Invoice", + "3 | Collection keys : 6869871443221288750", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type : Derivative", - "3 | Collection keys : ", + "2 | Nft type : Invoice", + "3 | Collection keys : 6869871443221288750", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1549, + "index": 1544, "name": "Nft_Create_nft_collection", - "blob": "310001417373657449442d313233343536373801038ce59c7008013867807527ab4aa50035208df3dcc23f9cd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "310001417373657449442d31323334353637380101040069893c2d049655b1d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 1889330572", - "3 | Collection keys [1/2] : 11910520350498121528", - "3 | Collection keys [2/2] : 11258931847684235317", - "4 | Tip : POLYX 55.555555" + "2 | Nft type : FixedIncome", + "3 | Collection keys : 12778284462416628073", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 1889330572", - "3 | Collection keys [1/2] : 11910520350498121528", - "3 | Collection keys [2/2] : 11258931847684235317", + "2 | Nft type : FixedIncome", + "3 | Collection keys : 12778284462416628073", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1550, + "index": 1545, "name": "Nft_Create_nft_collection", - "blob": "310001417373657449442d3132333435363738010208013867807527ab4aa50035208df3dcc23f9cd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "310001417373657449442d3132333435363738010200d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", "2 | Nft type : Invoice", - "3 | Collection keys [1/2] : 11910520350498121528", - "3 | Collection keys [2/2] : 11258931847684235317" + "3 | Collection keys : " ], "output_expert": [ "0 | Nft : Create nft collection", "1 | Asset id : AssetID-12345678", "2 | Nft type : Invoice", - "3 | Collection keys [1/2] : 11910520350498121528", - "3 | Collection keys [2/2] : 11258931847684235317", + "3 | Collection keys : ", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1551, + "index": 1546, "name": "Nft_Issue_nft", - "blob": "3101417373657449442d31323334353637380001b79e78fe04de0000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3101417373657449442d3132333435363738080057c214ac79a42f1c8061dc51be9c279e4cc04f5dff8d430de41c7b799bf25276d027a1a49de33b341101c3824174ec0d99d2806c8780cd1842290af560a3884aa9329b49673d9214a1caaef747279d52698c91019b4ce248e4d40000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 244113030553271", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 234076940422299", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 244113030553271", + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1552, + "index": 1547, "name": "Nft_Issue_nft", - "blob": "3101417373657449442d31323334353637380001b79e78fe04de0000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3101417373657449442d3132333435363738080057c214ac79a42f1c8061dc51be9c279e4cc04f5dff8d430de41c7b799bf25276d027a1a49de33b341101c3824174ec0d99d2806c8780cd1842290af560a3884aa9329b49673d9214a1caaef747279d52698c9100d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 244113030553271", + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : Default", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 244113030553271", + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : Default", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1553, + "index": 1548, "name": "Nft_Issue_nft", - "blob": "3101417373657449442d31323334353637380001ef5ddf3c8a830000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3101417373657449442d3132333435363738080057c214ac79a42f1c8061dc51be9c279e4cc04f5dff8d430de41c7b799bf25276d027a1a49de33b341101c3824174ec0d99d2806c8780cd1842290af560a3884aa9329b49673d9214a1caaef747279d52698c91017281fb6873410000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 144629749997039", - "4 | Tip : POLYX 1234.56789" + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 71963938357618", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 144629749997039", + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 71963938357618", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1554, + "index": 1549, "name": "Nft_Issue_nft", - "blob": "3101417373657449442d31323334353637380800d80fb3c6bb6843bc0101f69df773a6ced55c263df2b6c4345d52c7a9b92cda1f4470cfcd12131f9745cee6f957a6ccb73965fd4e240b2ea547faec4ebdc1c5d1ee153e100b605b7ea9ab0179690f035c10d7c101015ea9eba6f441f9e305271e6fb85ef85dd92759dcb61a0da500ea61baf1c50fde096d03669fb631f8f20830f1a8638792e0bbc2657a74ae9ab998dfd49230b5de01b79e78fe04de0000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3101417373657449442d3132333435363738080057c214ac79a42f1c8061dc51be9c279e4cc04f5dff8d430de41c7b799bf25276d027a1a49de33b341101c3824174ec0d99d2806c8780cd1842290af560a3884aa9329b49673d9214a1caaef747279d52698c91019b4ce248e4d40000d5038d2400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes [1/10] : 13565801658271862744", - "2 | Nft metadata attributes [2/10] : f69df773a6ced55c263df2b6c4345d52c7a9b9", - "2 | Nft metadata attributes [3/10] : 2cda1f4470cfcd12131f9745cee6f957a6ccb7", - "2 | Nft metadata attributes [4/10] : 3965fd4e240b2ea547faec4ebdc1c5d1ee153e", - "2 | Nft metadata attributes [5/10] : 100b605b7ea9ab", - "2 | Nft metadata attributes [6/10] : 13967650756687260025", - "2 | Nft metadata attributes [7/10] : 5ea9eba6f441f9e305271e6fb85ef85dd92759", - "2 | Nft metadata attributes [8/10] : dcb61a0da500ea61baf1c50fde096d03669fb6", - "2 | Nft metadata attributes [9/10] : 31f8f20830f1a8638792e0bbc2657a74ae9ab9", - "2 | Nft metadata attributes [10/10] : 98dfd49230b5de", - "3 | Portfolio kind : 244113030553271" + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 234076940422299" ], "output_expert": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes [1/10] : 13565801658271862744", - "2 | Nft metadata attributes [2/10] : f69df773a6ced55c263df2b6c4345d52c7a9b9", - "2 | Nft metadata attributes [3/10] : 2cda1f4470cfcd12131f9745cee6f957a6ccb7", - "2 | Nft metadata attributes [4/10] : 3965fd4e240b2ea547faec4ebdc1c5d1ee153e", - "2 | Nft metadata attributes [5/10] : 100b605b7ea9ab", - "2 | Nft metadata attributes [6/10] : 13967650756687260025", - "2 | Nft metadata attributes [7/10] : 5ea9eba6f441f9e305271e6fb85ef85dd92759", - "2 | Nft metadata attributes [8/10] : dcb61a0da500ea61baf1c50fde096d03669fb6", - "2 | Nft metadata attributes [9/10] : 31f8f20830f1a8638792e0bbc2657a74ae9ab9", - "2 | Nft metadata attributes [10/10] : 98dfd49230b5de", - "3 | Portfolio kind : 244113030553271", + "2 | Nft metadata attributes [1/6] : 2031022799452422743", + "2 | Nft metadata attributes [2/6] : 61dc51be9c279e4cc04f5dff8d430de41c7b79", + "2 | Nft metadata attributes [3/6] : 9bf25276d027a1a49de33b3411", + "2 | Nft metadata attributes [4/6] : 15175175728615490243", + "2 | Nft metadata attributes [5/6] : 6c8780cd1842290af560a3884aa9329b49673d", + "2 | Nft metadata attributes [6/6] : 9214a1caaef747279d52698c91", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1555, + "index": 1550, "name": "Nft_Issue_nft", - "blob": "3101417373657449442d31323334353637380800d80fb3c6bb6843bc0101f69df773a6ced55c263df2b6c4345d52c7a9b92cda1f4470cfcd12131f9745cee6f957a6ccb73965fd4e240b2ea547faec4ebdc1c5d1ee153e100b605b7ea9ab0179690f035c10d7c101015ea9eba6f441f9e305271e6fb85ef85dd92759dcb61a0da500ea61baf1c50fde096d03669fb631f8f20830f1a8638792e0bbc2657a74ae9ab998dfd49230b5de011a0a4b6350bc0000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3101417373657449442d313233343536373800019b4ce248e4d40000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes [1/10] : 13565801658271862744", - "2 | Nft metadata attributes [2/10] : f69df773a6ced55c263df2b6c4345d52c7a9b9", - "2 | Nft metadata attributes [3/10] : 2cda1f4470cfcd12131f9745cee6f957a6ccb7", - "2 | Nft metadata attributes [4/10] : 3965fd4e240b2ea547faec4ebdc1c5d1ee153e", - "2 | Nft metadata attributes [5/10] : 100b605b7ea9ab", - "2 | Nft metadata attributes [6/10] : 13967650756687260025", - "2 | Nft metadata attributes [7/10] : 5ea9eba6f441f9e305271e6fb85ef85dd92759", - "2 | Nft metadata attributes [8/10] : dcb61a0da500ea61baf1c50fde096d03669fb6", - "2 | Nft metadata attributes [9/10] : 31f8f20830f1a8638792e0bbc2657a74ae9ab9", - "2 | Nft metadata attributes [10/10] : 98dfd49230b5de", - "3 | Portfolio kind : 207053449267738", - "4 | Tip : POLYX 55.555555" + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 234076940422299", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Nft : Issue nft", "1 | Asset id : AssetID-12345678", - "2 | Nft metadata attributes [1/10] : 13565801658271862744", - "2 | Nft metadata attributes [2/10] : f69df773a6ced55c263df2b6c4345d52c7a9b9", - "2 | Nft metadata attributes [3/10] : 2cda1f4470cfcd12131f9745cee6f957a6ccb7", - "2 | Nft metadata attributes [4/10] : 3965fd4e240b2ea547faec4ebdc1c5d1ee153e", - "2 | Nft metadata attributes [5/10] : 100b605b7ea9ab", - "2 | Nft metadata attributes [6/10] : 13967650756687260025", - "2 | Nft metadata attributes [7/10] : 5ea9eba6f441f9e305271e6fb85ef85dd92759", - "2 | Nft metadata attributes [8/10] : dcb61a0da500ea61baf1c50fde096d03669fb6", - "2 | Nft metadata attributes [9/10] : 31f8f20830f1a8638792e0bbc2657a74ae9ab9", - "2 | Nft metadata attributes [10/10] : 98dfd49230b5de", - "3 | Portfolio kind : 207053449267738", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1556, + "index": 1551, "name": "Nft_Redeem_nft", - "blob": "3102417373657449442d3132333435363738b4834b1948128c4601b79e78fe04de0000017bd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3102417373657449442d3132333435363738023152808daca9f9016f90935aa3760000017bd5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 5083458180265771956", - "3 | Portfolio kind : 244113030553271", + "2 | Nft id : 17990099910251393282", + "3 | Portfolio kind : 130443971367023", "4 | Number of keys : 123", - "5 | Tip : POLYX 0.000987" + "5 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 5083458180265771956", - "3 | Portfolio kind : 244113030553271", + "2 | Nft id : 17990099910251393282", + "3 | Portfolio kind : 130443971367023", "4 | Number of keys : 123", "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", + "6 | Nonce : 2339", + "7 | Tip : POLYX 55.555555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1557, + "index": 1552, "name": "Nft_Redeem_nft", - "blob": "3102417373657449442d3132333435363738414d470f074b097b00017bd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3102417373657449442d313233343536373802ff1a851ddd8b72019b4ce248e4d40000017bd503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 8865699835148717377", - "3 | Portfolio kind : Default", - "4 | Number of keys : 123" + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 234076940422299", + "4 | Number of keys : 123", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 8865699835148717377", - "3 | Portfolio kind : Default", + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 234076940422299", "4 | Number of keys : 123", "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "6 | Nonce : 50283", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1558, + "index": 1553, "name": "Nft_Redeem_nft", - "blob": "3102417373657449442d3132333435363738236da416faa8afcb00017bd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3102417373657449442d313233343536373802ff1a851ddd8b72016f90935aa3760000017bd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 14677135502698900771", - "3 | Portfolio kind : Default", - "4 | Number of keys : 123", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 130443971367023", + "4 | Number of keys : 123" ], "output_expert": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 14677135502698900771", - "3 | Portfolio kind : Default", + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 130443971367023", "4 | Number of keys : 123", "5 | Chain : Polymesh", "6 | Nonce : 1", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1559, + "index": 1554, "name": "Nft_Redeem_nft", - "blob": "3102417373657449442d3132333435363738414d470f074b097b011a0a4b6350bc0000017bd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3102417373657449442d313233343536373802ff1a851ddd8b72019b4ce248e4d40000017bd503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 8865699835148717377", - "3 | Portfolio kind : 207053449267738", + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 234076940422299", "4 | Number of keys : 123", "5 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 8865699835148717377", - "3 | Portfolio kind : 207053449267738", + "2 | Nft id : 8253933860943494914", + "3 | Portfolio kind : 234076940422299", "4 | Number of keys : 123", "5 | Chain : Polymesh", - "6 | Nonce : 50283", + "6 | Nonce : 0", "7 | Tip : POLYX 0.000987", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "10 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "10 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1560, + "index": 1555, "name": "Nft_Redeem_nft", - "blob": "3102417373657449442d3132333435363738b4834b1948128c4601b79e78fe04de0000017bd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3102417373657449442d3132333435363738023152808daca9f9019b4ce248e4d40000017bd503ae11030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 5083458180265771956", - "3 | Portfolio kind : 244113030553271", - "4 | Number of keys : 123", - "5 | Tip : POLYX 1234.56789" + "2 | Nft id : 17990099910251393282", + "3 | Portfolio kind : 234076940422299", + "4 | Number of keys : 123" ], "output_expert": [ "0 | Nft : Redeem nft", "1 | Asset id : AssetID-12345678", - "2 | Nft id : 5083458180265771956", - "3 | Portfolio kind : 244113030553271", + "2 | Nft id : 17990099910251393282", + "3 | Portfolio kind : 234076940422299", "4 | Number of keys : 123", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" - ] - }, - { - "index": 1561, - "name": "Nft_Controller_transfer", - "blob": "3103417373657449442d31323334353637380c1b3b531bb7e21cf97ac446e8fc2269e3073aebf4924b480ad163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000011a0a4b6350bc0000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", - "output": [ - "0 | Nft : Controller transfer", - "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 17950471490857286427", - "1 | Nfts [3/4] : 16386667188788315258", - "1 | Nfts [4/4] : 740925233248811527", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 207053449267738", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 17950471490857286427", - "1 | Nfts [3/4] : 16386667188788315258", - "1 | Nfts [4/4] : 740925233248811527", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", - "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 207053449267738", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "6 | Nonce : 50283", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1562, + "index": 1556, "name": "Nft_Controller_transfer", - "blob": "3103417373657449442d31323334353637380c1b3b531bb7e21cf97ac446e8fc2269e3073aebf4924b480ad163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000001b79e78fe04de0000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3103417373657449442d31323334353637380c61d3fae6cced68994663b5f223a1360d4dc5ff87cc0750d6c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e201000000000000d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Controller transfer", "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 17950471490857286427", - "1 | Nfts [3/4] : 16386667188788315258", - "1 | Nfts [4/4] : 740925233248811527", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/4] : 11054346749685191521", + "1 | Nfts [3/4] : 952125547003339590", + "1 | Nfts [4/4] : 15442851697289839949", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 244113030553271", - "4 | Tip : POLYX 5552342.355555" + "3 | Callers portfolio kind : Default", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Nft : Controller transfer", "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 17950471490857286427", - "1 | Nfts [3/4] : 16386667188788315258", - "1 | Nfts [4/4] : 740925233248811527", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/4] : 11054346749685191521", + "1 | Nfts [3/4] : 952125547003339590", + "1 | Nfts [4/4] : 15442851697289839949", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 244113030553271", + "3 | Callers portfolio kind : Default", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1563, + "index": 1557, "name": "Nft_Controller_transfer", - "blob": "3103417373657449442d31323334353637380c91e008919aade0d92d55225ac347498a3cf1e6546819215fd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e2010000000000011a0a4b6350bc0000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3103417373657449442d313233343536373804bcec43f8c6f57d42c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000019b4ce248e4d40000d503ae11030003d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Controller transfer", - "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 15699739180383395985", - "1 | Nfts [3/4] : 9964574554890327341", - "1 | Nfts [4/4] : 6854788043726319932", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 4791255813509606588", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 207053449267738", + "3 | Callers portfolio kind : 234076940422299", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Nft : Controller transfer", - "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 15699739180383395985", - "1 | Nfts [3/4] : 9964574554890327341", - "1 | Nfts [4/4] : 6854788043726319932", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 4791255813509606588", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 207053449267738", + "3 | Callers portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 50283", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1564, + "index": 1558, "name": "Nft_Controller_transfer", - "blob": "3103417373657449442d31323334353637380c91e008919aade0d92d55225ac347498a3cf1e6546819215fd163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3103417373657449442d31323334353637380c1ac80e40e25f271f938df3f91219c970fec9a54776292bafc292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000019b4ce248e4d40000d503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Controller transfer", "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 15699739180383395985", - "1 | Nfts [3/4] : 9964574554890327341", - "1 | Nfts [4/4] : 6854788043726319932", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/4] : 2244868364609439770", + "1 | Nfts [3/4] : 8127054571860364691", + "1 | Nfts [4/4] : 12622227968620874238", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : Default" + "3 | Callers portfolio kind : 234076940422299", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Nft : Controller transfer", "1 | Nfts [1/4] : AssetID-12345678", - "1 | Nfts [2/4] : 15699739180383395985", - "1 | Nfts [3/4] : 9964574554890327341", - "1 | Nfts [4/4] : 6854788043726319932", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/4] : 2244868364609439770", + "1 | Nfts [3/4] : 8127054571860364691", + "1 | Nfts [4/4] : 12622227968620874238", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : Default", + "3 | Callers portfolio kind : 234076940422299", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1565, + "index": 1559, "name": "Nft_Controller_transfer", - "blob": "3103417373657449442d313233343536373804ce281b6278cacc52d163cd7a7e2ed2f36e38040ce16416bb0ba11d1d656813d5dd322d0ea2ed2d980140e201000000000001ef5ddf3c8a830000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3103417373657449442d313233343536373804bcec43f8c6f57d42c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e201000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Nft : Controller transfer", "1 | Nfts [1/2] : AssetID-12345678", - "1 | Nfts [2/2] : 5966366224749897934", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/2] : 4791255813509606588", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 144629749997039", + "3 | Callers portfolio kind : Default", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Nft : Controller transfer", "1 | Nfts [1/2] : AssetID-12345678", - "1 | Nfts [2/2] : 5966366224749897934", - "2 | Source portfolio [1/3] : d163cd7a7e2ed2f36e38040ce16416bb0ba11d", - "2 | Source portfolio [2/3] : 1d656813d5dd322d0ea2ed2d98", + "1 | Nfts [2/2] : 4791255813509606588", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", "2 | Source portfolio [3/3] : 123456", - "3 | Callers portfolio kind : 144629749997039", + "3 | Callers portfolio kind : Default", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "9 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "9 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1566, + "index": 1560, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d31323334353637380c61d3fae6cced68994663b5f223a1360d4dc5ff87cc0750d6c292d1ad64627cbb4193c52c3791e02b58f89b82e9460bc258f6e8121af313b80140e2010000000000019b4ce248e4d40000d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", + "output": [ + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 11054346749685191521", + "1 | Nfts [3/4] : 952125547003339590", + "1 | Nfts [4/4] : 15442851697289839949", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 234076940422299" + ], + "output_expert": [ + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 11054346749685191521", + "1 | Nfts [3/4] : 952125547003339590", + "1 | Nfts [4/4] : 15442851697289839949", + "2 | Source portfolio [1/3] : c292d1ad64627cbb4193c52c3791e02b58f89b", + "2 | Source portfolio [2/3] : 82e9460bc258f6e8121af313b8", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 234076940422299", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" + ] + }, + { + "index": 1561, "name": "Electionprovidermultiphase_Submit_unsigned", - "blob": "320004cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b590185391012103d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32000448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edc91012103d5038d2403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1567, + "index": 1562, "name": "Electionprovidermultiphase_Submit_unsigned", - "blob": "320004cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b590185391012103d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32000448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edc91012103d5030000c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1568, + "index": 1563, "name": "Electionprovidermultiphase_Submit_unsigned", - "blob": "320004cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b590185391012103d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32000448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edc91012103d5030403d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", - "2 | Witness [2/2] : 200" + "2 | Witness [2/2] : 200", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1569, + "index": 1564, "name": "Electionprovidermultiphase_Submit_unsigned", - "blob": "320004cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b590185391012103d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32000448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edc91012103d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", - "3 | Tip : POLYX 5552342.355555" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1570, + "index": 1565, "name": "Electionprovidermultiphase_Submit_unsigned", - "blob": "320004cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b590185391012103d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32000448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edc91012103d503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit unsigned", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Witness [1/2] : 100", "2 | Witness [2/2] : 200", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1571, + "index": 1566, "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", - "blob": "3201017f0459081ccff6f4ac8d37254ea81825e7bb5c97bdfaa23def22bd65013a72f1c5e5e950c9dff92947443e31f0f705a6d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32010190f4eddbe4d4cb01421072d314ab3bbdc2cd70e30543f2cbc2fbd80c1bed31c972f489e7bf50143b4c0b129150978cf6d50391018ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661" + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1572, + "index": 1567, "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", - "blob": "3201017f0459081ccff6f4ac8d37254ea81825e7bb5c97bdfaa23def22bd65013a72f1c5e5e950c9dff92947443e31f0f705a6d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32010190f4eddbe4d4cb01421072d314ab3bbdc2cd70e30543f2cbc2fbd80c1bed31c972f489e7bf50143b4c0b129150978cf6d5030433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", - "2 | Tip : POLYX 5552342.355555" + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1573, + "index": 1568, "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", - "blob": "3201017f0459081ccff6f4ac8d37254ea81825e7bb5c97bdfaa23def22bd65013a72f1c5e5e950c9dff92947443e31f0f705a6d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32010190f4eddbe4d4cb01421072d314ab3bbdc2cd70e30543f2cbc2fbd80c1bed31c972f489e7bf50143b4c0b129150978cf6d503910100c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", - "2 | Tip : POLYX 0.000987" + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058" ], "output_expert": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1574, + "index": 1569, "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", - "blob": "3201017f0459081ccff6f4ac8d37254ea81825e7bb5c97bdfaa23def22bd65013a72f1c5e5e950c9dff92947443e31f0f705a6d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32010190f4eddbe4d4cb01421072d314ab3bbdc2cd70e30543f2cbc2fbd80c1bed31c972f489e7bf50143b4c0b129150978cf6d503046d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1575, + "index": 1570, "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", - "blob": "3201017f0459081ccff6f4ac8d37254ea81825e7bb5c97bdfaa23def22bd65013a72f1c5e5e950c9dff92947443e31f0f705a6d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32010190f4eddbe4d4cb01421072d314ab3bbdc2cd70e30543f2cbc2fbd80c1bed31c972f489e7bf50143b4c0b129150978cf6d5038d246d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", - "2 | Tip : POLYX 1234.56789" + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Set minimum untrusted score", - "1 | Maybe next score [1/6] : POLYX 49309464604774918081409309531193", - "1 | Maybe next score [2/6] : .279615", - "1 | Maybe next score [3/6] : POLYX 32093704531650950797615556055769", - "1 | Maybe next score [4/6] : 1.059175", - "1 | Maybe next score [5/6] : POLYX 22068283756975985574193673633589", - "1 | Maybe next score [6/6] : 2.702661", + "1 | Maybe next score [1/6] : POLYX 25153390666004736092105022362697", + "1 | Maybe next score [2/6] : 4.786704", + "1 | Maybe next score [3/6] : POLYX 26743405877304888734073513749439", + "1 | Maybe next score [4/6] : 1.115202", + "1 | Maybe next score [5/6] : POLYX 32772007755028447358680090562470", + "1 | Maybe next score [6/6] : 2.547058", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1576, + "index": 1571, "name": "Electionprovidermultiphase_Set_emergency_election_result", - "blob": "320204b55fc284499fd75012f4d8befe6e3ee9efe546c8f3c0b5206c392e7e504673e5188d9a7dffe33cdbc290d5110f1d361904373a8eaaf32e911b0aef6c7e4b20eb21c870bfffcf9fe088dd6cf4b6769ee4fd33ea56c638932bc91d3195f100c21c18d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32020457d41df4be0ced109f1b1c0e4774bcf440bc7081543adf371ec1c7077edcd3c864a67a15f96b468503347a83ff75f93b0443da9c88450e12178e9c68923d76535f9be9fe4d553bc94786b7b34f4353343bbf8361e8e266cabede7fab53bdb326bed503000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", - "2 | Tip : POLYX 1234.56789" + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1577, + "index": 1572, "name": "Electionprovidermultiphase_Set_emergency_election_result", - "blob": "320204b55fc284499fd75012f4d8befe6e3ee9efe546c8f3c0b5206c392e7e504673e5188d9a7dffe33cdbc290d5110f1d361904373a8eaaf32e911b0aef6c7e4b20eb21c870bfffcf9fe088dd6cf4b6769ee4fd33ea56c638932bc91d3195f100c21c18d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32020457d41df4be0ced109f1b1c0e4774bcf440bc7081543adf371ec1c7077edcd3c864a67a15f96b468503347a83ff75f93b0443da9c88450e12178e9c68923d76535f9be9fe4d553bc94786b7b34f4353343bbf8361e8e266cabede7fab53bdb326bed503910103d2029649c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", - "2 | Tip : POLYX 5552342.355555" + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1578, + "index": 1573, "name": "Electionprovidermultiphase_Set_emergency_election_result", - "blob": "320204b55fc284499fd75012f4d8befe6e3ee9efe546c8f3c0b5206c392e7e504673e5188d9a7dffe33cdbc290d5110f1d361904373a8eaaf32e911b0aef6c7e4b20eb21c870bfffcf9fe088dd6cf4b6769ee4fd33ea56c638932bc91d3195f100c21c18d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32020457d41df4be0ced109f1b1c0e4774bcf440bc7081543adf371ec1c7077edcd3c864a67a15f96b468503347a83ff75f93b0443da9c88450e12178e9c68923d76535f9be9fe4d553bc94786b7b34f4353343bbf8361e8e266cabede7fab53bdb326bed503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", - "2 | Tip : POLYX 0.000987" + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1579, + "index": 1574, "name": "Electionprovidermultiphase_Set_emergency_election_result", - "blob": "320204b55fc284499fd75012f4d8befe6e3ee9efe546c8f3c0b5206c392e7e504673e5188d9a7dffe33cdbc290d5110f1d361904373a8eaaf32e911b0aef6c7e4b20eb21c870bfffcf9fe088dd6cf4b6769ee4fd33ea56c638932bc91d3195f100c21c18d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32020457d41df4be0ced109f1b1c0e4774bcf440bc7081543adf371ec1c7077edcd3c864a67a15f96b468503347a83ff75f93b0443da9c88450e12178e9c68923d76535f9be9fe4d553bc94786b7b34f4353343bbf8361e8e266cabede7fab53bdb326bed50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1580, + "index": 1575, "name": "Electionprovidermultiphase_Set_emergency_election_result", - "blob": "320204b55fc284499fd75012f4d8befe6e3ee9efe546c8f3c0b5206c392e7e504673e5188d9a7dffe33cdbc290d5110f1d361904373a8eaaf32e911b0aef6c7e4b20eb21c870bfffcf9fe088dd6cf4b6769ee4fd33ea56c638932bc91d3195f100c21c18d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32020457d41df4be0ced109f1b1c0e4774bcf440bc7081543adf371ec1c7077edcd3c864a67a15f96b468503347a83ff75f93b0443da9c88450e12178e9c68923d76535f9be9fe4d553bc94786b7b34f4353343bbf8361e8e266cabede7fab53bdb326bed503ae1103006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5" + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Set emergency election result", - "1 | Supports [1/8] : 5GAWyGNbm57qzdLGwLuRMsx3Mkew4Y3c21t524", - "1 | Supports [2/8] : VYFEgANMiM", - "1 | Supports [3/8] : 33511673308804151108723599672702.83189", + "1 | Supports [1/8] : 5E3s2z9PD1BQZXJs4frZxPm6r9nR7C85BYD8SF", + "1 | Supports [2/8] : BPPK2pfT7j", + "1 | Supports [3/8] : 79719726954880547828264410502529.72195", "1 | Supports [4/8] : 6", - "1 | Supports [5/8] : 5DK7tLewRfgUiqPaTKe6LUYvpB3XT1iqpCHctx", - "1 | Supports [6/8] : 3EJbuVT72J", - "1 | Supports [7/8] : 32050791073106313806828290868268.95211", - "1 | Supports [8/8] : 5", + "1 | Supports [5/8] : 5Dbg1LTqmisg8ntHnRHmrTo2bHkMAwQm6HvVUR", + "1 | Supports [6/8] : 4Wb8dS9BSY", + "1 | Supports [7/8] : 252754272031094694126367357090306.0325", + "1 | Supports [8/8] : 75", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1581, + "index": 1576, "name": "Electionprovidermultiphase_Submit", - "blob": "320304cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b5901853d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32030448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edcd5030400c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", - "2 | Tip : POLYX 55.555555" + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "6 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1582, + "index": 1577, "name": "Electionprovidermultiphase_Submit", - "blob": "320304cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b5901853d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32030448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edcd50391016d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", - "2 | Tip : POLYX 55.555555" + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1583, + "index": 1578, "name": "Electionprovidermultiphase_Submit", - "blob": "320304cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b5901853d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32030448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edcd50391010b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1584, + "index": 1579, "name": "Electionprovidermultiphase_Submit", - "blob": "320304cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b5901853d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32030448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edcd5030033158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1585, + "index": 1580, "name": "Electionprovidermultiphase_Submit", - "blob": "320304cadba50224048c30c901d9cf04d80000995f8502a93004012340000000ad1405cbb000040020e0603c51418064008c00210204d2926d8498f0f51155113cfdd8dc00e800c4d55a5901000435eb00ed15cd030000d9019d02383d0180404c000000f8e40458904188000089022d0551033101006d029d369464d400900024000434913838f9174000156a00d1d6400084005902f1f000d4a901745c7901957c0489a28d01007000a468f5cc2d4e7800c871028dcb00982103300000155499bc00e156041aa2c0008d02a59889b2007000000015025d01d9ea000c609503003da1000028a103019e0000d50100049d334c218b84190f00f503c400d14e0000505c000000004d3c00a80014053ac58f9c4901c8a0c0044ea2be9f990348ed01150345380038007d0174d9c408e400d44d6aa103a5b0b501000000cd0130cc81aa69749d2e5d1811270009e2f11f4ef0a9e28566fe7680b18aceaec1cabededb74bd1485202d38a658006f0ada985f25f4a3768abf291edffa19b5901853d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32030448353004f63873254c005d71046accbc9900910a00ac5d0104b6a878b800e1688c00005d1124000406503d0075f755bc79f100c103ddf039bd000000f40424c501f4e0b19fdca164b81854f5d48000f80004fa8159af0070cc002c1c0d03b4d902610300007c0000900004b5d10000e53948295000d9f5ad0300d0c4006502002946e943b861d6ed8604320ca3ed3000405103692f00c10295709503002901ede500000000995e7922b165d898043e3e99b200ad1b71c300d4a102319c3cb800c11748750300788102c598f101f1cb000089017d02048d6fc58429f9380018d90300005980c400006c006c75029902fd029091aea516c949452a780c00040dce00b99a041173d4750100fd02002ca400293321edd16e00042de80004a10200cd3800842c51012102dc049c9173000051ad9c1c9d95543835030089d859011dd115010000e13285e2cdc800d102f0e1a300c1f2001000000029a1600559d8f797a29e36b66f621ba206a9d5b340aa514a39b2ba9ffceb48c2460d81c659ace3bda161fd5972518c6835fe4edcd503040b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", - "2 | Tip : POLYX 0.000987" + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Submit", - "1 | Raw solution [1/228] : 11106034", - "1 | Raw solution [2/228] : 9", - "1 | Raw solution [3/228] : 35", - "1 | Raw solution [4/228] : 12", - "1 | Raw solution [5/228] : 114", - "1 | Raw solution [6/228] : 13302", - "1 | Raw solution [7/228] : 54", + "1 | Raw solution [1/228] : 18", + "1 | Raw solution [2/228] : 3085", + "1 | Raw solution [3/228] : 157077053", + "1 | Raw solution [4/228] : 19", + "1 | Raw solution [5/228] : 0", + "1 | Raw solution [6/228] : 7255", + "1 | Raw solution [7/228] : 644821786", "1 | Raw solution [8/228] : 0", - "1 | Raw solution [9/228] : 0", - "1 | Raw solution [10/228] : 6118", - "1 | Raw solution [11/228] : 161", - "1 | Raw solution [12/228] : 3114", - "1 | Raw solution [13/228] : 2240", - "1 | Raw solution [14/228] : 16", - "1 | Raw solution [15/228] : 0", - "1 | Raw solution [16/228] : 0", + "1 | Raw solution [9/228] : 676", + "1 | Raw solution [10/228] : 0", + "1 | Raw solution [11/228] : 43", + "1 | Raw solution [12/228] : 87", + "1 | Raw solution [13/228] : 773728813", + "1 | Raw solution [14/228] : 0", + "1 | Raw solution [15/228] : 6712", + "1 | Raw solution [16/228] : 35", "1 | Raw solution [17/228] : 0", - "1 | Raw solution [18/228] : 1323", - "1 | Raw solution [19/228] : 12993", - "1 | Raw solution [20/228] : 44", + "1 | Raw solution [18/228] : 0", + "1 | Raw solution [19/228] : 1111", + "1 | Raw solution [20/228] : 9", "1 | Raw solution [21/228] : ", - "1 | Raw solution [22/228] : 0", - "1 | Raw solution [23/228] : 8", - "1 | Raw solution [24/228] : 56", - "1 | Raw solution [25/228] : 24", - "1 | Raw solution [26/228] : 15", - "1 | Raw solution [27/228] : 4180", - "1 | Raw solution [28/228] : 32", - "1 | Raw solution [29/228] : 25", + "1 | Raw solution [22/228] : 1004545", + "1 | Raw solution [23/228] : 15837", + "1 | Raw solution [24/228] : 12053", + "1 | Raw solution [25/228] : 15454", + "1 | Raw solution [26/228] : 0", + "1 | Raw solution [27/228] : 240", + "1 | Raw solution [28/228] : 15415", + "1 | Raw solution [29/228] : 12110", "1 | Raw solution [30/228] : 0", - "1 | Raw solution [31/228] : 35", + "1 | Raw solution [31/228] : 0", "1 | Raw solution [32/228] : 0", - "1 | Raw solution [33/228] : 136", - "1 | Raw solution [34/228] : 555443380", - "1 | Raw solution [35/228] : 38", - "1 | Raw solution [36/228] : 60", - "1 | Raw solution [37/228] : 1149", - "1 | Raw solution [38/228] : 1109", - "1 | Raw solution [39/228] : 15", - "1 | Raw solution [40/228] : 13887", - "1 | Raw solution [41/228] : 55", - "1 | Raw solution [42/228] : 0", - "1 | Raw solution [43/228] : 58", - "1 | Raw solution [44/228] : 0", - "1 | Raw solution [45/228] : 49", - "1 | Raw solution [46/228] : 5813", - "1 | Raw solution [47/228] : 86", + "1 | Raw solution [33/228] : 61", + "1 | Raw solution [34/228] : 9", + "1 | Raw solution [35/228] : 113", + "1 | Raw solution [36/228] : 61", + "1 | Raw solution [37/228] : 56", + "1 | Raw solution [38/228] : 10220", + "1 | Raw solution [39/228] : 55", + "1 | Raw solution [40/228] : 6440", + "1 | Raw solution [41/228] : 46", + "1 | Raw solution [42/228] : 6", + "1 | Raw solution [43/228] : 21", + "1 | Raw solution [44/228] : 13629", + "1 | Raw solution [45/228] : 32", + "1 | Raw solution [46/228] : 0", + "1 | Raw solution [47/228] : 62", "1 | Raw solution [48/228] : ", - "1 | Raw solution [49/228] : 15053", + "1 | Raw solution [49/228] : 735469694", "1 | Raw solution [50/228] : 0", - "1 | Raw solution [51/228] : 1403", - "1 | Raw solution [52/228] : 243", + "1 | Raw solution [51/228] : 28", + "1 | Raw solution [52/228] : 51", "1 | Raw solution [53/228] : 0", - "1 | Raw solution [54/228] : 0", - "1 | Raw solution [55/228] : 118", - "1 | Raw solution [56/228] : 167", - "1 | Raw solution [57/228] : 14", - "1 | Raw solution [58/228] : 79", - "1 | Raw solution [59/228] : 32", - "1 | Raw solution [60/228] : 16", - "1 | Raw solution [61/228] : 19", - "1 | Raw solution [62/228] : 0", + "1 | Raw solution [54/228] : 11", + "1 | Raw solution [55/228] : 7", + "1 | Raw solution [56/228] : 195", + "1 | Raw solution [57/228] : 45", + "1 | Raw solution [58/228] : 182", + "1 | Raw solution [59/228] : 216", + "1 | Raw solution [60/228] : 0", + "1 | Raw solution [61/228] : 0", + "1 | Raw solution [62/228] : 31", "1 | Raw solution [63/228] : 0", "1 | Raw solution [64/228] : 0", - "1 | Raw solution [65/228] : 62", - "1 | Raw solution [66/228] : 57", - "1 | Raw solution [67/228] : 22", - "1 | Raw solution [68/228] : 36", - "1 | Raw solution [69/228] : 8720", - "1 | Raw solution [70/228] : 0", - "1 | Raw solution [71/228] : 0", - "1 | Raw solution [72/228] : 162", - "1 | Raw solution [73/228] : 331", - "1 | Raw solution [74/228] : 212", - "1 | Raw solution [75/228] : 76", + "1 | Raw solution [65/228] : 36", + "1 | Raw solution [66/228] : 0", + "1 | Raw solution [67/228] : 13421", + "1 | Raw solution [68/228] : 0", + "1 | Raw solution [69/228] : 0", + "1 | Raw solution [70/228] : 3705", + "1 | Raw solution [71/228] : 18", + "1 | Raw solution [72/228] : 5130", + "1 | Raw solution [73/228] : 0", + "1 | Raw solution [74/228] : 15734", + "1 | Raw solution [75/228] : 235", "1 | Raw solution [76/228] : 0", - "1 | Raw solution [77/228] : 155", - "1 | Raw solution [78/228] : 3495", - "1 | Raw solution [79/228] : 37", - "1 | Raw solution [80/228] : 25", - "1 | Raw solution [81/228] : 53", - "1 | Raw solution [82/228] : 0", - "1 | Raw solution [83/228] : 36", - "1 | Raw solution [84/228] : 0", - "1 | Raw solution [85/228] : 9", - "1 | Raw solution [86/228] : 0", - "1 | Raw solution [87/228] : 13", - "1 | Raw solution [88/228] : 3620", - "1 | Raw solution [89/228] : 14", - "1 | Raw solution [90/228] : 1534", - "1 | Raw solution [91/228] : 16", - "1 | Raw solution [92/228] : 0", - "1 | Raw solution [93/228] : 6789", - "1 | Raw solution [94/228] : 0", - "1 | Raw solution [95/228] : 13748", - "1 | Raw solution [96/228] : 16", + "1 | Raw solution [77/228] : 52", + "1 | Raw solution [78/228] : 49", + "1 | Raw solution [79/228] : 0", + "1 | Raw solution [80/228] : 153", + "1 | Raw solution [81/228] : 0", + "1 | Raw solution [82/228] : 4490", + "1 | Raw solution [83/228] : 4346", + "1 | Raw solution [84/228] : 46", + "1 | Raw solution [85/228] : 13720", + "1 | Raw solution [86/228] : 8635", + "1 | Raw solution [87/228] : 996721420", + "1 | Raw solution [88/228] : 12", + "1 | Raw solution [89/228] : 0", + "1 | Raw solution [90/228] : 16", + "1 | Raw solution [91/228] : 212", + "1 | Raw solution [92/228] : 3034", + "1 | Raw solution [93/228] : 0", + "1 | Raw solution [94/228] : 176", + "1 | Raw solution [95/228] : 7205", + "1 | Raw solution [96/228] : 229", "1 | Raw solution [97/228] : 0", - "1 | Raw solution [98/228] : 33", - "1 | Raw solution [99/228] : 0", - "1 | Raw solution [100/228] : 150", - "1 | Raw solution [101/228] : 15420", + "1 | Raw solution [98/228] : 74", + "1 | Raw solution [99/228] : 14715", + "1 | Raw solution [100/228] : 0", + "1 | Raw solution [101/228] : 0", "1 | Raw solution [102/228] : 0", - "1 | Raw solution [103/228] : 53", - "1 | Raw solution [104/228] : 106", - "1 | Raw solution [105/228] : 29", - "1 | Raw solution [106/228] : 23", - "1 | Raw solution [107/228] : 94", - "1 | Raw solution [108/228] : 7973", - "1 | Raw solution [109/228] : 10402", - "1 | Raw solution [110/228] : 99", - "1 | Raw solution [111/228] : 0", - "1 | Raw solution [112/228] : 28", + "1 | Raw solution [103/228] : 0", + "1 | Raw solution [104/228] : 6054", + "1 | Raw solution [105/228] : 2206", + "1 | Raw solution [106/228] : 6508", + "1 | Raw solution [107/228] : 54", + "1 | Raw solution [108/228] : 38", + "1 | Raw solution [109/228] : 749096847", + "1 | Raw solution [110/228] : 0", + "1 | Raw solution [111/228] : 1771", + "1 | Raw solution [112/228] : 12508", "1 | Raw solution [113/228] : 0", - "1 | Raw solution [114/228] : 41", - "1 | Raw solution [115/228] : 26", - "1 | Raw solution [116/228] : 13117", - "1 | Raw solution [117/228] : 5003", - "1 | Raw solution [118/228] : 30", + "1 | Raw solution [114/228] : 53", + "1 | Raw solution [115/228] : 168", + "1 | Raw solution [116/228] : 9996", + "1 | Raw solution [117/228] : 15", + "1 | Raw solution [118/228] : 46", "1 | Raw solution [119/228] : 0", - "1 | Raw solution [120/228] : 50", - "1 | Raw solution [121/228] : 156", - "1 | Raw solution [122/228] : 13027", + "1 | Raw solution [120/228] : 1520", + "1 | Raw solution [121/228] : 18", + "1 | Raw solution [122/228] : 221", "1 | Raw solution [123/228] : 0", - "1 | Raw solution [124/228] : 38", - "1 | Raw solution [125/228] : 200", - "1 | Raw solution [126/228] : 12", - "1 | Raw solution [127/228] : 0", - "1 | Raw solution [128/228] : 0", - "1 | Raw solution [129/228] : 5381", - "1 | Raw solution [130/228] : 12070", - "1 | Raw solution [131/228] : 0", - "1 | Raw solution [132/228] : 5560", - "1 | Raw solution [133/228] : 3156102", - "1 | Raw solution [134/228] : 163", - "1 | Raw solution [135/228] : 9769", - "1 | Raw solution [136/228] : 11426", + "1 | Raw solution [124/228] : 30", + "1 | Raw solution [125/228] : 160", + "1 | Raw solution [126/228] : 9777", + "1 | Raw solution [127/228] : 124", + "1 | Raw solution [128/228] : 13052", + "1 | Raw solution [129/228] : 0", + "1 | Raw solution [130/228] : 0", + "1 | Raw solution [131/228] : 98", + "1 | Raw solution [132/228] : 159", + "1 | Raw solution [133/228] : 7139", + "1 | Raw solution [134/228] : 8497", + "1 | Raw solution [135/228] : 15946", + "1 | Raw solution [136/228] : 14", "1 | Raw solution [137/228] : 0", - "1 | Raw solution [138/228] : 28", - "1 | Raw solution [139/228] : 0", + "1 | Raw solution [138/228] : 6", + "1 | Raw solution [139/228] : 246", "1 | Raw solution [140/228] : 0", "1 | Raw solution [141/228] : 0", - "1 | Raw solution [142/228] : 133", - "1 | Raw solution [143/228] : 87", - "1 | Raw solution [144/228] : 15030", + "1 | Raw solution [142/228] : 8214", + "1 | Raw solution [143/228] : 49", + "1 | Raw solution [144/228] : 0", "1 | Raw solution [145/228] : 0", - "1 | Raw solution [146/228] : 3", - "1 | Raw solution [147/228] : 24", - "1 | Raw solution [148/228] : 229", - "1 | Raw solution [149/228] : 0", - "1 | Raw solution [150/228] : 10319", - "1 | Raw solution [151/228] : 0", - "1 | Raw solution [152/228] : 0", - "1 | Raw solution [153/228] : 10", - "1 | Raw solution [154/228] : 232", - "1 | Raw solution [155/228] : 10112", - "1 | Raw solution [156/228] : 0", - "1 | Raw solution [157/228] : 0", - "1 | Raw solution [158/228] : 117", + "1 | Raw solution [146/228] : 27", + "1 | Raw solution [147/228] : 0", + "1 | Raw solution [148/228] : 27", + "1 | Raw solution [149/228] : 157", + "1 | Raw solution [150/228] : 166", + "1 | Raw solution [151/228] : 191", + "1 | Raw solution [152/228] : 36", + "1 | Raw solution [153/228] : 11172", + "1 | Raw solution [154/228] : 1449", + "1 | Raw solution [155/228] : 4722", + "1 | Raw solution [156/228] : 2705", + "1 | Raw solution [157/228] : 30", + "1 | Raw solution [158/228] : 3", "1 | Raw solution [159/228] : ", - "1 | Raw solution [160/228] : 3303", - "1 | Raw solution [161/228] : 19", - "1 | Raw solution [162/228] : 8904", - "1 | Raw solution [163/228] : 33", - "1 | Raw solution [164/228] : 966", - "1 | Raw solution [165/228] : 0", - "1 | Raw solution [166/228] : 253", - "1 | Raw solution [167/228] : 49", - "1 | Raw solution [168/228] : 0", - "1 | Raw solution [169/228] : 5044", - "1 | Raw solution [170/228] : 0", - "1 | Raw solution [171/228] : 0", - "1 | Raw solution [172/228] : 20", - "1 | Raw solution [173/228] : 23", - "1 | Raw solution [174/228] : 0", - "1 | Raw solution [175/228] : 0", + "1 | Raw solution [160/228] : 13187", + "1 | Raw solution [161/228] : 0", + "1 | Raw solution [162/228] : 9902", + "1 | Raw solution [163/228] : 1", + "1 | Raw solution [164/228] : 7364", + "1 | Raw solution [165/228] : 53", + "1 | Raw solution [166/228] : 93", + "1 | Raw solution [167/228] : 0", + "1 | Raw solution [168/228] : 191", + "1 | Raw solution [169/228] : 0", + "1 | Raw solution [170/228] : 11", + "1 | Raw solution [171/228] : 41", + "1 | Raw solution [172/228] : 0", + "1 | Raw solution [173/228] : 3274", + "1 | Raw solution [174/228] : 15176", + "1 | Raw solution [175/228] : 7092", "1 | Raw solution [176/228] : 0", - "1 | Raw solution [177/228] : 0", - "1 | Raw solution [178/228] : 3859", + "1 | Raw solution [177/228] : 1", + "1 | Raw solution [178/228] : 14859", "1 | Raw solution [179/228] : 0", - "1 | Raw solution [180/228] : 42", - "1 | Raw solution [181/228] : 0", - "1 | Raw solution [182/228] : 5", - "1 | Raw solution [183/228] : 3713", - "1 | Raw solution [184/228] : 9201", - "1 | Raw solution [185/228] : 39", - "1 | Raw solution [186/228] : 82", - "1 | Raw solution [187/228] : 50", - "1 | Raw solution [188/228] : 40", - "1 | Raw solution [189/228] : 48", - "1 | Raw solution [190/228] : 670017683", - "1 | Raw solution [191/228] : 230", - "1 | Raw solution [192/228] : 18", - "1 | Raw solution [193/228] : 123", - "1 | Raw solution [194/228] : 197", - "1 | Raw solution [195/228] : 3601", - "1 | Raw solution [196/228] : 0", - "1 | Raw solution [197/228] : 14", - "1 | Raw solution [198/228] : 0", - "1 | Raw solution [199/228] : 95", - "1 | Raw solution [200/228] : 29", - "1 | Raw solution [201/228] : 12598", - "1 | Raw solution [202/228] : 2", - "1 | Raw solution [203/228] : 57", - "1 | Raw solution [204/228] : 0", - "1 | Raw solution [205/228] : 53", - "1 | Raw solution [206/228] : 6803", - "1 | Raw solution [207/228] : 232", - "1 | Raw solution [208/228] : 11305", - "1 | Raw solution [209/228] : 109", - "1 | Raw solution [210/228] : 0", + "1 | Raw solution [180/228] : 1", + "1 | Raw solution [181/228] : 168", + "1 | Raw solution [182/228] : 0", + "1 | Raw solution [183/228] : 3635", + "1 | Raw solution [184/228] : 0", + "1 | Raw solution [185/228] : 33", + "1 | Raw solution [186/228] : 11", + "1 | Raw solution [187/228] : 84", + "1 | Raw solution [188/228] : 136", + "1 | Raw solution [189/228] : 55", + "1 | Raw solution [190/228] : 39", + "1 | Raw solution [191/228] : 7396", + "1 | Raw solution [192/228] : 0", + "1 | Raw solution [193/228] : 0", + "1 | Raw solution [194/228] : 11092", + "1 | Raw solution [195/228] : 39", + "1 | Raw solution [196/228] : 7", + "1 | Raw solution [197/228] : 9575", + "1 | Raw solution [198/228] : 21", + "1 | Raw solution [199/228] : 14", + "1 | Raw solution [200/228] : 205", + "1 | Raw solution [201/228] : 0", + "1 | Raw solution [202/228] : 13858", + "1 | Raw solution [203/228] : 86", + "1 | Raw solution [204/228] : 13383", + "1 | Raw solution [205/228] : 69", + "1 | Raw solution [206/228] : 0", + "1 | Raw solution [207/228] : 0", + "1 | Raw solution [208/228] : 3256", + "1 | Raw solution [209/228] : 14497", + "1 | Raw solution [210/228] : 12851", "1 | Raw solution [211/228] : 0", - "1 | Raw solution [212/228] : 0", - "1 | Raw solution [213/228] : 115", - "1 | Raw solution [214/228] : 12", - "1 | Raw solution [215/228] : 51", - "1 | Raw solution [216/228] : 10912", - "1 | Raw solution [217/228] : 7450", - "1 | Raw solution [218/228] : 2983", - "1 | Raw solution [219/228] : 1559", - "1 | Raw solution [220/228] : 2500", + "1 | Raw solution [212/228] : 180", + "1 | Raw solution [213/228] : 60", + "1 | Raw solution [214/228] : 10488", + "1 | Raw solution [215/228] : 0", + "1 | Raw solution [216/228] : 15536", + "1 | Raw solution [217/228] : 0", + "1 | Raw solution [218/228] : 4", + "1 | Raw solution [219/228] : 0", + "1 | Raw solution [220/228] : 0", "1 | Raw solution [221/228] : 0", - "1 | Raw solution [222/228] : POLYX 27454110426270190667065361171733", - "1 | Raw solution [223/228] : 8.194441", - "1 | Raw solution [224/228] : POLYX 460293454288511332921041642553.2", - "1 | Raw solution [225/228] : 6251", - "1 | Raw solution [226/228] : POLYX 34533299476363537589488556146536", - "1 | Raw solution [227/228] : .614511", - "1 | Raw solution [228/228] : 1394118837", + "1 | Raw solution [222/228] : POLYX 21547712385919631161840137160437", + "1 | Raw solution [223/228] : 3.250345", + "1 | Raw solution [224/228] : POLYX 25824886293727581707185126518603", + "1 | Raw solution [225/228] : 8.393094", + "1 | Raw solution [226/228] : POLYX 13896828505686503422104884526160", + "1 | Raw solution [227/228] : 4.982086", + "1 | Raw solution [228/228] : 3696164405", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "7 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "7 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1586, + "index": 1581, "name": "Electionprovidermultiphase_Governance_fallback", - "blob": "320401343000000134300000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "320401d3040000019d1c0000d503ae1103000b63ce64c10c05c2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 12340", - "2 | Maybe max targets : 12340" + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 7325", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 12340", - "2 | Maybe max targets : 12340", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1587, + "index": 1582, "name": "Electionprovidermultiphase_Governance_fallback", - "blob": "320401d304000001d3040000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "320401d30400000134300000d503006d0fc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Governance fallback", "1 | Maybe max voters : 1235", - "2 | Maybe max targets : 1235", + "2 | Maybe max targets : 12340", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Electionprovidermultiphase : Governance fallback", "1 | Maybe max voters : 1235", - "2 | Maybe max targets : 1235", + "2 | Maybe max targets : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1588, + "index": 1583, "name": "Electionprovidermultiphase_Governance_fallback", - "blob": "320401d30400000100000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "32040100000000019d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 1235", - "2 | Maybe max targets : 0", - "3 | Tip : POLYX 0.000987" + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 7325", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 1235", - "2 | Maybe max targets : 0", + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1589, + "index": 1584, "name": "Electionprovidermultiphase_Governance_fallback", - "blob": "320401f70100000134300000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "320401d304000001d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 503", - "2 | Maybe max targets : 12340", - "3 | Tip : POLYX 55.555555" + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 1235", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Electionprovidermultiphase : Governance fallback", - "1 | Maybe max voters : 503", - "2 | Maybe max targets : 12340", + "1 | Maybe max voters : 1235", + "2 | Maybe max targets : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] }, { - "index": 1590, + "index": 1585, "name": "Electionprovidermultiphase_Governance_fallback", - "blob": "320401343000000100000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "blob": "3204013430000001f7010000d5038d248ed73e0dc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d", "output": [ "0 | Electionprovidermultiphase : Governance fallback", "1 | Maybe max voters : 12340", - "2 | Maybe max targets : 0", - "3 | Tip : POLYX 5552342.355555" + "2 | Maybe max targets : 503", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Electionprovidermultiphase : Governance fallback", "1 | Maybe max voters : 12340", - "2 | Maybe max targets : 0", + "2 | Maybe max targets : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", - "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + "8 | Block [1/2] : c06c330598f7ff841c4b1fbc1b87b711bd6019", + "8 | Block [2/2] : 7893b408f4aaf403258e352e3d" ] } ] \ No newline at end of file diff --git a/tests_zemu/snapshots/fl-balances_transfer/00000.png b/tests_zemu/snapshots/fl-balances_transfer/00000.png index 4dfbe796..187551b5 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer/00000.png and b/tests_zemu/snapshots/fl-balances_transfer/00000.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer/00001.png b/tests_zemu/snapshots/fl-balances_transfer/00001.png index 0a101a11..e454d500 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer/00001.png and b/tests_zemu/snapshots/fl-balances_transfer/00001.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer/00002.png b/tests_zemu/snapshots/fl-balances_transfer/00002.png index ea1919ac..1f465277 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer/00002.png and b/tests_zemu/snapshots/fl-balances_transfer/00002.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00000.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00000.png index 7d93d047..a6275b84 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00000.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00000.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00001.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00001.png index 25211811..8ff79785 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00001.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00001.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00002.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00002.png index d186df00..ae0d6c80 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00002.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00002.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00003.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00003.png index a9fccc64..baf7b8d0 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00003.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00003.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00004.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00004.png index d020e153..ffd8f0c6 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00004.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00004.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00005.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00005.png index caf96fa2..55331141 100644 Binary files a/tests_zemu/snapshots/fl-balances_transfer_expert/00005.png and b/tests_zemu/snapshots/fl-balances_transfer_expert/00005.png differ diff --git a/tests_zemu/snapshots/fl-balances_transfer_expert/00006.png b/tests_zemu/snapshots/fl-balances_transfer_expert/00006.png new file mode 100644 index 00000000..caf96fa2 Binary files /dev/null and b/tests_zemu/snapshots/fl-balances_transfer_expert/00006.png differ diff --git a/tests_zemu/snapshots/fl-identity_addClaim/00000.png b/tests_zemu/snapshots/fl-identity_addClaim/00000.png index 4dfbe796..187551b5 100644 Binary files a/tests_zemu/snapshots/fl-identity_addClaim/00000.png and b/tests_zemu/snapshots/fl-identity_addClaim/00000.png differ diff --git a/tests_zemu/snapshots/fl-identity_addClaim/00001.png b/tests_zemu/snapshots/fl-identity_addClaim/00001.png index 9924270b..fd51a4a8 100644 Binary files a/tests_zemu/snapshots/fl-identity_addClaim/00001.png and b/tests_zemu/snapshots/fl-identity_addClaim/00001.png differ diff --git a/tests_zemu/snapshots/fl-identity_addClaim/00002.png b/tests_zemu/snapshots/fl-identity_addClaim/00002.png index 0de76bb9..7cd67d24 100644 Binary files a/tests_zemu/snapshots/fl-identity_addClaim/00002.png and b/tests_zemu/snapshots/fl-identity_addClaim/00002.png differ diff --git a/tests_zemu/snapshots/fl-mainmenu/00001.png b/tests_zemu/snapshots/fl-mainmenu/00001.png index f4568e79..0ed10f3c 100644 Binary files a/tests_zemu/snapshots/fl-mainmenu/00001.png and b/tests_zemu/snapshots/fl-mainmenu/00001.png differ diff --git a/tests_zemu/snapshots/fl-mainmenu/00002.png b/tests_zemu/snapshots/fl-mainmenu/00002.png index ffd885fc..8782df23 100644 Binary files a/tests_zemu/snapshots/fl-mainmenu/00002.png and b/tests_zemu/snapshots/fl-mainmenu/00002.png differ diff --git a/tests_zemu/snapshots/fl-mainmenu/00003.png b/tests_zemu/snapshots/fl-mainmenu/00003.png index f4568e79..0ed10f3c 100644 Binary files a/tests_zemu/snapshots/fl-mainmenu/00003.png and b/tests_zemu/snapshots/fl-mainmenu/00003.png differ diff --git a/tests_zemu/snapshots/fl-mainmenu/00004.png b/tests_zemu/snapshots/fl-mainmenu/00004.png index 39777613..6517dd61 100644 Binary files a/tests_zemu/snapshots/fl-mainmenu/00004.png and b/tests_zemu/snapshots/fl-mainmenu/00004.png differ diff --git a/tests_zemu/snapshots/fl-raw_sign/00000.png b/tests_zemu/snapshots/fl-raw_sign/00000.png index a0d91483..b87f732d 100644 Binary files a/tests_zemu/snapshots/fl-raw_sign/00000.png and b/tests_zemu/snapshots/fl-raw_sign/00000.png differ diff --git a/tests_zemu/snapshots/fl-raw_sign/00001.png b/tests_zemu/snapshots/fl-raw_sign/00001.png index 975caeb7..4bc70c57 100644 Binary files a/tests_zemu/snapshots/fl-raw_sign/00001.png and b/tests_zemu/snapshots/fl-raw_sign/00001.png differ diff --git a/tests_zemu/snapshots/fl-raw_sign_hex/00000.png b/tests_zemu/snapshots/fl-raw_sign_hex/00000.png index a0d91483..b87f732d 100644 Binary files a/tests_zemu/snapshots/fl-raw_sign_hex/00000.png and b/tests_zemu/snapshots/fl-raw_sign_hex/00000.png differ diff --git a/tests_zemu/snapshots/fl-raw_sign_hex/00001.png b/tests_zemu/snapshots/fl-raw_sign_hex/00001.png index 81380bbf..e3101a56 100644 Binary files a/tests_zemu/snapshots/fl-raw_sign_hex/00001.png and b/tests_zemu/snapshots/fl-raw_sign_hex/00001.png differ diff --git a/tests_zemu/snapshots/fl-session_setkeys/00002.png b/tests_zemu/snapshots/fl-session_setkeys/00002.png index cfebc1e9..076d8ff5 100644 Binary files a/tests_zemu/snapshots/fl-session_setkeys/00002.png and b/tests_zemu/snapshots/fl-session_setkeys/00002.png differ diff --git a/tests_zemu/snapshots/fl-session_setkeys/00003.png b/tests_zemu/snapshots/fl-session_setkeys/00003.png index 74ce127f..edfd1f42 100644 Binary files a/tests_zemu/snapshots/fl-session_setkeys/00003.png and b/tests_zemu/snapshots/fl-session_setkeys/00003.png differ diff --git a/tests_zemu/snapshots/fl-session_setkeys/00004.png b/tests_zemu/snapshots/fl-session_setkeys/00004.png index 4e21581b..69c79130 100644 Binary files a/tests_zemu/snapshots/fl-session_setkeys/00004.png and b/tests_zemu/snapshots/fl-session_setkeys/00004.png differ diff --git a/tests_zemu/snapshots/fl-show_address/00001.png b/tests_zemu/snapshots/fl-show_address/00001.png index 977d9dce..ff094ef2 100644 Binary files a/tests_zemu/snapshots/fl-show_address/00001.png and b/tests_zemu/snapshots/fl-show_address/00001.png differ diff --git a/tests_zemu/snapshots/fl-show_address_reject/00001.png b/tests_zemu/snapshots/fl-show_address_reject/00001.png index 977d9dce..ff094ef2 100644 Binary files a/tests_zemu/snapshots/fl-show_address_reject/00001.png and b/tests_zemu/snapshots/fl-show_address_reject/00001.png differ diff --git a/tests_zemu/snapshots/fl-staking_nominate/00002.png b/tests_zemu/snapshots/fl-staking_nominate/00002.png index c20dee73..0ff20b16 100644 Binary files a/tests_zemu/snapshots/fl-staking_nominate/00002.png and b/tests_zemu/snapshots/fl-staking_nominate/00002.png differ diff --git a/tests_zemu/snapshots/fl-staking_nominate/00003.png b/tests_zemu/snapshots/fl-staking_nominate/00003.png index d95fa101..026c9eb6 100644 Binary files a/tests_zemu/snapshots/fl-staking_nominate/00003.png and b/tests_zemu/snapshots/fl-staking_nominate/00003.png differ diff --git a/tests_zemu/snapshots/fl-txUtility_batch/00000.png b/tests_zemu/snapshots/fl-txUtility_batch/00000.png index 4dfbe796..187551b5 100644 Binary files a/tests_zemu/snapshots/fl-txUtility_batch/00000.png and b/tests_zemu/snapshots/fl-txUtility_batch/00000.png differ diff --git a/tests_zemu/snapshots/fl-txUtility_batch/00001.png b/tests_zemu/snapshots/fl-txUtility_batch/00001.png index 7bfed4eb..0b35aad6 100644 Binary files a/tests_zemu/snapshots/fl-txUtility_batch/00001.png and b/tests_zemu/snapshots/fl-txUtility_batch/00001.png differ diff --git a/tests_zemu/snapshots/fl-txUtility_batch/00002.png b/tests_zemu/snapshots/fl-txUtility_batch/00002.png index 98941de5..97261985 100644 Binary files a/tests_zemu/snapshots/fl-txUtility_batch/00002.png and b/tests_zemu/snapshots/fl-txUtility_batch/00002.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer/00005.png b/tests_zemu/snapshots/s-balances_transfer/00005.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer/00005.png and b/tests_zemu/snapshots/s-balances_transfer/00005.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer/00006.png b/tests_zemu/snapshots/s-balances_transfer/00006.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer/00006.png and b/tests_zemu/snapshots/s-balances_transfer/00006.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00005.png b/tests_zemu/snapshots/s-balances_transfer_expert/00005.png index 13cff7ee..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00005.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00005.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00006.png b/tests_zemu/snapshots/s-balances_transfer_expert/00006.png index e3b38158..e8167769 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00006.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00006.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00007.png b/tests_zemu/snapshots/s-balances_transfer_expert/00007.png index 0078ebf9..e3b38158 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00007.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00007.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00008.png b/tests_zemu/snapshots/s-balances_transfer_expert/00008.png index 6436ade9..0078ebf9 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00008.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00008.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00009.png b/tests_zemu/snapshots/s-balances_transfer_expert/00009.png index 258dd897..6436ade9 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00009.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00009.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00010.png b/tests_zemu/snapshots/s-balances_transfer_expert/00010.png index f90a44a6..258dd897 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00010.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00010.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00011.png b/tests_zemu/snapshots/s-balances_transfer_expert/00011.png index 916376c2..f90a44a6 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00011.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00011.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00012.png b/tests_zemu/snapshots/s-balances_transfer_expert/00012.png index c7e20f49..4b1d85a6 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00012.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00012.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00013.png b/tests_zemu/snapshots/s-balances_transfer_expert/00013.png index 006c26ab..7451eac7 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00013.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00013.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00014.png b/tests_zemu/snapshots/s-balances_transfer_expert/00014.png index d5eb783e..006c26ab 100644 Binary files a/tests_zemu/snapshots/s-balances_transfer_expert/00014.png and b/tests_zemu/snapshots/s-balances_transfer_expert/00014.png differ diff --git a/tests_zemu/snapshots/s-balances_transfer_expert/00015.png b/tests_zemu/snapshots/s-balances_transfer_expert/00015.png new file mode 100644 index 00000000..d5eb783e Binary files /dev/null and b/tests_zemu/snapshots/s-balances_transfer_expert/00015.png differ diff --git a/tests_zemu/snapshots/s-identity_addClaim/00006.png b/tests_zemu/snapshots/s-identity_addClaim/00006.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-identity_addClaim/00006.png and b/tests_zemu/snapshots/s-identity_addClaim/00006.png differ diff --git a/tests_zemu/snapshots/s-identity_addClaim/00007.png b/tests_zemu/snapshots/s-identity_addClaim/00007.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-identity_addClaim/00007.png and b/tests_zemu/snapshots/s-identity_addClaim/00007.png differ diff --git a/tests_zemu/snapshots/s-mainmenu/00004.png b/tests_zemu/snapshots/s-mainmenu/00004.png index 736a51d6..fc84d480 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/00010.png b/tests_zemu/snapshots/s-mainmenu/00010.png index 736a51d6..fc84d480 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-session_setkeys/00010.png b/tests_zemu/snapshots/s-session_setkeys/00010.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-session_setkeys/00010.png and b/tests_zemu/snapshots/s-session_setkeys/00010.png differ diff --git a/tests_zemu/snapshots/s-session_setkeys/00011.png b/tests_zemu/snapshots/s-session_setkeys/00011.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-session_setkeys/00011.png and b/tests_zemu/snapshots/s-session_setkeys/00011.png differ diff --git a/tests_zemu/snapshots/s-show_address/00000.png b/tests_zemu/snapshots/s-show_address/00000.png index 9da5e072..d53db460 100644 Binary files a/tests_zemu/snapshots/s-show_address/00000.png and b/tests_zemu/snapshots/s-show_address/00000.png differ diff --git a/tests_zemu/snapshots/s-show_address/00001.png b/tests_zemu/snapshots/s-show_address/00001.png index 79d3c76d..a3334116 100644 Binary files a/tests_zemu/snapshots/s-show_address/00001.png and b/tests_zemu/snapshots/s-show_address/00001.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject/00000.png b/tests_zemu/snapshots/s-show_address_reject/00000.png index 9da5e072..d53db460 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject/00000.png and b/tests_zemu/snapshots/s-show_address_reject/00000.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject/00001.png b/tests_zemu/snapshots/s-show_address_reject/00001.png index 79d3c76d..a3334116 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject/00001.png and b/tests_zemu/snapshots/s-show_address_reject/00001.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00000.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00000.png index 14c2b6a4..3aa3d76e 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00000.png and b/tests_zemu/snapshots/s-show_address_reject_sr25519/00000.png differ diff --git a/tests_zemu/snapshots/s-show_address_reject_sr25519/00001.png b/tests_zemu/snapshots/s-show_address_reject_sr25519/00001.png index 929a1eb6..b5a5d462 100644 Binary files a/tests_zemu/snapshots/s-show_address_reject_sr25519/00001.png and b/tests_zemu/snapshots/s-show_address_reject_sr25519/00001.png differ diff --git a/tests_zemu/snapshots/s-show_address_sr25519/00000.png b/tests_zemu/snapshots/s-show_address_sr25519/00000.png index 14c2b6a4..3aa3d76e 100644 Binary files a/tests_zemu/snapshots/s-show_address_sr25519/00000.png and b/tests_zemu/snapshots/s-show_address_sr25519/00000.png differ diff --git a/tests_zemu/snapshots/s-show_address_sr25519/00001.png b/tests_zemu/snapshots/s-show_address_sr25519/00001.png index 929a1eb6..b5a5d462 100644 Binary files a/tests_zemu/snapshots/s-show_address_sr25519/00001.png and b/tests_zemu/snapshots/s-show_address_sr25519/00001.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00005.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00005.png index 13cff7ee..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00005.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00005.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00006.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00006.png index e3b38158..e8167769 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00006.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00006.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00007.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00007.png index 0078ebf9..e3b38158 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00007.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00007.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00008.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00008.png index 6436ade9..0078ebf9 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00008.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00008.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00009.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00009.png index 258dd897..6436ade9 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00009.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00009.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00010.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00010.png index f90a44a6..258dd897 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00010.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00010.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00011.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00011.png index 916376c2..f90a44a6 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00011.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00011.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00012.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00012.png index c7e20f49..4b1d85a6 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00012.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00012.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00013.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00013.png index 006c26ab..7451eac7 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00013.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00013.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00014.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00014.png index d5eb783e..006c26ab 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00014.png and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00014.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00015.png b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00015.png new file mode 100644 index 00000000..d5eb783e Binary files /dev/null and b/tests_zemu/snapshots/s-sign_basic_expert_sr25519/00015.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00005.png b/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00005.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00005.png and b/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00005.png differ diff --git a/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00006.png b/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00006.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00006.png and b/tests_zemu/snapshots/s-sign_basic_normal_sr25519/00006.png differ diff --git a/tests_zemu/snapshots/s-staking_nominate/00009.png b/tests_zemu/snapshots/s-staking_nominate/00009.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-staking_nominate/00009.png and b/tests_zemu/snapshots/s-staking_nominate/00009.png differ diff --git a/tests_zemu/snapshots/s-staking_nominate/00010.png b/tests_zemu/snapshots/s-staking_nominate/00010.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-staking_nominate/00010.png and b/tests_zemu/snapshots/s-staking_nominate/00010.png differ diff --git a/tests_zemu/snapshots/s-txUtility_batch/00005.png b/tests_zemu/snapshots/s-txUtility_batch/00005.png index 0078ebf9..4b20ad19 100644 Binary files a/tests_zemu/snapshots/s-txUtility_batch/00005.png and b/tests_zemu/snapshots/s-txUtility_batch/00005.png differ diff --git a/tests_zemu/snapshots/s-txUtility_batch/00006.png b/tests_zemu/snapshots/s-txUtility_batch/00006.png index 6436ade9..e8167769 100644 Binary files a/tests_zemu/snapshots/s-txUtility_batch/00006.png and b/tests_zemu/snapshots/s-txUtility_batch/00006.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer/00005.png b/tests_zemu/snapshots/sp-balances_transfer/00005.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer/00005.png and b/tests_zemu/snapshots/sp-balances_transfer/00005.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer/00006.png b/tests_zemu/snapshots/sp-balances_transfer/00006.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer/00006.png and b/tests_zemu/snapshots/sp-balances_transfer/00006.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00005.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00005.png index e81a4aca..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00005.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00005.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00006.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00006.png index b18c07ca..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00006.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00006.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00007.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00007.png index f9590f5d..b18c07ca 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00007.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00007.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00008.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00008.png index 7355e907..f9590f5d 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00008.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00008.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00009.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00009.png index a780e255..7355e907 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00009.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00009.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00010.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00010.png index 37c45c00..a780e255 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00010.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00010.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00011.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00011.png index c73948fb..37c45c00 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00011.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00011.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00012.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00012.png index 58fb6427..2b602ffe 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00012.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00012.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00013.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00013.png index 1e4be699..b652ccd1 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00013.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00013.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00014.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00014.png index d51d90e2..1e4be699 100644 Binary files a/tests_zemu/snapshots/sp-balances_transfer_expert/00014.png and b/tests_zemu/snapshots/sp-balances_transfer_expert/00014.png differ diff --git a/tests_zemu/snapshots/sp-balances_transfer_expert/00015.png b/tests_zemu/snapshots/sp-balances_transfer_expert/00015.png new file mode 100644 index 00000000..d51d90e2 Binary files /dev/null and b/tests_zemu/snapshots/sp-balances_transfer_expert/00015.png differ diff --git a/tests_zemu/snapshots/sp-identity_addClaim/00007.png b/tests_zemu/snapshots/sp-identity_addClaim/00007.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-identity_addClaim/00007.png and b/tests_zemu/snapshots/sp-identity_addClaim/00007.png differ diff --git a/tests_zemu/snapshots/sp-identity_addClaim/00008.png b/tests_zemu/snapshots/sp-identity_addClaim/00008.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-identity_addClaim/00008.png and b/tests_zemu/snapshots/sp-identity_addClaim/00008.png differ diff --git a/tests_zemu/snapshots/sp-mainmenu/00004.png b/tests_zemu/snapshots/sp-mainmenu/00004.png index 3717b46f..3b442b52 100644 Binary files a/tests_zemu/snapshots/sp-mainmenu/00004.png and b/tests_zemu/snapshots/sp-mainmenu/00004.png differ diff --git a/tests_zemu/snapshots/sp-mainmenu/00010.png b/tests_zemu/snapshots/sp-mainmenu/00010.png index 3717b46f..3b442b52 100644 Binary files a/tests_zemu/snapshots/sp-mainmenu/00010.png and b/tests_zemu/snapshots/sp-mainmenu/00010.png differ diff --git a/tests_zemu/snapshots/sp-session_setkeys/00008.png b/tests_zemu/snapshots/sp-session_setkeys/00008.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-session_setkeys/00008.png and b/tests_zemu/snapshots/sp-session_setkeys/00008.png differ diff --git a/tests_zemu/snapshots/sp-session_setkeys/00009.png b/tests_zemu/snapshots/sp-session_setkeys/00009.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-session_setkeys/00009.png and b/tests_zemu/snapshots/sp-session_setkeys/00009.png differ diff --git a/tests_zemu/snapshots/sp-show_address/00001.png b/tests_zemu/snapshots/sp-show_address/00001.png index 7278e8fe..e5f9a6f0 100644 Binary files a/tests_zemu/snapshots/sp-show_address/00001.png and b/tests_zemu/snapshots/sp-show_address/00001.png differ diff --git a/tests_zemu/snapshots/sp-show_address_reject/00001.png b/tests_zemu/snapshots/sp-show_address_reject/00001.png index 7278e8fe..e5f9a6f0 100644 Binary files a/tests_zemu/snapshots/sp-show_address_reject/00001.png and b/tests_zemu/snapshots/sp-show_address_reject/00001.png differ diff --git a/tests_zemu/snapshots/sp-staking_nominate/00006.png b/tests_zemu/snapshots/sp-staking_nominate/00006.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-staking_nominate/00006.png and b/tests_zemu/snapshots/sp-staking_nominate/00006.png differ diff --git a/tests_zemu/snapshots/sp-staking_nominate/00007.png b/tests_zemu/snapshots/sp-staking_nominate/00007.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-staking_nominate/00007.png and b/tests_zemu/snapshots/sp-staking_nominate/00007.png differ diff --git a/tests_zemu/snapshots/sp-txUtility_batch/00006.png b/tests_zemu/snapshots/sp-txUtility_batch/00006.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/sp-txUtility_batch/00006.png and b/tests_zemu/snapshots/sp-txUtility_batch/00006.png differ diff --git a/tests_zemu/snapshots/sp-txUtility_batch/00007.png b/tests_zemu/snapshots/sp-txUtility_batch/00007.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/sp-txUtility_batch/00007.png and b/tests_zemu/snapshots/sp-txUtility_batch/00007.png differ diff --git a/tests_zemu/snapshots/st-balances_transfer/00002.png b/tests_zemu/snapshots/st-balances_transfer/00002.png index 1422a16c..08874363 100644 Binary files a/tests_zemu/snapshots/st-balances_transfer/00002.png and b/tests_zemu/snapshots/st-balances_transfer/00002.png differ diff --git a/tests_zemu/snapshots/st-balances_transfer_expert/00001.png b/tests_zemu/snapshots/st-balances_transfer_expert/00001.png index b297861d..7fe01ed0 100644 Binary files a/tests_zemu/snapshots/st-balances_transfer_expert/00001.png and b/tests_zemu/snapshots/st-balances_transfer_expert/00001.png differ diff --git a/tests_zemu/snapshots/st-balances_transfer_expert/00002.png b/tests_zemu/snapshots/st-balances_transfer_expert/00002.png index fa71c6ae..b79a8541 100644 Binary files a/tests_zemu/snapshots/st-balances_transfer_expert/00002.png and b/tests_zemu/snapshots/st-balances_transfer_expert/00002.png differ diff --git a/tests_zemu/snapshots/st-balances_transfer_expert/00003.png b/tests_zemu/snapshots/st-balances_transfer_expert/00003.png index 8b08085d..e2967796 100644 Binary files a/tests_zemu/snapshots/st-balances_transfer_expert/00003.png and b/tests_zemu/snapshots/st-balances_transfer_expert/00003.png differ diff --git a/tests_zemu/snapshots/st-identity_addClaim/00002.png b/tests_zemu/snapshots/st-identity_addClaim/00002.png index 4c9f6940..aa08875e 100644 Binary files a/tests_zemu/snapshots/st-identity_addClaim/00002.png and b/tests_zemu/snapshots/st-identity_addClaim/00002.png differ diff --git a/tests_zemu/snapshots/st-mainmenu/00001.png b/tests_zemu/snapshots/st-mainmenu/00001.png index 5c1cb40e..03bdc615 100644 Binary files a/tests_zemu/snapshots/st-mainmenu/00001.png and b/tests_zemu/snapshots/st-mainmenu/00001.png differ diff --git a/tests_zemu/snapshots/st-mainmenu/00002.png b/tests_zemu/snapshots/st-mainmenu/00002.png index 6a80ca52..3e93298f 100644 Binary files a/tests_zemu/snapshots/st-mainmenu/00002.png and b/tests_zemu/snapshots/st-mainmenu/00002.png differ diff --git a/tests_zemu/snapshots/st-mainmenu/00003.png b/tests_zemu/snapshots/st-mainmenu/00003.png index 5c1cb40e..03bdc615 100644 Binary files a/tests_zemu/snapshots/st-mainmenu/00003.png and b/tests_zemu/snapshots/st-mainmenu/00003.png differ diff --git a/tests_zemu/snapshots/st-mainmenu/00004.png b/tests_zemu/snapshots/st-mainmenu/00004.png index 9ae7958a..e454d53b 100644 Binary files a/tests_zemu/snapshots/st-mainmenu/00004.png and b/tests_zemu/snapshots/st-mainmenu/00004.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00000.png b/tests_zemu/snapshots/st-session_setkeys/00000.png index b4d1ae34..24ad5779 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00000.png and b/tests_zemu/snapshots/st-session_setkeys/00000.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00001.png b/tests_zemu/snapshots/st-session_setkeys/00001.png index cded34b5..714ece91 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00001.png and b/tests_zemu/snapshots/st-session_setkeys/00001.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00002.png b/tests_zemu/snapshots/st-session_setkeys/00002.png index 5950c6f5..bf62eea4 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00002.png and b/tests_zemu/snapshots/st-session_setkeys/00002.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00003.png b/tests_zemu/snapshots/st-session_setkeys/00003.png index 75aad4cb..5d91f495 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00003.png and b/tests_zemu/snapshots/st-session_setkeys/00003.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00004.png b/tests_zemu/snapshots/st-session_setkeys/00004.png index 4a7a9402..464a7cc1 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00004.png and b/tests_zemu/snapshots/st-session_setkeys/00004.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00005.png b/tests_zemu/snapshots/st-session_setkeys/00005.png index 598137b8..1443e8f0 100644 Binary files a/tests_zemu/snapshots/st-session_setkeys/00005.png and b/tests_zemu/snapshots/st-session_setkeys/00005.png differ diff --git a/tests_zemu/snapshots/st-session_setkeys/00006.png b/tests_zemu/snapshots/st-session_setkeys/00006.png new file mode 100644 index 00000000..598137b8 Binary files /dev/null and b/tests_zemu/snapshots/st-session_setkeys/00006.png differ diff --git a/tests_zemu/snapshots/st-show_address/00001.png b/tests_zemu/snapshots/st-show_address/00001.png index e6e582c8..6842cade 100644 Binary files a/tests_zemu/snapshots/st-show_address/00001.png and b/tests_zemu/snapshots/st-show_address/00001.png differ diff --git a/tests_zemu/snapshots/st-show_address_reject/00001.png b/tests_zemu/snapshots/st-show_address_reject/00001.png index e6e582c8..6842cade 100644 Binary files a/tests_zemu/snapshots/st-show_address_reject/00001.png and b/tests_zemu/snapshots/st-show_address_reject/00001.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00000.png b/tests_zemu/snapshots/st-staking_nominate/00000.png index f0d93721..b4d1ae34 100644 Binary files a/tests_zemu/snapshots/st-staking_nominate/00000.png and b/tests_zemu/snapshots/st-staking_nominate/00000.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00001.png b/tests_zemu/snapshots/st-staking_nominate/00001.png index e8c1aa58..0bdaf733 100644 Binary files a/tests_zemu/snapshots/st-staking_nominate/00001.png and b/tests_zemu/snapshots/st-staking_nominate/00001.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00002.png b/tests_zemu/snapshots/st-staking_nominate/00002.png index d39ed28d..535db5bc 100644 Binary files a/tests_zemu/snapshots/st-staking_nominate/00002.png and b/tests_zemu/snapshots/st-staking_nominate/00002.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00003.png b/tests_zemu/snapshots/st-staking_nominate/00003.png index 0bc9f1b8..f61bdb0e 100644 Binary files a/tests_zemu/snapshots/st-staking_nominate/00003.png and b/tests_zemu/snapshots/st-staking_nominate/00003.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00004.png b/tests_zemu/snapshots/st-staking_nominate/00004.png index 598137b8..4a7a9402 100644 Binary files a/tests_zemu/snapshots/st-staking_nominate/00004.png and b/tests_zemu/snapshots/st-staking_nominate/00004.png differ diff --git a/tests_zemu/snapshots/st-staking_nominate/00005.png b/tests_zemu/snapshots/st-staking_nominate/00005.png new file mode 100644 index 00000000..598137b8 Binary files /dev/null and b/tests_zemu/snapshots/st-staking_nominate/00005.png differ diff --git a/tests_zemu/snapshots/st-txUtility_batch/00001.png b/tests_zemu/snapshots/st-txUtility_batch/00001.png index 27747be5..5d25a57d 100644 Binary files a/tests_zemu/snapshots/st-txUtility_batch/00001.png and b/tests_zemu/snapshots/st-txUtility_batch/00001.png differ diff --git a/tests_zemu/snapshots/st-txUtility_batch/00002.png b/tests_zemu/snapshots/st-txUtility_batch/00002.png index 1422a16c..08874363 100644 Binary files a/tests_zemu/snapshots/st-txUtility_batch/00002.png and b/tests_zemu/snapshots/st-txUtility_batch/00002.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer/00005.png b/tests_zemu/snapshots/x-balances_transfer/00005.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer/00005.png and b/tests_zemu/snapshots/x-balances_transfer/00005.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer/00006.png b/tests_zemu/snapshots/x-balances_transfer/00006.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer/00006.png and b/tests_zemu/snapshots/x-balances_transfer/00006.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00005.png b/tests_zemu/snapshots/x-balances_transfer_expert/00005.png index e81a4aca..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00005.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00005.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00006.png b/tests_zemu/snapshots/x-balances_transfer_expert/00006.png index b18c07ca..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00006.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00006.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00007.png b/tests_zemu/snapshots/x-balances_transfer_expert/00007.png index f9590f5d..b18c07ca 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00007.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00007.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00008.png b/tests_zemu/snapshots/x-balances_transfer_expert/00008.png index 7355e907..f9590f5d 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00008.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00008.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00009.png b/tests_zemu/snapshots/x-balances_transfer_expert/00009.png index a780e255..7355e907 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00009.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00009.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00010.png b/tests_zemu/snapshots/x-balances_transfer_expert/00010.png index 37c45c00..a780e255 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00010.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00010.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00011.png b/tests_zemu/snapshots/x-balances_transfer_expert/00011.png index c73948fb..37c45c00 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00011.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00011.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00012.png b/tests_zemu/snapshots/x-balances_transfer_expert/00012.png index 58fb6427..2b602ffe 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00012.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00012.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00013.png b/tests_zemu/snapshots/x-balances_transfer_expert/00013.png index 1e4be699..b652ccd1 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00013.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00013.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00014.png b/tests_zemu/snapshots/x-balances_transfer_expert/00014.png index d51d90e2..1e4be699 100644 Binary files a/tests_zemu/snapshots/x-balances_transfer_expert/00014.png and b/tests_zemu/snapshots/x-balances_transfer_expert/00014.png differ diff --git a/tests_zemu/snapshots/x-balances_transfer_expert/00015.png b/tests_zemu/snapshots/x-balances_transfer_expert/00015.png new file mode 100644 index 00000000..d51d90e2 Binary files /dev/null and b/tests_zemu/snapshots/x-balances_transfer_expert/00015.png differ diff --git a/tests_zemu/snapshots/x-identity_addClaim/00007.png b/tests_zemu/snapshots/x-identity_addClaim/00007.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-identity_addClaim/00007.png and b/tests_zemu/snapshots/x-identity_addClaim/00007.png differ diff --git a/tests_zemu/snapshots/x-identity_addClaim/00008.png b/tests_zemu/snapshots/x-identity_addClaim/00008.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-identity_addClaim/00008.png and b/tests_zemu/snapshots/x-identity_addClaim/00008.png differ diff --git a/tests_zemu/snapshots/x-mainmenu/00004.png b/tests_zemu/snapshots/x-mainmenu/00004.png index 3717b46f..3b442b52 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/00010.png b/tests_zemu/snapshots/x-mainmenu/00010.png index 3717b46f..3b442b52 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-session_setkeys/00008.png b/tests_zemu/snapshots/x-session_setkeys/00008.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-session_setkeys/00008.png and b/tests_zemu/snapshots/x-session_setkeys/00008.png differ diff --git a/tests_zemu/snapshots/x-session_setkeys/00009.png b/tests_zemu/snapshots/x-session_setkeys/00009.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-session_setkeys/00009.png and b/tests_zemu/snapshots/x-session_setkeys/00009.png differ diff --git a/tests_zemu/snapshots/x-show_address/00001.png b/tests_zemu/snapshots/x-show_address/00001.png index 7278e8fe..e5f9a6f0 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 7278e8fe..e5f9a6f0 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-staking_nominate/00006.png b/tests_zemu/snapshots/x-staking_nominate/00006.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-staking_nominate/00006.png and b/tests_zemu/snapshots/x-staking_nominate/00006.png differ diff --git a/tests_zemu/snapshots/x-staking_nominate/00007.png b/tests_zemu/snapshots/x-staking_nominate/00007.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-staking_nominate/00007.png and b/tests_zemu/snapshots/x-staking_nominate/00007.png differ diff --git a/tests_zemu/snapshots/x-txUtility_batch/00006.png b/tests_zemu/snapshots/x-txUtility_batch/00006.png index f9590f5d..a743c0b5 100644 Binary files a/tests_zemu/snapshots/x-txUtility_batch/00006.png and b/tests_zemu/snapshots/x-txUtility_batch/00006.png differ diff --git a/tests_zemu/snapshots/x-txUtility_batch/00007.png b/tests_zemu/snapshots/x-txUtility_batch/00007.png index 7355e907..ae786fdf 100644 Binary files a/tests_zemu/snapshots/x-txUtility_batch/00007.png and b/tests_zemu/snapshots/x-txUtility_batch/00007.png differ diff --git a/tests_zemu/tests/sr25519.test.ts b/tests_zemu/tests/sr25519.test.ts index 8c392abf..aab6a90d 100644 --- a/tests_zemu/tests/sr25519.test.ts +++ b/tests_zemu/tests/sr25519.test.ts @@ -34,7 +34,7 @@ const defaultOptions = { X11: false, } -const expected_address = '5Gxs2x4jHn2i3kn4FofDiaMjCxDXXxVZt9pZnhUZqjqD4ze9' +const expected_address = '2HM5HBpdm3nuMze95qGWPYNypPvhtTbxDwCdLCBXx5zadMSS' const expected_pk = 'd8b89698f0deb2b2023ec1dd1a2ca06f01c4db6114648adb02e18dfd12dae77c' jest.setTimeout(180000) diff --git a/tests_zemu/tests/standard.test.ts b/tests_zemu/tests/standard.test.ts index d5b78782..13e6b3e3 100644 --- a/tests_zemu/tests/standard.test.ts +++ b/tests_zemu/tests/standard.test.ts @@ -25,7 +25,7 @@ const defaultOptions = { X11: false, } -const expected_address = '5GXTGpFBgKcNZzhj7C6LqM6S9ME9B4uceNz2GE2AnNbkvkaa' +const expected_address = '2GufX4169bNZtEZowDhdWK7gknwKXa1zzAN5oij8tim8V2mr' const expected_pk = 'c55777790670bfd6bf012d79fd65f29afe233694d5af0a5e74783f13849fe29a' jest.setTimeout(180000) @@ -71,7 +71,7 @@ describe('Standard', function () { expect(resp.major).toEqual(107) expect(resp.minor).toEqual(7000) - expect(resp.patch).toEqual(0) + expect(resp.patch).toEqual(1) } finally { await sim.close() } diff --git a/tests_zemu/tests/zemu_blobs.ts b/tests_zemu/tests/zemu_blobs.ts index 88b6f8c0..a6925598 100644 --- a/tests_zemu/tests/zemu_blobs.ts +++ b/tests_zemu/tests/zemu_blobs.ts @@ -15,16 +15,16 @@ ******************************************************************************* */ export const txBalances_transfer = - '050000313233343536373839303132333435363738393031323334353637383930313233158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' + '050000313233343536373839303132333435363738393031323334353637383930313233158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d' export const txIdentity_addClaim = - '070621fb3357f380fa8d142d491dfc8dade2d43b794f9a8e1b00a6b9df6a1262a6430001417373657449442d3537383632323132010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' + '070621fb3357f380fa8d142d491dfc8dade2d43b794f9a8e1b00a6b9df6a1262a6430001417373657449442d3537383632323132010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d' export const txStaking_nominate = - '110510003132333435363738393031323334353637383930313233343536373839303132003132333435363738393031323334353637383930313233343536373839303133003132333435363738393031323334353637383930313233343536373839303134003132333435363738393031323334353637383930313233343536373839303135d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' + '110510003132333435363738393031323334353637383930313233343536373839303132003132333435363738393031323334353637383930313233343536373839303133003132333435363738393031323334353637383930313233343536373839303134003132333435363738393031323334353637383930313233343536373839303135d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d' export const txSession_setKeys = - '1300313233343536373839303132333435363738393031323334353637383930313231323334353637383930313233343536373839303132333435363738393031323132333435363738393031323334353637383930313233343536373839303132313233343536373839303132333435363738393031323334353637383930313200d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' + '1300313233343536373839303132333435363738393031323334353637383930313231323334353637383930313233343536373839303132333435363738393031323132333435363738393031323334353637383930313233343536373839303132313233343536373839303132333435363738393031323334353637383930313200d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d' export const txUtility_batch = - '29000800000834340000083838d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' + '29000800000834340000083838d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc2cf6a0007000000c06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3dc06c330598f7ff841c4b1fbc1b87b711bd60197893b408f4aaf403258e352e3d'